Introduction to Causal Inference

What causes what?

Observational data (i.e., data recorded from human activity) and big data sources in particular are rife with spurious correlations between variables that appear to be associated in a model but are not causally linked. As a result, many models would pick some interesting associations in the data, which may appear statistically significant but likely lack practical significance. If the goal is to implement a new policy or interventions that may introduce change in the social world, we need knowledge about the underlying causal structure of the problem — what causes what. Specifically, we would like to know the effect of a particular treatment (any policy or intervention, for example, Work from Home) on an Outcome (for example, Number of coronavirus cases) and compare the observed effect to a counterfactual question, for example, ‘What would have been the Number of coronavirus cases if a Work from home policy was not introduced?’.

Causal graphs or DAGs (Directed Acyclical Graphs) are a useful tool for drawing intuitive pictures that:

  • Reflect our assumptions about our treatment, outcome, and associated factors.

  • Highlight possible sources of bias (e.g., confounding) which may otherwise be unnoticed.

  • Improve our data analysis for causal inference.

In a causal graph (see Figure 1 below), each variable has a corresponding node, and the arrows reflect the direction of causation we assume of the basis of domain knowledge.

Learning resources

Scott Cunningham. Chapter 3: Directed Acyclical Graphs in Causal Inference: The Mixtape. Yale University Press.

Chapter 6. The Haunted DAG & The Causal Terror in Richard McElreath’s Statistical Rethinking book and associated video lecture.

Miguel Hernán. Causal Diagrams: Draw Your Assumptions Before Your Conclusions. edX.

Kosuke Imai. Chapter 2: Causality in Quantitative Social Science. Princeton University Press.

Stephen L. Morgan and Christopher Winship. Counterfactuals and Causal Inference. Cambridge University Press.

Hernán MA, Robins JM (2020). Causal Inference: What If. Boca Raton: Chapman & Hall/CRC.

Miguel Hernán, John Hsu, and Brian Healy. A Second Chance to Get Causal Inference Right: A Classification of Data Science Tasks. CHANCE.

Confounding—basic definitions

To keep things concrete, in this lab, we will use DAGs to shed some light on the problem of confounding with a focus on two common confounds: (2) the fork and (3) the collider. In particular, we will discuss the collider confound as the ‘fork’ confound is typically well understood in the social sciences.

Definitions

  • Confounding: any interference such that the effect of predictors X on an outcome of interest Y is not the same as it would have been had we experimentally determined the predictors X. In experimental settings, we have treatment and control groups that are comparable with respect to every characteristic related to the outcome with the only difference being that the treatment group received the treatment and the control group did not.

    • Fork: A variable Y is a common cause of X and Z, inducing a spurious correlation between them. This is the most common example of confounding (see Kosuke Imai’s Quantitative Social Science, page 57).

    • Collider: Relationship between X and Z does not exist unless we condition on Y, which is a collider variable (because the paths from X and Z collide in Y).

Figure 1. DAG representation of fork (left) and collider (right). Source: A Technical Primer On Causality by Adam Kelleher.

Our example of collider bias

Many canonical examples of collider bias exist in the literature, but we will develop our own example using a data set we know well — the Understanding Society Covid-19 survey data.

Consider a situation in which both variables Working from home and Age have an effect on the Risk of getting Covid-19 but are not correlated between each other in the entire data set. Then we condition on the respondents who considered the risk for getting Covid-19 ‘Very likely’ as an example of problematic conditioning on a collider variable. After this problematic conditioning, we observe a strong negative relationship between Age and Work from home. In short, Work from home and Age are not correlated in the population but get correlated once conditioning on perceived very high risk of getting Covid-19, introducing collider bias. Of course, in this example we use survey data, and not many would condition on ‘Very likely’ risk of getting Covid-19, but in many observational data sets, we may have data only about a pre-selected subset of the population so our data may contain such problematic selection, introducing collider bias, by design.

Drawing causal graphs

To visualise our example as a causal graph, we will use the R package ggdag. This tutorial by Malcolm Barrett gives a good overview of ggdag and its capabilities.

In order to run R in a Python Jupyter, we need to install the rpy2 package which provides Python interface to the R language.

!pip install rpy2
Requirement already satisfied: rpy2 in /Users/valentindanchev/opt/anaconda3/lib/python3.8/site-packages (3.3.6)
Requirement already satisfied: cffi>=1.10.0 in /Users/valentindanchev/opt/anaconda3/lib/python3.8/site-packages (from rpy2) (1.14.4)
Requirement already satisfied: jinja2 in /Users/valentindanchev/opt/anaconda3/lib/python3.8/site-packages (from rpy2) (2.11.2)
Requirement already satisfied: tzlocal in /Users/valentindanchev/opt/anaconda3/lib/python3.8/site-packages (from rpy2) (2.1)
Requirement already satisfied: pytest in /Users/valentindanchev/opt/anaconda3/lib/python3.8/site-packages (from rpy2) (6.2.4)
Requirement already satisfied: pytz in /Users/valentindanchev/opt/anaconda3/lib/python3.8/site-packages (from rpy2) (2020.4)
Requirement already satisfied: pycparser in /Users/valentindanchev/opt/anaconda3/lib/python3.8/site-packages (from cffi>=1.10.0->rpy2) (2.20)
Requirement already satisfied: MarkupSafe>=0.23 in /Users/valentindanchev/opt/anaconda3/lib/python3.8/site-packages (from jinja2->rpy2) (1.1.1)
Requirement already satisfied: toml in /Users/valentindanchev/opt/anaconda3/lib/python3.8/site-packages (from pytest->rpy2) (0.10.1)
Requirement already satisfied: iniconfig in /Users/valentindanchev/opt/anaconda3/lib/python3.8/site-packages (from pytest->rpy2) (1.1.1)
Requirement already satisfied: packaging in /Users/valentindanchev/opt/anaconda3/lib/python3.8/site-packages (from pytest->rpy2) (20.7)
Requirement already satisfied: pluggy<1.0.0a1,>=0.12 in /Users/valentindanchev/opt/anaconda3/lib/python3.8/site-packages (from pytest->rpy2) (0.13.1)
Requirement already satisfied: attrs>=19.2.0 in /Users/valentindanchev/opt/anaconda3/lib/python3.8/site-packages (from pytest->rpy2) (20.3.0)
Requirement already satisfied: py>=1.8.2 in /Users/valentindanchev/opt/anaconda3/lib/python3.8/site-packages (from pytest->rpy2) (1.9.0)
Requirement already satisfied: pyparsing>=2.0.2 in /Users/valentindanchev/opt/anaconda3/lib/python3.8/site-packages (from packaging->pytest->rpy2) (2.4.7)

To enable the %%R cell magic command, which turns a cell to be interpreted as an R code, we need to execute %load_ext rpy2.ipython.

%load_ext rpy2.ipython

Now we can run R code in a cell by adding the R cell magic command %%R.

%%R

# You will need to select a CRAN mirror from which
# to install the package; for example, typing in '70' will select UK London
install.packages("ggdag")

# We also install ggplot2, a popular data visualization package in R 
install.packages("ggplot2") 
--- Please select a CRAN mirror for use in this session ---

Secure CRAN mirrors
 


 1: 0-Cloud [https]

 2: Australia (Canberra) [https]

 3: Australia (Melbourne 1) [https]

 4: Australia (Melbourne 2) [https]

 5: Australia (Perth) [https]

 6: Austria [https]

 7: Belgium (Brussels) [https]

 8: Brazil (PR) [https]

 9: Brazil (RJ) [https]

10: Brazil (SP 1) [https]

11: Brazil (SP 2) [https]

12: Bulgaria [https]

13: Canada (MB) [https]

14: Canada (ON 3) [https]

15: Chile (Santiago) [https]

16: China (Beijing 2) [https]

17: China (Beijing 3) [https]

18: China (Hefei) [https]

19: China (Hong Kong) [https]

20: China (Guangzhou) [https]

21: China (Lanzhou) [https]

22: China (Nanjing) [https]

23: China (Shanghai 2) [https]

24: China (Shenzhen) [https]

25: Colombia (Cali) [https]

26: Costa Rica [https]

27: Cyprus [https]

28: Czech Republic [https]

29: Denmark [https]

30: East Asia [https]

31: Ecuador (Cuenca) [https]

32: Ecuador (Quito) [https]

33: France (Lyon 1) [https]

34: France (Lyon 2) [https]

35: France (Marseille) [https]

36: France (Paris 1) [https]

37: Germany (Erlangen) [https]

38: Germany (Leipzig) [https]

39: Germany (Göttingen) [https]

40: Germany (Münster) [https]

41: Germany (Regensburg) [https]

42: Greece [https]

43: Hungary [https]

44: Iceland [https]

45: India [https]

46: Indonesia (Banda Aceh) [https]

47: Iran (Mashhad) [https]

48: Italy (Milano) [https]

49: Italy (Padua) [https]

50: Japan (Tokyo) [https]

51: Korea (Gyeongsan-si) [https]

52: Korea (Seoul 1) [https]

53: Korea (Ulsan) [https]

54: Malaysia [https]

55: Mexico (Mexico City) [https]

56: Morocco [https]

57: Netherlands (Dronten) [https]

58: New Zealand [https]

59: Norway [https]

60: South Africa (Johannesburg) [https]

61: Spain (A Coruña) [https]

62: Spain (Madrid) [https]

63: Sweden (Borås) [https]

64: Sweden (Umeå) [https]

65: Switzerland [https]

66: Taiwan (Taipei) [https]

67: Turkey (Denizli) [https]

68: Turkey (Istanbul) [https]

69: Turkey (Mersin) [https]

70: UK (Bristol) [https]

71: UK (London 1) [https]

72: USA (IA) [https]

73: USA (KS) [https]

74: USA (MI) [https]

75: USA (OH) [https]

76: USA (OR) [https]

77: USA (TN) [https]

78: USA (TX 1) [https]

79: Uruguay [https]

80: (other mirrors)


R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.
Enter an item from the menu, or 0 to exit
R[read into console]: raw_input was called, but this frontend does not support input requests.

Import the ggdag package (and the ggplot2 package)

%%R
library(ggdag)
library(ggplot2)
theme_set(theme_dag())

In our model, we assume that both variables Work from home and Age affect the outcome variable, Risk of getting Covid-19. We also assume that Working at home and Age are not causally connected. Below we represent our simple model using a causal graph. The node where Work from home and Age arrowheads meet is called a collider, meaning that both variables collide there. Let’s now plot a causal graph with our three variables.

%%R
RiskCovid_dag <-collider_triangle(
    x="Not Work from Home", y="Age", m="Perceived risk from getting COVID-19"
)

ggdag(RiskCovid_dag, text=FALSE, use_labels="label", node_size=20, text_size=5)
../_images/08_causal_inference_11_0.png
%%R
ggdag_dseparated(RiskCovid_dag, text=FALSE, use_labels="label", text_size=5)
../_images/08_causal_inference_12_0.png

Although Work from home and Age are not correlated in the population, they may get correlated once we condition on Very high risk of getting Covid-19. The square shape of the variable Risk of getting Covid-19 indicates that we condition on that variable being a certain value, in our case on people with Very high perceived risk of getting Covid-19.

%%R
ggdag_dseparated(
    RiskCovid_dag, controlling_for="m", text=FALSE, use_labels="label", text_size=5
)
../_images/08_causal_inference_14_0.png

Statistical Models in Python

We will now perform our analysis to see how conditioning in a model can introduce a collider bias.

In this lab, we will use the Python library statsmodels. statsmodels is a Python module that provides functions for the estimation of many different statistical models.

You can install statsmodels by running the following command:

!pip install statsmodels

Collider confounder

We will use data from Understanding Society COVID-19 (Wave 6, November 2020, web collected) to demonstrate the causal structure of collider confounder. The data are safeguarded and can be accessed via the UK Data Service. Once access to the data is obtained, the data needs to be stored securely in your Google Drive and loaded in your private Colab notebook. The data is provided in various file formats, we use the .tab file format (tab files store data values separated by tabs) which can be easily loaded using pandas. Specifically, the web collected data of the survey from Wave 6 (November 2020) is stored in the file cf_indresp_w.tab. Let’s load the survey data.

# Import the Drive helper
from google.colab import drive

# This will prompt for authorization.
# Enter your authorisation code and rerun the cell.
drive.mount("/content/drive")

Note

The above code will execute in Colab but will give an error (e.g., ModuleNotFoundError: No module named 'google') when the notebook is run outside Colab.

import pandas as pd

# Load the Understadning Society COVID-19 Study web collected data, Wave 6
# Set the delimeter parameter sep to "\t" which indicates tabs
USocietyCovid = pd.read_csv(
    "/content/drive/My Drive/cf_indresp_w.tab",
    sep="\t",
)
# Display headings only as the data is safeguarded
USocietyCovid.head(0)
pidp psu strata birthy racel_dv bornuk_dv i_hidp j_hidp k_hidp i_ioutcome ... cf_ff_intm cf_ff_inty cf_ff_country cf_gor_dv cf_aid_dv cf_betaindin_xw cf_betaindin_xw_t cf_betaindin_lw cf_betaindin_lw_t1 cf_betaindin_lw_t2

0 rows × 915 columns

Variables

To make things concrete, let’s select three variables.

Variable in Our Model

Description

Variable Name

Values

X

Working at home

cf_wah

1 = Always, 2 = Often, 3 = Sometimes, 4 = Never

Z

Age

cf_age

Integer values (whole numbers)

Y

Risk of getting covid19

cf_riskcv19

1 = Very likely, 2 = Likely, 3 = Unlikely, 4 = Very unlikely

# Select and preprocesses our variables from the Understanding Society Study.
# We also select the weighting variable cf_betaindin_xw we will use later (see
# section 'Weighting to correct for complex sample design' below)

USocietyCovidCollider = USocietyCovid[
    ["cf_wah", "cf_age", "cf_riskcv19", "cf_betaindin_xw"]
]
USocietyCovidCollider = USocietyCovidCollider.mask(USocietyCovidCollider < 0)
USocietyCovidCollider = USocietyCovidCollider.dropna().astype(float)
USocietyCovidCollider
cf_wah cf_age cf_riskcv19 cf_betaindin_xw
0 1.0 37.0 4.0 0.502242
2 3.0 55.0 3.0 0.138687
3 2.0 38.0 4.0 0.485160
5 4.0 63.0 3.0 0.788910
6 3.0 56.0 4.0 0.705270
... ... ... ... ...
12026 3.0 41.0 3.0 0.016283
12028 4.0 39.0 3.0 0.025795
12029 1.0 41.0 4.0 0.285402
12030 1.0 57.0 4.0 0.020726
12034 1.0 41.0 3.0 2.750525

6683 rows × 4 columns

# Work at home versus risk of getting covid
import matplotlib.pyplot as plt
import seaborn as sns

%matplotlib inline

sns.set_context("notebook", font_scale=1.5)

fig = sns.catplot(
    x="cf_wah",
    kind="count",
    hue="cf_riskcv19",
    height=6,
    aspect=1.5,
    palette="ch:.25",
    data=USocietyCovidCollider,
    legend=False,
)

# Change the labels of the horizontal x axis
fig.set(xlabel="Working at home")

# Add informative labels to the horizontal x axis
fig.set_xticklabels(["Always", "Often", "Sometimes", "Never"])

# Change title and labels of the legend
plt.legend(
    title="Risk of getting COVID-19",
    loc="upper center",
    labels=["Very likely", "Likely", "Unlikely", "Very unlikely"],
)
<matplotlib.legend.Legend at 0x7fd4a0985490>
../_images/08_causal_inference_24_1.png
# Risk of getting COVID-19 versus age

fig = sns.catplot(
    x="cf_riskcv19",
    y="cf_age",
    kind="box",
    height=5,
    aspect=1.5,  # control plot size
    sharey=False,  # set different y axes for each plot
    data=USocietyCovidCollider,
)

# Add informative labels to the horizontal x axis
fig.set(xlabel="Risk of getting COVID-19")
fig.set_xticklabels(["Very likely", "Likely", "Unlikely", "Very unlikely"])
<seaborn.axisgrid.FacetGrid at 0x7fd4901becd0>
../_images/08_causal_inference_25_1.png
# Compute the mean of the three variables of interest
USocietyCovidCollider.iloc[:, 0:3].mean()
cf_wah          2.788867
cf_age         47.494538
cf_riskcv19     3.069280
dtype: float64
# Compute the correlation of the three variables of interest
USocietyCovidCollider.iloc[:, 0:3].corr()
cf_wah cf_age cf_riskcv19
cf_wah 1.000000 -0.013254 -0.138858
cf_age -0.013254 1.000000 0.099640
cf_riskcv19 -0.138858 0.099640 1.000000

Using weights to adjust for complex sample design

Before we perform data analysis, we need to consider the sample of the Understanding Society COVID-19 Study and the importance of using weights in our analysis. The sample of the Understanding Society COVID-19 Study has a clustered and stratified design with certain types of people being over-represented in the sample by design. For example, the study over-samples ethnic minorities. This complex design allows various research analyses across different population sub-groups and topics but posses also a challenge as the sample does not reflect the population structure. To correctly reflect the population structure, we need to use weights in our analysis. The weights adjust for unequal selection probability and other conditions (e.g., non-response).

The Understanding Society team provides a number of weights reflecting the structure of the data. For the Understanding Society data we use (cross-sectional web-collected survey data from Wave 6, November 2020), the relevant weights variables is cf_betaindin_xw. The name of the weight variable reflects the wave for which the weight is calculated (cf refers to Wave 6), level of analysis (indin refers to individual interview), and data source (xw refers to cross-sectional analysis weight).

Weighting in Understanding Society is discussed in the following sources:

We use DescrStatsW from the library statsmodels to compute descriptive statistics and tests with weights for case weights:

# Import DescrStatsW
from statsmodels.stats.weightstats import DescrStatsW

# Create a weighted instance using the cf_betaindin_xw weights
USocietyCovidCollider_Weighted = DescrStatsW(
    USocietyCovidCollider.iloc[:, 0:3],
    weights=USocietyCovidCollider.cf_betaindin_xw,
)
# Compute weighted mean of the three variables of interest
# using the mean attribute in statsmodels
USocietyCovidCollider_Weighted.mean
array([ 2.94456926, 43.15515565,  3.06442045])
# Compute weighted correlation of the three variables of interest
# using the corrcoef attribute in statsmodels
USocietyCovidCollider_Weighted.corrcoef
array([[ 1.        , -0.04274411, -0.11605542],
       [-0.04274411,  1.        ,  0.09240866],
       [-0.11605542,  0.09240866,  1.        ]])

Note that the weighted mean and correlation coefficients differ quantitatively from the unweighted versions we computed earlier. The overall pattern of correlation is preserved.

Let’s interpret the weighted correlation results:

  • Work at home is negatively correlated with Risk of getting COVID-19, indicating that people who rarely or never work at home perceive a greater risk of getting COVID-19.

  • Age is weakly positively correlated with Risk of getting COVID-19, indicating that perceived risk of getting COVID-19 decreases with age.

  • Age and work at home are largely not associated in the data set.

Note: Due to the way the variable Risk of getting COVID-19 is coded (1 = Very likely, 2 = Likely, 3 = Unlikely, 4 = Very unlikely), larger values indicate lower risk. The variable Risk of getting COVID-19 measures perceived risk, which is different from actual risk or health outcome after different age groups get COVID-19.

# We model the outcome variable Risk of getting COVID-19 and the predictors
# Age and Work at home using a Generalized Linear Model (GLM) in statsmodels.
# We treat our outcome variable as a discrete quantitative variable and use the default
# Gaussian distribution family. Weights (cf_betaindin_xw) are applied using the
# parameter freq_weights.

import statsmodels.formula.api as smf

model = smf.glm(
    "cf_riskcv19 ~ cf_age + cf_wah",
    freq_weights=USocietyCovidCollider.cf_betaindin_xw,
    data=USocietyCovidCollider,
).fit()

print(model.summary())
                 Generalized Linear Model Regression Results                  
==============================================================================
Dep. Variable:            cf_riskcv19   No. Observations:                 6683
Model:                            GLM   Df Residuals:                  7101.97
Model Family:                Gaussian   Df Model:                            2
Link Function:               identity   Scale:                         0.34918
Method:                          IRLS   Log-Likelihood:                -6342.3
Date:                Sun, 24 Jul 2022   Deviance:                       2479.9
Time:                        13:31:12   Pearson chi2:                 2.48e+03
No. Iterations:                     3                                         
Covariance Type:            nonrobust                                         
==============================================================================
                 coef    std err          z      P>|z|      [0.025      0.975]
------------------------------------------------------------------------------
Intercept      3.0564      0.028    107.373      0.000       3.001       3.112
cf_age         0.0038      0.001      7.455      0.000       0.003       0.005
cf_wah        -0.0523      0.005     -9.558      0.000      -0.063      -0.042
==============================================================================
# Although both Age and Work at home have some effect on
# Risk of getting COVID-19, the two predictors are not
# associated in the data set as measured via
# weighted correlation

USocietyCovidCollider_Weighted = DescrStatsW(
    USocietyCovidCollider.iloc[:, 0:2],
    weights=USocietyCovidCollider.cf_betaindin_xw,
)

USocietyCovidCollider_Weighted.corrcoef
array([[ 1.        , -0.04274411],
       [-0.04274411,  1.        ]])

Let’s condition on the respondents who considered the risk for getting COVID-19 ‘Very likely’. This is an example of problematic conditioning on a collider variable.

# Create a collider variable — Very likely risk of getting COVID-19.
# Select the respondents who considered the risk for getting COVID-19 'Very likely'.

USocietyCovidColliderRisk = USocietyCovidCollider[
    USocietyCovidCollider["cf_riskcv19"] == 1
]

USocietyCovidColliderRisk
cf_wah cf_age cf_riskcv19 cf_betaindin_xw
443 4.0 27.0 1.0 0.693835
619 4.0 25.0 1.0 1.627781
890 4.0 49.0 1.0 0.766018
1635 4.0 49.0 1.0 0.195473
1969 4.0 28.0 1.0 2.347204
... ... ... ... ...
11334 1.0 38.0 1.0 0.963162
11457 4.0 29.0 1.0 2.864587
11593 4.0 42.0 1.0 1.980593
11702 4.0 48.0 1.0 2.443001
11975 4.0 50.0 1.0 0.387473

63 rows × 4 columns

After we condition on those who considered the risk for getting COVID-19 ‘Very likely’, we observe a negative correlation between Age and Work at home.

# Compute weighted correlation of Age and Work at home

# Create a weighted instance
USocietyCovidColliderRisk_Weighted = DescrStatsW(
    USocietyCovidColliderRisk.iloc[:, 0:2],
    weights=USocietyCovidColliderRisk.cf_betaindin_xw,
)

# Weighted correlation
USocietyCovidColliderRisk_Weighted.corrcoef
array([[ 1.        , -0.20653002],
       [-0.20653002,  1.        ]])

Questions

  • Why Age and Work at home were uncorrelated in the population but are negatively correlated once we condition on those who perceive ‘Very likely’ risk of getting COVID-19?

Additional material

The examples and code below are from Chapter 3: Directed Acyclical Graphs in Scott Cunningham’s book Causal Inference: The Mixtape.

The original code is written by Thomas Caputo and is available on GitHub.

Gender discrimination and collider bias

Suppose we are interested in studying the effect of gender discrimination on earnings/wages. One approach would be to regress earnings on gender (Model 1 in the regression table below) which indeed shows that women are discriminated against. But then your model is criticised for not taking into account occupation. To address this criticism, you run another model that adjusts for occupation (Model 2 in the regression table below). The outputs of this second model indicates that women are not discriminated against; instead, they receive comparable (or even higher) pay. However, there is a problem in this second model too. Suppose that discrimination is mediated by occupation such that women tend to occupy worse jobs, which are payed less. In this scenario, by controlling for occupation we introduce bias. This is at odds with a widespread practice of adding more and more controls in a model. Such controls may not reduce but introduce bias. To get rid of the introduced bias in the discrimination example, we can condition on both occupation and ability, which is what Model 3 does in the regression table below. This unbiased conditional model confirms that women are discriminated against. In real-world settings, however, ability is unobserved, which would typically preclude us from estimating an unbiased effect of gender discrimination on earnings.

For a detailed account on of the discrimination example, see Chapter 3: Directed Acyclical Graphs in Scott Cunningham’s book Causal Inference: The Mixtape.

!pip install Stargazer
import numpy as np
import pandas as pd
import statsmodels.api as sm
from stargazer.stargazer import Stargazer
# Data generation and assumptions

data = pd.DataFrame(
    {
        # Half of the population is female.
        "female": np.random.binomial(1, 0.5, size=10000),
        # Innate ability is independent of gender
        "ability": np.random.normal(size=10000),
    }
)

# All women experience discrimination
data["discrimination"] = data.female.copy()
# Data generating processes
data["occupation"] = (
    1
    + 2 * data["ability"]
    + 0 * data["female"]
    - 2 * data["discrimination"]
    + np.random.normal(size=10000)
)

data["wage"] = (
    1
    - 1 * data["discrimination"]
    + 1 * data["occupation"]
    + 2 * data["ability"]
    + np.random.normal(size=10000)
)

data
female ability discrimination occupation wage
0 1 -0.753170 1 -2.468948 -5.240485
1 0 -0.406636 0 -1.102231 -1.137019
2 1 1.020083 1 1.064828 4.384568
3 0 -1.728394 0 -2.372920 -6.140581
4 0 -1.139144 0 -1.013275 -3.507412
... ... ... ... ... ...
9995 1 -1.713834 1 -3.755827 -7.320954
9996 1 0.000218 1 -0.960987 -2.071734
9997 0 0.885239 0 3.460836 5.217471
9998 1 -0.289855 1 -1.753398 -3.612761
9999 0 -0.471044 0 -0.173495 -0.221958

10000 rows × 5 columns

# Regression models
model1 = sm.OLS.from_formula("wage ~ female", data=data).fit()
model2 = sm.OLS.from_formula("wage ~ female + occupation", data=data).fit()
model3 = sm.OLS.from_formula("wage ~ female + occupation + ability", data=data).fit()

# Output the three regression model's results as Table
stargazer = Stargazer((model1, model2, model3))
stargazer.custom_columns(
    ["Biased Unconditional", "Biased", "Unbiased Conditional"], [1, 1, 1]
)

stargazer
Dependent variable:wage
Biased UnconditionalBiasedUnbiased Conditional
(1)(2)(3)
Intercept2.103***0.204***0.978***
(0.060)(0.020)(0.018)
ability1.960***
(0.023)
female-3.127***0.607***-0.942***
(0.084)(0.030)(0.029)
occupation1.808***1.022***
(0.006)(0.010)
Observations10,00010,00010,000
R20.1210.9100.949
Adjusted R20.1210.9100.949
Residual Std. Error4.218 (df=9998)1.346 (df=9997)1.016 (df=9996)
F Statistic1374.069*** (df=1; 9998)50801.882*** (df=2; 9997)61972.578*** (df=3; 9996)
Note: *p<0.1; **p<0.05; ***p<0.01

Questions

  • What is the true direct effect of discrimination on wages?

  • Through what channels discrimination impacts wages?

  • What makes occupation a collider?

  • What control variables can get rid of the collider bias?

References

Scott Cunningham. Causal Inference: The Mixtape. Yale University Press.

Thomas Caputo. Teaching Resources for Causal Inference: The Mixtape. GitHub.

Hernán MA, Robins JM (2020). Causal Inference: What If. Boca Raton: Chapman & Hall/CRC.

Richard McElreath. Chapter 6: The Haunted DAG & The Causal Terror. Statistical Rethinking: A Bayesian Course with Examples in R and Stan (2nd ed). Chapman and Hall/CRC.

Richard McElreath’s lecture on basic causal inference, collider bias, and back-door criterion.

Stephen L. Morgan and Christopher Winship. Counterfactuals and Causal Inference. Cambridge University Press.