File size: 57,286 Bytes
5b78882 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 |
<!DOCTYPE html>
<html id="XenForo" lang="en-US" dir="LTR" class="Public NoJs LoggedOut Sidebar Responsive" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<base href="https://forums.oneplus.net/"/>
<script>
var _b = document.getElementsByTagName('base')[0], _bH = "https://forums.oneplus.net/";
if (_b && _b.href != _bH) _b.href = _bH;
</script>
<title>Name a city with the next letter of the alphabet (GAME) - OnePlus Forums</title>
<noscript><style>.JsOnly,.jsOnly{display:none!important;}</style></noscript>
<link rel="stylesheet" href="css.php?css=xenforo,form,public&style=2&dir=LTR&d=1416655836"/>
<link rel="stylesheet" href="css.php?css=bb_code,likes_summary,message,message_user_info,sidebar_share_page,thread_view,wf_default,xopenid_login_form&style=2&dir=LTR&d=1416655836"/>
<script>
var _gaq = [['_setAccount', 'UA-46480385-3'], ['_trackPageview']];
!function(d, t)
{
var g = d.createElement(t),
s = d.getElementsByTagName(t)[0];
g.async = true;
g.src = ('https:' == d.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
s.parentNode.insertBefore(g, s);
}
(document, 'script');
</script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type="text/javascript" src="/js/modernizr.js"></script>
<script type="text/javascript" src="/js/waypoints.min.js"></script>
<script type="text/javascript" src="/js/custom.js"></script>
<script>if (!window.jQuery) { document.write('<scr'+'ipt type="text/javascript" src="js/jquery/jquery-1.11.0.min.js"><\/scr'+'ipt>'); }</script>
<script src="js/xenforo/xenforo.js?_v=3fee6e84"></script>
<link rel="apple-touch-icon" href="https://forums.oneplus.net/styles/oneplus2014/xenforo/logo.og.png"/>
<link rel="alternate" type="application/rss+xml" title="RSS feed for OnePlus Forums" href="forums/-/index.rss"/>
<link rel="next" href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/page-2"/>
<link rel="canonical" href="https://forums.oneplus.net/threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/"/>
<meta name="description" content="Austin"/>
<meta property="og:image" content="http://oneplus.net/media/images/opengraph/oneplus-logo-big.png"/>
</head>
<body class="node8 node30 SelectQuotable">
<header>
<div id="header-sticky" class="">
<div class="pageWidth">
<ul class="nav nav-pills">
<li class="active"><a href="//forums.oneplus.net/">Forums</a></li>
<li class="divider"></li>
<li class="navTab Popup PopupControl PopupClosed">
<a href="/index.php?search" rel="Menu" class="navLink NoPopupGadget" id="QuickSearchPlaceholder"><span class="i-search"></span></a>
<div class="Menu JsOnly navPopup" style="width:280px" id="SearchMenu">
<div class="primaryContent" style="padding:20px 15px">
<div id="searchBar">
<fieldset id="QuickSearch">
<form action="search/search" method="post" class="formPopup">
<div class="primaryControls">
<input type="search" name="keywords" value="" class="textCtrl" placeholder="Search..." results="0" title="Enter your search and hit enter" id="QuickSearchQuery"/>
</div>
<div class="secondaryControls">
<div>
<dl class="ctrlUnit">
<dt></dt>
<dd><ul>
<li><label><input type="checkbox" name="title_only" value="1" id="search_bar_title_only" class="AutoChecker" data-uncheck="#search_bar_thread"/> Search titles only</label></li>
</ul></dd>
</dl>
<dl class="ctrlUnit">
<dt><label for="searchBar_users">Posted by Member:</label></dt>
<dd>
<input type="text" name="users" value="" class="textCtrl AutoComplete" id="searchBar_users"/>
<p class="explain">Separate names with a comma.</p>
</dd>
</dl>
<dl class="ctrlUnit">
<dt><label for="searchBar_date">Newer Than:</label></dt>
<dd><input type="date" name="date" value="" class="textCtrl" id="searchBar_date"/></dd>
</dl>
<dl class="ctrlUnit">
<dt></dt>
<dd><ul>
<li><label title="Search only Name a city with the next letter of the alphabet (GAME)"><input type="checkbox" name="type[post][thread_id]" value="160418" id="search_bar_thread" class="AutoChecker" data-uncheck="#search_bar_title_only, #search_bar_nodes"/> Search this thread only</label></li>
<li><label title="Search only Off Topic"><input type="checkbox" name="nodes[]" value="8" id="search_bar_nodes" class="Disabler AutoChecker" checked="checked" data-uncheck="#search_bar_thread"/> Search this forum only</label>
<ul id="search_bar_nodes_Disabler">
<li><label><input type="checkbox" name="type[post][group_discussion]" value="1" id="search_bar_group_discussion" class="AutoChecker" data-uncheck="#search_bar_thread"/> Display results as threads</label></li>
</ul></li>
</ul></dd>
</dl>
</div>
<a style="margin:auto;float:right" href="search/" class="button moreOptions Tooltip" title="Advanced Search">More...</a>
<input type="submit" value="Search" class="button primary Tooltip" title="Find Now"/>
<input type="hidden" name="_xfToken" value=""/>
<div class="menuHeader" style="clear:both">
<br><br><h4>Useful Searches</h4>
</div>
<ul class="blockLinksList">
<li><a href="find-new/posts?recent=1" rel="nofollow">Recent Posts</a></li>
</ul>
</div>
</form>
</fieldset>
</div>
</div>
</div>
</li>
<li class="navTab Popup PopupControl PopupClosed">
<a href="login/" rel="Menu" class="navLink NoPopupGadget"><span class="i-user"></span></a>
<div class="Menu JsOnly navPopup" style="width:auto;height:auto" id="SignIn-menu">
<div class="primaryContent">
<form action="misc/openid-login" method="post" class="xenForm " id="login">
<div>
<input type="hidden" name="loginopenid" value="https://account.oneplus.net"/>
<div style="margin: 0px; text-align: center;">
<button type="submit" class="btn btn-primary">Login</button>
<button class="btn btn-primary"><a id="sign-up-button" href="https://account.oneplus.net/sign-up">Sign up</a></button>
</div>
</div>
<input type="hidden" name="cookie_check" value="1"/>
<input type="hidden" name="redirect" value="/threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/"/>
<input type="hidden" name="_xfToken" value=""/>
</form>
</div>
</div>
</li>
</ul>
<div class="logo-main"><a href="//oneplus.net/" title="OnePlus Forums"><span class="i-logo-48"></span></a></div>
</div>
</div>
</header>
<div id="headerProxy"></div>
<div id="content" class="thread_view">
<div class="pageWidth">
<div class="pageContent" id="top">
<div class="mainContainer">
<div class="mainContent">
<div class="breadBoxTop ">
<nav>
<fieldset class="breadcrumb">
<div class="boardTitle"><strong>OnePlus Forums</strong></div>
<span class="crumbs">
<span class="crust homeCrumb" itemscope="itemscope" itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="/" class="crumb" rel="up" itemprop="url"><span itemprop="title">Home</span></a>
<span class="arrow"><span>/</span></span>
</span>
<span class="crust" itemscope="itemscope" itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="https://forums.oneplus.net/forums/#community.30" class="crumb" rel="up" itemprop="url"><span itemprop="title">Community</span></a>
<span class="arrow"><span>/</span></span>
</span>
<span class="crust" itemscope="itemscope" itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="https://forums.oneplus.net/forums/off-topic/" class="crumb" rel="up" itemprop="url"><span itemprop="title">Off Topic</span></a>
<span class="arrow"><span>/</span></span>
</span>
</span>
</fieldset>
</nav>
</div>
<!--[if lt IE 8]>
<p class="importantMessage">You are using an out of date browser. It may not display this or other websites correctly.<br />You should upgrade or use an <a href="https://www.google.com/chrome/browser/" target="_blank">alternative browser</a>.</p>
<![endif]-->
<div class="titleBar">
<h1>Name a city with the next letter of the alphabet (GAME)</h1>
<p id="pageDescription" class="muted ">
Discussion in '<a href="forums/off-topic/">Off Topic</a>' started by <a href="members/faridd.316772/" class="username" dir="auto">faridd</a>, <a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/"><span class="DateTime" title="Oct 29, 2014 at 6:28 PM">Oct 29, 2014</span></a>.
</p>
</div>
<div class="pageNavLinkGroup">
<div class="linkGroup SelectionCountContainer">
</div>
<div class="PageNav" data-page="1" data-range="2" data-start="2" data-end="6" data-last="72" data-sentinel="{{sentinel}}" data-baseurl="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/page-{{sentinel}}">
<span class="pageNavHeader">Page 1 of 72</span>
<nav>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/" class="currentPage " rel="start">1</a>
<a class="PageNavPrev hidden">←</a> <span class="scrollable"><span class="items">
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/page-2" class="">2</a>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/page-3" class="">3</a>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/page-4" class="">4</a>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/page-5" class="">5</a>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/page-6" class="">6</a>
</span></span> <a class="PageNavNext ">→</a>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/page-72" class="">72</a>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/page-2" class="text">Next ></a>
</nav>
</div>
</div>
<form action="inline-mod/post/switch" method="post" class="InlineModForm section" data-cookieName="posts" data-controls="#InlineModControls" data-imodOptions="#ModerationSelect option">
<ol class="messageList" id="messageList">
<li id="post-6979172" class="message " data-author="faridd">
<a name="post-6979172" class="post-anchor"></a>
<div class="messageUserInfo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person">
<div class="messageUserBlock ">
<div class="avatarHolder">
<span class="helper"></span>
<a href="members/faridd.316772/" class="avatar Av316772m" data-avatarhtml="true"><img src="data/avatars/m/316/316772.jpg?1414446343" width="96" height="96" alt="faridd"/></a>
</div>
<h3 class="userText">
<a href="members/faridd.316772/" class="username" dir="auto" itemprop="name">faridd</a>
<em class="userTitle" itemprop="title">Level: Doughnut</em>
</h3>
<span class="arrow"><span></span></span>
</div>
</div>
<div class="messageInfo primaryContent">
<div class="messageContent">
<article>
<blockquote class="messageText SelectQuoteContainer ugc baseHtml">
Austin
<div class="messageTextEndMarker"> </div>
</blockquote>
</article>
</div>
<div class="messageMeta ToggleTriggerAnchor">
<div class="privateControls">
<span class="item muted">
<span class="authorEnd"><a href="members/faridd.316772/" class="username author" dir="auto">faridd</a>,</span>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/" title="Permalink" class="datePermalink"><span class="DateTime" title="Oct 29, 2014 at 6:28 PM">Oct 29, 2014</span></a>
</span>
</div>
<div class="publicControls">
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/" title="Permalink" class="item muted postNumber hashPermalink OverlayTrigger" data-href="posts/6979172/permalink">#1</a>
</div>
</div>
<div id="likes-post-6979172">
<div class="likesSummary secondaryContent">
<span class="LikeText">
<a href="members/anuragvyas14.370736/" class="username" dir="auto">AnuragVyas14</a>, <a href="members/treeneon.378823/" class="username" dir="auto">treeneon</a>, <a href="members/crab37.377148/" class="username" dir="auto">crab37</a> and <a href="posts/6979172/likes" class="OverlayTrigger">2 others</a> like this.
</span>
</div>
</div>
</div>
</li>
<li id="post-6979195" class="message " data-author="quza">
<a name="post-6979195" class="post-anchor"></a>
<div class="messageUserInfo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person">
<div class="messageUserBlock ">
<div class="avatarHolder">
<span class="helper"></span>
<a href="members/quza.59652/" class="avatar Av59652m" data-avatarhtml="true"><img src="data/avatars/m/59/59652.jpg?1403978717" width="96" height="96" alt="quza"/></a>
</div>
<h3 class="userText">
<a href="members/quza.59652/" class="username" dir="auto" itemprop="name">quza</a>
<em class="userTitle" itemprop="title">Level: KitKat</em>
</h3>
<span class="arrow"><span></span></span>
</div>
</div>
<div class="messageInfo primaryContent">
<div class="messageContent">
<article>
<blockquote class="messageText SelectQuoteContainer ugc baseHtml">
Berlin
<div class="messageTextEndMarker"> </div>
</blockquote>
</article>
</div>
<div class="messageMeta ToggleTriggerAnchor">
<div class="privateControls">
<span class="item muted">
<span class="authorEnd"><a href="members/quza.59652/" class="username author" dir="auto">quza</a>,</span>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979195" title="Permalink" class="datePermalink"><span class="DateTime" title="Oct 29, 2014 at 6:28 PM">Oct 29, 2014</span></a>
</span>
</div>
<div class="publicControls">
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979195" title="Permalink" class="item muted postNumber hashPermalink OverlayTrigger" data-href="posts/6979195/permalink">#2</a>
</div>
</div>
<div id="likes-post-6979195">
<div class="likesSummary secondaryContent">
<span class="LikeText">
<a href="members/abm10040.324209/" class="username" dir="auto">abm10040</a> likes this.
</span>
</div>
</div>
</div>
</li>
<li id="post-6979246" class="message " data-author="manosome">
<a name="post-6979246" class="post-anchor"></a>
<div class="messageUserInfo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person">
<div class="messageUserBlock online">
<div class="avatarHolder">
<span class="helper"></span>
<a href="members/manosome.46231/" class="avatar Av46231m" data-avatarhtml="true"><img src="data/avatars/m/46/46231.jpg?1413755550" width="96" height="96" alt="manosome"/></a>
<span class="Tooltip onlineMarker" title="Online Now" data-offsetX="-22" data-offsetY="-8"></span>
</div>
<h3 class="userText">
<a href="members/manosome.46231/" class="username" dir="auto" itemprop="name">manosome</a>
<em class="userTitle" itemprop="title">Level: KitKat</em>
</h3>
<span class="arrow"><span></span></span>
</div>
</div>
<div class="messageInfo primaryContent">
<div class="messageContent">
<article>
<blockquote class="messageText SelectQuoteContainer ugc baseHtml">
<img src="https://forums.oneplus.net/attachments/nobody_cares-gif.175177/" alt="nobody_cares.gif" class="bbCodeImage LbImage"/>
<div class="messageTextEndMarker"> </div>
</blockquote>
</article>
</div>
<div class="messageMeta ToggleTriggerAnchor">
<div class="privateControls">
<span class="item muted">
<span class="authorEnd"><a href="members/manosome.46231/" class="username author" dir="auto">manosome</a>,</span>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979246" title="Permalink" class="datePermalink"><span class="DateTime" title="Oct 29, 2014 at 6:30 PM">Oct 29, 2014</span></a>
</span>
</div>
<div class="publicControls">
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979246" title="Permalink" class="item muted postNumber hashPermalink OverlayTrigger" data-href="posts/6979246/permalink">#3</a>
</div>
</div>
<div id="likes-post-6979246">
<div class="likesSummary secondaryContent">
<span class="LikeText">
<a href="members/paul-yazbeck.165045/" class="username" dir="auto">paul yazbeck</a>, <a href="members/cdisxm.198163/" class="username" dir="auto">cdisxm</a>, <a href="members/arrisquddus.341487/" class="username" dir="auto">arrisquddus</a> and <a href="posts/6979246/likes" class="OverlayTrigger">1 other person</a> like this.
</span>
</div>
</div>
</div>
</li>
<li id="post-6979264" class="message " data-author="ImQ009">
<a name="post-6979264" class="post-anchor"></a>
<div class="messageUserInfo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person">
<div class="messageUserBlock ">
<div class="avatarHolder">
<span class="helper"></span>
<a href="members/imq009.269477/" class="avatar Av269477m" data-avatarhtml="true"><img src="data/avatars/m/269/269477.jpg?1414330060" width="96" height="96" alt="ImQ009"/></a>
</div>
<h3 class="userText">
<a href="members/imq009.269477/" class="username" dir="auto" itemprop="name">ImQ009</a>
<em class="userTitle" itemprop="title">Level: Froyo</em>
</h3>
<span class="arrow"><span></span></span>
</div>
</div>
<div class="messageInfo primaryContent">
<div class="messageContent">
<article>
<blockquote class="messageText SelectQuoteContainer ugc baseHtml">
Chorzów
<div class="messageTextEndMarker"> </div>
</blockquote>
</article>
</div>
<div class="messageMeta ToggleTriggerAnchor">
<div class="privateControls">
<span class="item muted">
<span class="authorEnd"><a href="members/imq009.269477/" class="username author" dir="auto">ImQ009</a>,</span>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979264" title="Permalink" class="datePermalink"><span class="DateTime" title="Oct 29, 2014 at 6:31 PM">Oct 29, 2014</span></a>
</span>
</div>
<div class="publicControls">
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979264" title="Permalink" class="item muted postNumber hashPermalink OverlayTrigger" data-href="posts/6979264/permalink">#4</a>
</div>
</div>
<div id="likes-post-6979264"></div>
</div>
</li>
<li id="post-6979300" class="message " data-author="gmarch49">
<a name="post-6979300" class="post-anchor"></a>
<div class="messageUserInfo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person">
<div class="messageUserBlock ">
<div class="avatarHolder">
<span class="helper"></span>
<a href="members/gmarch49.315094/" class="avatar Av315094m" data-avatarhtml="true"><img src="data/avatars/m/315/315094.jpg?1414628173" width="96" height="96" alt="gmarch49"/></a>
</div>
<h3 class="userText">
<a href="members/gmarch49.315094/" class="username" dir="auto" itemprop="name">gmarch49</a>
<em class="userTitle" itemprop="title">Level: Ice Cream Sandwich</em>
</h3>
<span class="arrow"><span></span></span>
</div>
</div>
<div class="messageInfo primaryContent">
<div class="messageContent">
<article>
<blockquote class="messageText SelectQuoteContainer ugc baseHtml">
Dallas
<div class="messageTextEndMarker"> </div>
</blockquote>
</article>
</div>
<div class="messageMeta ToggleTriggerAnchor">
<div class="privateControls">
<span class="item muted">
<span class="authorEnd"><a href="members/gmarch49.315094/" class="username author" dir="auto">gmarch49</a>,</span>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979300" title="Permalink" class="datePermalink"><span class="DateTime" title="Oct 29, 2014 at 6:31 PM">Oct 29, 2014</span></a>
</span>
</div>
<div class="publicControls">
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979300" title="Permalink" class="item muted postNumber hashPermalink OverlayTrigger" data-href="posts/6979300/permalink">#5</a>
</div>
</div>
<div id="likes-post-6979300"></div>
</div>
</li>
<li id="post-6979366" class="message " data-author="mwayner">
<a name="post-6979366" class="post-anchor"></a>
<div class="messageUserInfo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person">
<div class="messageUserBlock ">
<div class="avatarHolder">
<span class="helper"></span>
<a href="members/mwayner.244373/" class="avatar Av244373m" data-avatarhtml="true"><img src="data/avatars/m/244/244373.jpg?1412425251" width="96" height="96" alt="mwayner"/></a>
</div>
<h3 class="userText">
<a href="members/mwayner.244373/" class="username" dir="auto" itemprop="name">mwayner</a>
<em class="userTitle" itemprop="title">Level: KitKat</em>
</h3>
<span class="arrow"><span></span></span>
</div>
</div>
<div class="messageInfo primaryContent">
<div class="messageContent">
<article>
<blockquote class="messageText SelectQuoteContainer ugc baseHtml">
Edinburgh
<div class="messageTextEndMarker"> </div>
</blockquote>
</article>
</div>
<div class="messageMeta ToggleTriggerAnchor">
<div class="privateControls">
<span class="item muted">
<span class="authorEnd"><a href="members/mwayner.244373/" class="username author" dir="auto">mwayner</a>,</span>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979366" title="Permalink" class="datePermalink"><span class="DateTime" title="Oct 29, 2014 at 6:34 PM">Oct 29, 2014</span></a>
</span>
</div>
<div class="publicControls">
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979366" title="Permalink" class="item muted postNumber hashPermalink OverlayTrigger" data-href="posts/6979366/permalink">#6</a>
</div>
</div>
<div id="likes-post-6979366"></div>
</div>
</li>
<li id="post-6979382" class="message " data-author="JayBerry99">
<a name="post-6979382" class="post-anchor"></a>
<div class="messageUserInfo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person">
<div class="messageUserBlock ">
<div class="avatarHolder">
<span class="helper"></span>
<a href="members/jayberry99.297400/" class="avatar Av297400m" data-avatarhtml="true"><img src="data/avatars/m/297/297400.jpg?1413658965" width="96" height="96" alt="JayBerry99"/></a>
</div>
<h3 class="userText">
<a href="members/jayberry99.297400/" class="username" dir="auto" itemprop="name">JayBerry99</a>
<em class="userTitle" itemprop="title">Level: Honeycomb</em>
</h3>
<span class="arrow"><span></span></span>
</div>
</div>
<div class="messageInfo primaryContent">
<div class="messageContent">
<article>
<blockquote class="messageText SelectQuoteContainer ugc baseHtml">
<img src="http://www.weirdexistence.com/img/weird/ugly-faces/ugly-faces03.jpg" class="bbCodeImage LbImage" alt="[​IMG]" data-url="http://www.weirdexistence.com/img/weird/ugly-faces/ugly-faces03.jpg"/>
<div class="messageTextEndMarker"> </div>
</blockquote>
</article>
</div>
<div class="messageMeta ToggleTriggerAnchor">
<div class="privateControls">
<span class="item muted">
<span class="authorEnd"><a href="members/jayberry99.297400/" class="username author" dir="auto">JayBerry99</a>,</span>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979382" title="Permalink" class="datePermalink"><span class="DateTime" title="Oct 29, 2014 at 6:34 PM">Oct 29, 2014</span></a>
</span>
</div>
<div class="publicControls">
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979382" title="Permalink" class="item muted postNumber hashPermalink OverlayTrigger" data-href="posts/6979382/permalink">#7</a>
</div>
</div>
<div id="likes-post-6979382"></div>
</div>
</li>
<li id="post-6979449" class="message " data-author="maksiu92">
<a name="post-6979449" class="post-anchor"></a>
<div class="messageUserInfo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person">
<div class="messageUserBlock ">
<div class="avatarHolder">
<span class="helper"></span>
<a href="members/maksiu92.318519/" class="avatar Av318519m" data-avatarhtml="true"><img src="data/avatars/m/318/318519.jpg?1414608598" width="96" height="96" alt="maksiu92"/></a>
</div>
<h3 class="userText">
<a href="members/maksiu92.318519/" class="username" dir="auto" itemprop="name">maksiu92</a>
<em class="userTitle" itemprop="title">Level: Éclair</em>
</h3>
<span class="arrow"><span></span></span>
</div>
</div>
<div class="messageInfo primaryContent">
<div class="messageContent">
<article>
<blockquote class="messageText SelectQuoteContainer ugc baseHtml">
<div class="bbCodeBlock bbCodeQuote" data-author="mwayner">
<aside>
<div class="attribution type">mwayner said:
<a href="goto/post?id=6979366#post-6979366" class="AttributionLink">↑</a>
</div>
<blockquote class="quoteContainer"><div class="quote">Edinburgh</div><div class="quoteExpand">Click to expand...</div></blockquote>
</aside>
</div>Frankfurt
<div class="messageTextEndMarker"> </div>
</blockquote>
</article>
</div>
<div class="messageMeta ToggleTriggerAnchor">
<div class="privateControls">
<span class="item muted">
<span class="authorEnd"><a href="members/maksiu92.318519/" class="username author" dir="auto">maksiu92</a>,</span>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979449" title="Permalink" class="datePermalink"><span class="DateTime" title="Oct 29, 2014 at 6:36 PM">Oct 29, 2014</span></a>
</span>
</div>
<div class="publicControls">
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979449" title="Permalink" class="item muted postNumber hashPermalink OverlayTrigger" data-href="posts/6979449/permalink">#8</a>
</div>
</div>
<div id="likes-post-6979449"></div>
</div>
</li>
<li id="post-6979496" class="message " data-author="Crysko">
<a name="post-6979496" class="post-anchor"></a>
<div class="messageUserInfo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person">
<div class="messageUserBlock ">
<div class="avatarHolder">
<span class="helper"></span>
<a href="members/crysko.307159/" class="avatar Av307159m" data-avatarhtml="true"><img src="data/avatars/m/307/307159.jpg?1414701178" width="96" height="96" alt="Crysko"/></a>
</div>
<h3 class="userText">
<a href="members/crysko.307159/" class="username" dir="auto" itemprop="name">Crysko</a>
<em class="userTitle" itemprop="title">Level: Gingerbread</em>
</h3>
<span class="arrow"><span></span></span>
</div>
</div>
<div class="messageInfo primaryContent">
<div class="messageContent">
<article>
<blockquote class="messageText SelectQuoteContainer ugc baseHtml">
<div class="bbCodeBlock bbCodeQuote" data-author="maksiu92">
<aside>
<div class="attribution type">maksiu92 said:
<a href="goto/post?id=6979449#post-6979449" class="AttributionLink">↑</a>
</div>
<blockquote class="quoteContainer"><div class="quote">Frankfurt</div><div class="quoteExpand">Click to expand...</div></blockquote>
</aside>
</div>Gabiro
<div class="messageTextEndMarker"> </div>
</blockquote>
</article>
</div>
<div class="messageMeta ToggleTriggerAnchor">
<div class="privateControls">
<span class="item muted">
<span class="authorEnd"><a href="members/crysko.307159/" class="username author" dir="auto">Crysko</a>,</span>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979496" title="Permalink" class="datePermalink"><span class="DateTime" title="Oct 29, 2014 at 6:38 PM">Oct 29, 2014</span></a>
</span>
</div>
<div class="publicControls">
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979496" title="Permalink" class="item muted postNumber hashPermalink OverlayTrigger" data-href="posts/6979496/permalink">#9</a>
</div>
</div>
<div id="likes-post-6979496"></div>
</div>
</li>
<li id="post-6979501" class="message " data-author="JayBerry99">
<a name="post-6979501" class="post-anchor"></a>
<div class="messageUserInfo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person">
<div class="messageUserBlock ">
<div class="avatarHolder">
<span class="helper"></span>
<a href="members/jayberry99.297400/" class="avatar Av297400m" data-avatarhtml="true"><img src="data/avatars/m/297/297400.jpg?1413658965" width="96" height="96" alt="JayBerry99"/></a>
</div>
<h3 class="userText">
<a href="members/jayberry99.297400/" class="username" dir="auto" itemprop="name">JayBerry99</a>
<em class="userTitle" itemprop="title">Level: Honeycomb</em>
</h3>
<span class="arrow"><span></span></span>
</div>
</div>
<div class="messageInfo primaryContent">
<div class="messageContent">
<article>
<blockquote class="messageText SelectQuoteContainer ugc baseHtml">
<ul>
<li>Gaborone</li>
</ul>
<div class="messageTextEndMarker"> </div>
</blockquote>
</article>
</div>
<div class="messageMeta ToggleTriggerAnchor">
<div class="privateControls">
<span class="item muted">
<span class="authorEnd"><a href="members/jayberry99.297400/" class="username author" dir="auto">JayBerry99</a>,</span>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979501" title="Permalink" class="datePermalink"><span class="DateTime" title="Oct 29, 2014 at 6:38 PM">Oct 29, 2014</span></a>
</span>
</div>
<div class="publicControls">
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979501" title="Permalink" class="item muted postNumber hashPermalink OverlayTrigger" data-href="posts/6979501/permalink">#10</a>
</div>
</div>
<div id="likes-post-6979501"></div>
</div>
</li>
<li id="post-6979519" class="message " data-author="slee0108">
<a name="post-6979519" class="post-anchor"></a>
<div class="messageUserInfo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person">
<div class="messageUserBlock ">
<div class="avatarHolder">
<span class="helper"></span>
<a href="members/slee0108.187653/" class="avatar Av187653m" data-avatarhtml="true"><img src="data/avatars/m/187/187653.jpg?1411756097" width="96" height="96" alt="slee0108"/></a>
</div>
<h3 class="userText">
<a href="members/slee0108.187653/" class="username" dir="auto" itemprop="name">slee0108</a>
<em class="userTitle" itemprop="title">Level: KitKat</em>
</h3>
<span class="arrow"><span></span></span>
</div>
</div>
<div class="messageInfo primaryContent">
<div class="messageContent">
<article>
<blockquote class="messageText SelectQuoteContainer ugc baseHtml">
Hong Kong
<div class="messageTextEndMarker"> </div>
</blockquote>
</article>
</div>
<div class="messageMeta ToggleTriggerAnchor">
<div class="privateControls">
<span class="item muted">
<span class="authorEnd"><a href="members/slee0108.187653/" class="username author" dir="auto">slee0108</a>,</span>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979519" title="Permalink" class="datePermalink"><span class="DateTime" title="Oct 29, 2014 at 6:38 PM">Oct 29, 2014</span></a>
</span>
</div>
<div class="publicControls">
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979519" title="Permalink" class="item muted postNumber hashPermalink OverlayTrigger" data-href="posts/6979519/permalink">#11</a>
</div>
</div>
<div id="likes-post-6979519"></div>
</div>
</li>
<li id="post-6979520" class="message " data-author="JayBerry99">
<a name="post-6979520" class="post-anchor"></a>
<div class="messageUserInfo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person">
<div class="messageUserBlock ">
<div class="avatarHolder">
<span class="helper"></span>
<a href="members/jayberry99.297400/" class="avatar Av297400m" data-avatarhtml="true"><img src="data/avatars/m/297/297400.jpg?1413658965" width="96" height="96" alt="JayBerry99"/></a>
</div>
<h3 class="userText">
<a href="members/jayberry99.297400/" class="username" dir="auto" itemprop="name">JayBerry99</a>
<em class="userTitle" itemprop="title">Level: Honeycomb</em>
</h3>
<span class="arrow"><span></span></span>
</div>
</div>
<div class="messageInfo primaryContent">
<div class="messageContent">
<article>
<blockquote class="messageText SelectQuoteContainer ugc baseHtml">
<ul>
<li>Islamabad lol</li>
</ul>
<div class="messageTextEndMarker"> </div>
</blockquote>
</article>
</div>
<div class="messageMeta ToggleTriggerAnchor">
<div class="privateControls">
<span class="item muted">
<span class="authorEnd"><a href="members/jayberry99.297400/" class="username author" dir="auto">JayBerry99</a>,</span>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979520" title="Permalink" class="datePermalink"><span class="DateTime" title="Oct 29, 2014 at 6:39 PM">Oct 29, 2014</span></a>
</span>
</div>
<div class="publicControls">
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979520" title="Permalink" class="item muted postNumber hashPermalink OverlayTrigger" data-href="posts/6979520/permalink">#12</a>
</div>
</div>
<div id="likes-post-6979520"></div>
</div>
</li>
<li id="post-6979526" class="message " data-author="leonvergeldt">
<a name="post-6979526" class="post-anchor"></a>
<div class="messageUserInfo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person">
<div class="messageUserBlock ">
<div class="avatarHolder">
<span class="helper"></span>
<a href="members/leonvergeldt.312270/" class="avatar Av312270m" data-avatarhtml="true"><img src="styles/oneplus2014/xenforo/avatars/avatar_male_m.png" width="96" height="96" alt="leonvergeldt"/></a>
</div>
<h3 class="userText">
<a href="members/leonvergeldt.312270/" class="username" dir="auto" itemprop="name">leonvergeldt</a>
<em class="userTitle" itemprop="title">Level: Éclair</em>
</h3>
<span class="arrow"><span></span></span>
</div>
</div>
<div class="messageInfo primaryContent">
<div class="messageContent">
<article>
<blockquote class="messageText SelectQuoteContainer ugc baseHtml">
<div class="bbCodeBlock bbCodeQuote" data-author="JayBerry99">
<aside>
<div class="attribution type">JayBerry99 said:
<a href="goto/post?id=6979501#post-6979501" class="AttributionLink">↑</a>
</div>
<blockquote class="quoteContainer"><div class="quote"><ul>
<li>Gaborone</li>
</ul></div><div class="quoteExpand">Click to expand...</div></blockquote>
</aside>
</div>Helsinki
<div class="messageTextEndMarker"> </div>
</blockquote>
</article>
</div>
<div class="messageMeta ToggleTriggerAnchor">
<div class="privateControls">
<span class="item muted">
<span class="authorEnd"><a href="members/leonvergeldt.312270/" class="username author" dir="auto">leonvergeldt</a>,</span>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979526" title="Permalink" class="datePermalink"><span class="DateTime" title="Oct 29, 2014 at 6:39 PM">Oct 29, 2014</span></a>
</span>
</div>
<div class="publicControls">
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979526" title="Permalink" class="item muted postNumber hashPermalink OverlayTrigger" data-href="posts/6979526/permalink">#13</a>
</div>
</div>
<div id="likes-post-6979526"></div>
</div>
</li>
<li id="post-6979532" class="message " data-author="mwayner">
<a name="post-6979532" class="post-anchor"></a>
<div class="messageUserInfo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person">
<div class="messageUserBlock ">
<div class="avatarHolder">
<span class="helper"></span>
<a href="members/mwayner.244373/" class="avatar Av244373m" data-avatarhtml="true"><img src="data/avatars/m/244/244373.jpg?1412425251" width="96" height="96" alt="mwayner"/></a>
</div>
<h3 class="userText">
<a href="members/mwayner.244373/" class="username" dir="auto" itemprop="name">mwayner</a>
<em class="userTitle" itemprop="title">Level: KitKat</em>
</h3>
<span class="arrow"><span></span></span>
</div>
</div>
<div class="messageInfo primaryContent">
<div class="messageContent">
<article>
<blockquote class="messageText SelectQuoteContainer ugc baseHtml">
Istanbul
<div class="messageTextEndMarker"> </div>
</blockquote>
</article>
</div>
<div class="messageMeta ToggleTriggerAnchor">
<div class="privateControls">
<span class="item muted">
<span class="authorEnd"><a href="members/mwayner.244373/" class="username author" dir="auto">mwayner</a>,</span>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979532" title="Permalink" class="datePermalink"><span class="DateTime" title="Oct 29, 2014 at 6:39 PM">Oct 29, 2014</span></a>
</span>
</div>
<div class="publicControls">
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979532" title="Permalink" class="item muted postNumber hashPermalink OverlayTrigger" data-href="posts/6979532/permalink">#14</a>
</div>
</div>
<div id="likes-post-6979532"></div>
</div>
</li>
<li id="post-6979539" class="message " data-author="JayBerry99">
<a name="post-6979539" class="post-anchor"></a>
<div class="messageUserInfo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person">
<div class="messageUserBlock ">
<div class="avatarHolder">
<span class="helper"></span>
<a href="members/jayberry99.297400/" class="avatar Av297400m" data-avatarhtml="true"><img src="data/avatars/m/297/297400.jpg?1413658965" width="96" height="96" alt="JayBerry99"/></a>
</div>
<h3 class="userText">
<a href="members/jayberry99.297400/" class="username" dir="auto" itemprop="name">JayBerry99</a>
<em class="userTitle" itemprop="title">Level: Honeycomb</em>
</h3>
<span class="arrow"><span></span></span>
</div>
</div>
<div class="messageInfo primaryContent">
<div class="messageContent">
<article>
<blockquote class="messageText SelectQuoteContainer ugc baseHtml">
Islamabad lelelelele
<div class="messageTextEndMarker"> </div>
</blockquote>
</article>
</div>
<div class="messageMeta ToggleTriggerAnchor">
<div class="privateControls">
<span class="item muted">
<span class="authorEnd"><a href="members/jayberry99.297400/" class="username author" dir="auto">JayBerry99</a>,</span>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979539" title="Permalink" class="datePermalink"><span class="DateTime" title="Oct 29, 2014 at 6:39 PM">Oct 29, 2014</span></a>
</span>
</div>
<div class="publicControls">
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979539" title="Permalink" class="item muted postNumber hashPermalink OverlayTrigger" data-href="posts/6979539/permalink">#15</a>
</div>
</div>
<div id="likes-post-6979539"></div>
</div>
</li>
<li id="post-6979545" class="message " data-author="slee0108">
<a name="post-6979545" class="post-anchor"></a>
<div class="messageUserInfo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person">
<div class="messageUserBlock ">
<div class="avatarHolder">
<span class="helper"></span>
<a href="members/slee0108.187653/" class="avatar Av187653m" data-avatarhtml="true"><img src="data/avatars/m/187/187653.jpg?1411756097" width="96" height="96" alt="slee0108"/></a>
</div>
<h3 class="userText">
<a href="members/slee0108.187653/" class="username" dir="auto" itemprop="name">slee0108</a>
<em class="userTitle" itemprop="title">Level: KitKat</em>
</h3>
<span class="arrow"><span></span></span>
</div>
</div>
<div class="messageInfo primaryContent">
<div class="messageContent">
<article>
<blockquote class="messageText SelectQuoteContainer ugc baseHtml">
Jakata
<div class="messageTextEndMarker"> </div>
</blockquote>
</article>
</div>
<div class="messageMeta ToggleTriggerAnchor">
<div class="privateControls">
<span class="item muted">
<span class="authorEnd"><a href="members/slee0108.187653/" class="username author" dir="auto">slee0108</a>,</span>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979545" title="Permalink" class="datePermalink"><span class="DateTime" title="Oct 29, 2014 at 6:39 PM">Oct 29, 2014</span></a>
</span>
</div>
<div class="publicControls">
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979545" title="Permalink" class="item muted postNumber hashPermalink OverlayTrigger" data-href="posts/6979545/permalink">#16</a>
</div>
</div>
<div id="likes-post-6979545"></div>
</div>
</li>
<li id="post-6979552" class="message " data-author="Bulunmaz">
<a name="post-6979552" class="post-anchor"></a>
<div class="messageUserInfo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person">
<div class="messageUserBlock ">
<div class="avatarHolder">
<span class="helper"></span>
<a href="members/bulunmaz.201575/" class="avatar Av201575m" data-avatarhtml="true"><img src="data/avatars/m/201/201575.jpg?1408975371" width="96" height="96" alt="Bulunmaz"/></a>
</div>
<h3 class="userText">
<a href="members/bulunmaz.201575/" class="username" dir="auto" itemprop="name">Bulunmaz</a>
<em class="userTitle" itemprop="title">Level: Ice Cream Sandwich</em>
</h3>
<span class="arrow"><span></span></span>
</div>
</div>
<div class="messageInfo primaryContent">
<div class="messageContent">
<article>
<blockquote class="messageText SelectQuoteContainer ugc baseHtml">
istanbul
<div class="messageTextEndMarker"> </div>
</blockquote>
</article>
</div>
<div class="messageMeta ToggleTriggerAnchor">
<div class="privateControls">
<span class="item muted">
<span class="authorEnd"><a href="members/bulunmaz.201575/" class="username author" dir="auto">Bulunmaz</a>,</span>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979552" title="Permalink" class="datePermalink"><span class="DateTime" title="Oct 29, 2014 at 6:40 PM">Oct 29, 2014</span></a>
</span>
</div>
<div class="publicControls">
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979552" title="Permalink" class="item muted postNumber hashPermalink OverlayTrigger" data-href="posts/6979552/permalink">#17</a>
</div>
</div>
<div id="likes-post-6979552"></div>
</div>
</li>
<li id="post-6979559" class="message " data-author="MrSmifford">
<a name="post-6979559" class="post-anchor"></a>
<div class="messageUserInfo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person">
<div class="messageUserBlock ">
<div class="avatarHolder">
<span class="helper"></span>
<a href="members/mrsmifford.324261/" class="avatar Av324261m" data-avatarhtml="true"><img src="data/avatars/m/324/324261.jpg?1416335898" width="96" height="96" alt="MrSmifford"/></a>
</div>
<h3 class="userText">
<a href="members/mrsmifford.324261/" class="username" dir="auto" itemprop="name">MrSmifford</a>
<em class="userTitle" itemprop="title">Level: Cupcake</em>
</h3>
<span class="arrow"><span></span></span>
</div>
</div>
<div class="messageInfo primaryContent">
<div class="messageContent">
<article>
<blockquote class="messageText SelectQuoteContainer ugc baseHtml">
Kabul
<div class="messageTextEndMarker"> </div>
</blockquote>
</article>
</div>
<div class="messageMeta ToggleTriggerAnchor">
<div class="privateControls">
<span class="item muted">
<span class="authorEnd"><a href="members/mrsmifford.324261/" class="username author" dir="auto">MrSmifford</a>,</span>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979559" title="Permalink" class="datePermalink"><span class="DateTime" title="Oct 29, 2014 at 6:40 PM">Oct 29, 2014</span></a>
</span>
</div>
<div class="publicControls">
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979559" title="Permalink" class="item muted postNumber hashPermalink OverlayTrigger" data-href="posts/6979559/permalink">#18</a>
</div>
</div>
<div id="likes-post-6979559"></div>
</div>
</li>
<li id="post-6979567" class="message " data-author="rjosborne88">
<a name="post-6979567" class="post-anchor"></a>
<div class="messageUserInfo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person">
<div class="messageUserBlock ">
<div class="avatarHolder">
<span class="helper"></span>
<a href="members/rjosborne88.301251/" class="avatar Av301251m" data-avatarhtml="true"><img src="data/avatars/m/301/301251.jpg?1413559571" width="96" height="96" alt="rjosborne88"/></a>
</div>
<h3 class="userText">
<a href="members/rjosborne88.301251/" class="username" dir="auto" itemprop="name">rjosborne88</a>
<em class="userTitle" itemprop="title">Level: Froyo</em>
</h3>
<span class="arrow"><span></span></span>
</div>
</div>
<div class="messageInfo primaryContent">
<div class="messageContent">
<article>
<blockquote class="messageText SelectQuoteContainer ugc baseHtml">
Idaho!
<div class="messageTextEndMarker"> </div>
</blockquote>
</article>
</div>
<div class="messageMeta ToggleTriggerAnchor">
<div class="privateControls">
<span class="item muted">
<span class="authorEnd"><a href="members/rjosborne88.301251/" class="username author" dir="auto">rjosborne88</a>,</span>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979567" title="Permalink" class="datePermalink"><span class="DateTime" title="Oct 29, 2014 at 6:40 PM">Oct 29, 2014</span></a>
</span>
</div>
<div class="publicControls">
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979567" title="Permalink" class="item muted postNumber hashPermalink OverlayTrigger" data-href="posts/6979567/permalink">#19</a>
</div>
</div>
<div id="likes-post-6979567"></div>
</div>
</li>
<li id="post-6979571" class="message " data-author="slee0108">
<a name="post-6979571" class="post-anchor"></a>
<div class="messageUserInfo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person">
<div class="messageUserBlock ">
<div class="avatarHolder">
<span class="helper"></span>
<a href="members/slee0108.187653/" class="avatar Av187653m" data-avatarhtml="true"><img src="data/avatars/m/187/187653.jpg?1411756097" width="96" height="96" alt="slee0108"/></a>
</div>
<h3 class="userText">
<a href="members/slee0108.187653/" class="username" dir="auto" itemprop="name">slee0108</a>
<em class="userTitle" itemprop="title">Level: KitKat</em>
</h3>
<span class="arrow"><span></span></span>
</div>
</div>
<div class="messageInfo primaryContent">
<div class="messageContent">
<article>
<blockquote class="messageText SelectQuoteContainer ugc baseHtml">
London
<div class="messageTextEndMarker"> </div>
</blockquote>
</article>
</div>
<div class="messageMeta ToggleTriggerAnchor">
<div class="privateControls">
<span class="item muted">
<span class="authorEnd"><a href="members/slee0108.187653/" class="username author" dir="auto">slee0108</a>,</span>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979571" title="Permalink" class="datePermalink"><span class="DateTime" title="Oct 29, 2014 at 6:40 PM">Oct 29, 2014</span></a>
</span>
</div>
<div class="publicControls">
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#post-6979571" title="Permalink" class="item muted postNumber hashPermalink OverlayTrigger" data-href="posts/6979571/permalink">#20</a>
</div>
</div>
<div id="likes-post-6979571">
<div class="likesSummary secondaryContent">
<span class="LikeText">
<a href="members/hseteej.369611/" class="username" dir="auto">hseteej</a> likes this.
</span>
</div>
</div>
</div>
</li>
</ol>
<input type="hidden" name="_xfToken" value=""/>
</form>
<div class="pageNavLinkGroup">
<div class="linkGroup">
<label for="LoginControl"><a href="login/" class="concealed element">(You must log in or sign up to reply here.)</a></label>
</div>
<div class="linkGroup" style="display: none"><a href="javascript:" class="muted JsOnly DisplayIgnoredContent Tooltip" title="Show hidden content by ">Show Ignored Content</a></div>
<div class="PageNav" data-page="1" data-range="2" data-start="2" data-end="6" data-last="72" data-sentinel="{{sentinel}}" data-baseurl="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/page-{{sentinel}}">
<span class="pageNavHeader">Page 1 of 72</span>
<nav>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/" class="currentPage " rel="start">1</a>
<a class="PageNavPrev hidden">←</a> <span class="scrollable"><span class="items">
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/page-2" class="">2</a>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/page-3" class="">3</a>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/page-4" class="">4</a>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/page-5" class="">5</a>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/page-6" class="">6</a>
</span></span> <a class="PageNavNext ">→</a>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/page-72" class="">72</a>
<a href="threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/page-2" class="text">Next ></a>
</nav>
</div>
</div>
<form action="login/login" method="post" class="xenForm " id="login" style="display:none">
<div class="ctrlWrapper">
<dl class="ctrlUnit">
<dt><label for="LoginControl">Your name or email address:</label></dt>
<dd><input type="text" name="login" id="LoginControl" class="textCtrl" tabindex="101"/></dd>
</dl>
<dl class="ctrlUnit">
<dt>
<label for="ctrl_password">Do you already have an account?</label>
</dt>
<dd>
<ul>
<li><label for="ctrl_not_registered"><input type="radio" name="register" value="1" id="ctrl_not_registered" tabindex="105"/>
No, create an account now.</label></li>
<li><label for="ctrl_registered"><input type="radio" name="register" value="0" id="ctrl_registered" tabindex="105" checked="checked" class="Disabler"/>
Yes, my password is:</label></li>
<li id="ctrl_registered_Disabler">
<input type="password" name="password" class="textCtrl" id="ctrl_password" tabindex="102"/>
<div class="lostPassword"><a href="lost-password/" class="OverlayTrigger OverlayCloser" tabindex="106">Forgot your password?</a></div>
</li>
</ul>
</dd>
</dl>
<dl class="ctrlUnit submitUnit">
<dt></dt>
<dd>
<input type="submit" class="button primary" value="Log in" tabindex="104" data-loginPhrase="Log in" data-signupPhrase="Sign up"/>
<label for="ctrl_remember" class="rememberPassword"><input type="checkbox" name="remember" value="1" id="ctrl_remember" tabindex="103"/> Stay logged in</label>
</dd>
</dl>
</div>
<input type="hidden" name="cookie_check" value="1"/>
<input type="hidden" name="redirect" value="/threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/"/>
<input type="hidden" name="_xfToken" value=""/>
</form>
</div>
</div>
<aside>
<div class="sidebar">
<a href="https://account.oneplus.net/sign-up" class="redbutton"><span class="inner">Sign up now!</span></a>
<div class="section widget-group-no-name widget-container">
<div class="secondaryContent widget OnePlus_WidgetCategories_WidgetRenderer_Categories" id="widget-11">
<h3>
<a href="forums/"><span class="i-list"></span> Categories <span class="widget_header_small">(View All)</span></a>
</h3>
<ul class="xenforo-list-2cols">
<li><a href="/forums/announcements/">Announcements</a></li>
<li><a href="/forums/the-one/">The One</a></li>
<li><a href="/forums/cyanogenmod-11s/">CyanogenMod 11S</a></li>
<li><a href="/forums/dev-roms/">Development</a></li>
<li><a href="/forums/off-topic/">Off Topic</a></li>
<li><a href="/forums/invites/">Invites</a></li>
</ul>
<div class="clearfix" style="clear:left"></div>
</div>
</div>
<div class="section widget-group-no-name widget-container">
<div class="secondaryContent widget OnePlus_WidgetCategories_WidgetRenderer_Languages" id="widget-12">
<h3>
<span class="i-world"></span> Regional Forums
</h3>
<ul class="xenforo-list-2cols">
<li><a href="/forums/dansk/">Dansk</a></li>
<li><a href="/forums/deutsch/">Deutsch</a></li>
<li><a href="/forums/espanol/">Español</a></li>
<li><a href="/forums/francais/">Français</a></li>
<li><a href="/forums/italiano/">Italiano</a></li>
<li><a href="/forums/nederlands/">Nederlands</a></li>
<li><a href="/forums/portugues/">Português</a></li>
<li><a href="/forums/svenska/">Svenska</a></li>
<li><a href="/forums/suomi/">Suomi</a></li>
<li><a href="/forums/traditional_chinese/">繁體中文</a></li>
<li><a href="/forums/india/">India</a></li>
<li><a href="/forums/russia/">Россия</a></li>
<li><a href="/forums/malaysia/">Malaysia</a></li>
</ul>
<div class="clearfix" style="clear:left"></div>
</div>
</div>
<div class="section widget-group-no-name widget-container">
<div class="secondaryContent widget OnePlus_WidgetCategories_WidgetRenderer_Stats" id="widget-4">
<h3>
<span class="i-stats"></span> Forum Statistics
</h3>
<div class="pairsJustified">
<dl class="discussionCount"><dt>Discussions:</dt>
<dd>165,868</dd></dl>
<dl class="messageCount"><dt>Messages:</dt>
<dd>7,707,948</dd></dl>
<dl class="memberCount"><dt>Members:</dt>
<dd>406,742</dd></dl>
<dl><dt>Latest Member:</dt>
<dd><a href="members/ppoteixa.407949/" class="username" dir="auto">ppoteixa</a></dd></dl>
<dl><dt>Online:</dt>
<dd><a href="/online/?type=registered">2,168</a></dd></dl>
</div>
</div>
</div>
<div class="widget WidgetFramework_WidgetRenderer_ShareThisPage" id="widget-5">
<div class="section infoBlock sharePage">
<div class="secondaryContent">
<h3><span class="i-share"></span> Follow Us</h3>
<div class="g-page" data-width="249" data-href="https://plus.google.com/102032589992734862411" data-showtagline="false" data-showcoverphoto="false" data-rel="publisher" style="margin-bottom:100px;"></div>
<script type="text/javascript">
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/platform.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
<div class="tweet shareControl" style="margin-top:5px;">
<a href="https://twitter.com/oneplus" class="twitter-follow-button" data-show-count="false" data-show-screen-name="false">Follow @oneplus</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</div>
<iframe src="//www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2Foneplusofficial&width=249&layout=button_count&action=like&show_faces=false&share=false&height=21&appId=205164146301443" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:249px; height:21px;" allowTransparency="true"></iframe>
</div>
</div>
</div>
</div>
</aside>
</div>
</div>
</div>
<footer>
<div class="neversettle-image">
<div class="footer">
<div class="pageWidth">
<div class="pageContent">
<ul class="footerLinks">
<li><a href="misc/quick-navigation-menu" class="OverlayTrigger jumpMenuTrigger" data-cacheOverlay="true" title="Open quick navigation"> </a></li>
<li><a href="http://oneplus.net/support">Contact Us</a></li>
<li><a href="help/">Help</a></li>
<li><a href="https://forums.oneplus.net" class="homeLink">Home</a></li>
<li><a href="/threads/name-a-city-with-the-next-letter-of-the-alphabet-game.160418/#top" class="topLink">Top</a></li>
<li><a href="forums/-/index.rss" rel="alternate" class="globalFeed" target="_blank" title="RSS feed for OnePlus Forums">RSS</a></li>
</ul>
<span class="helper"></span>
</div>
</div>
</div>
<div class="footerLegal">
<div class="pageWidth">
<div class="pageContent">
<ul id="legal">
<li><a href="help/terms">Terms and Rules</a></li>
</ul>
<span class="helper"></span>
</div>
</div>
</div>
<div style="text-align:center">
<a href="http://plus.google.com/102032589992734862411" rel="publisher"><span class="i-gplus"></span></a>
<a href="http://facebook.com/oneplusofficial"><span class="i-facebook"></span></a>
<a href="http://twitter.com/oneplus"><span class="i-twitter"></span></a>
</div>
</div>
</footer>
<script>
jQuery.extend(true, XenForo,
{
visitor: { user_id: 0 },
serverTimeInfo:
{
now: 1417733660,
today: 1417651200,
todayDow: 4
},
_lightBoxUniversal: "0",
_enableOverlays: "1",
_animationSpeedMultiplier: "1",
_overlayConfig:
{
top: "10%",
speed: 200,
closeSpeed: 100,
mask:
{
color: "rgb(255, 255, 255)",
opacity: "0.9",
loadSpeed: 200,
closeSpeed: 100
}
},
_ignoredUsers: [],
_loadedScripts: {"thread_view":true,"message":true,"bb_code":true,"message_user_info":true,"likes_summary":true,"sidebar_share_page":true,"wf_default":true,"xopenid_login_form":true},
_cookieConfig: { path: "/", domain: "", prefix: "xf_"},
_csrfToken: "",
_csrfRefreshUrl: "login/csrf-token-refresh",
_jsVersion: "3fee6e84"
});
jQuery.extend(XenForo.phrases,
{
cancel: "Cancel",
a_moment_ago: "A moment ago",
one_minute_ago: "1 minute ago",
x_minutes_ago: "%minutes% minutes ago",
today_at_x: "Today at %time%",
yesterday_at_x: "Yesterday at %time%",
day_x_at_time_y: "%day% at %time%",
day0: "Sunday",
day1: "Monday",
day2: "Tuesday",
day3: "Wednesday",
day4: "Thursday",
day5: "Friday",
day6: "Saturday",
_months: "January,February,March,April,May,June,July,August,September,October,November,December",
_daysShort: "Sun,Mon,Tue,Wed,Thu,Fri,Sat",
following_error_occurred: "The following error occurred",
server_did_not_respond_in_time_try_again: "The server did not respond in time. Please try again.",
logging_in: "Logging in",
click_image_show_full_size_version: "Click this image to show the full-size version.",
show_hidden_content_by_x: "Show hidden content by {names}"
});
// Facebook Javascript SDK
XenForo.Facebook.appId = "";
XenForo.Facebook.forceInit = false;
</script>
</body>
</html> |