File size: 142,556 Bytes
b3057a7 | 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 | ,timestamp,from_state,to_state,action
0,2024-05-28 06:35:35.738194,08b900,08b900/18cad2,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
1,2024-05-28 06:35:48.209785,08b900/18cad2,08b900/66c66d,"touch <button bound_box=585,940,777,1084>NO</button>"
2,2024-05-28 06:35:59.980515,08b900/66c66d,08b900/66c66d,"touch <button bound_box=0,1628,216,1756>Map</button>"
3,2024-05-28 06:36:11.504414,08b900/66c66d,08b900/888a22,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
4,2024-05-28 06:36:23.443662,08b900/888a22,08b900/66c66d,"touch <button bound_box=75,987,1005,1131>IMPROVE THIS MAP</button>"
5,2024-05-28 06:36:35.160343,08b900/66c66d,08b900/66c66d,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
6,2024-05-28 06:36:47.040922,08b900/66c66d,08b900/7e6517,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
7,2024-05-28 06:36:58.877729,08b900/7e6517,08b900/7e6517,"touch <button bound_box=0,1628,216,1756>Map</button>"
8,2024-05-28 06:37:13.854386,08b900/7e6517,08b900/7e6517,"touch <button bound_box=432,1628,648,1756>Search</button>"
9,2024-05-28 06:37:25.644996,08b900/7e6517,08b900/7e6517,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
10,2024-05-28 06:37:37.440135,08b900/7e6517,08b900/66c66d,"touch <button bound_box=216,745,374,802>Settings</button>"
11,2024-05-28 06:37:48.320778,08b900/66c66d,08b900,kill_app
12,2024-05-28 06:37:59.177285,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
13,2024-05-28 06:38:10.992304,08b900/66c66d,08b900/2479ee,"touch <button bound_box=648,1628,864,1756>Route</button>"
14,2024-05-28 06:38:23.215652,08b900/2479ee,08b900/2479ee,"touch <p bound_box=75,806,1005,928>You need PRO Version to build routes without inter</p>"
15,2024-05-28 06:38:35.198882,08b900/2479ee,08b900/f1a4a2,"touch <button bound_box=229,940,460,1084>CANCEL</button>"
16,2024-05-28 06:38:47.202955,08b900/f1a4a2,08b900/b9b511,"touch <button bound_box=207,378,912,468>TO</button>"
17,2024-05-28 06:39:03.636447,08b900/b9b511,08b900/b9b511,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
18,2024-05-28 06:39:19.033785,08b900/b9b511,08b900/b9b511,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
19,2024-05-28 06:39:30.932032,08b900/b9b511,08b900/b9b511,"touch <input bound_box=312,100,1056,208>Address, hotel, name</input>"
20,2024-05-28 06:39:42.963942,08b900/b9b511,08b900/b9b511,"touch <button bound_box=216,346,433,403>My location</button>"
21,2024-05-28 06:39:54.633901,08b900/b9b511,08b900/b9b511,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
22,2024-05-28 06:40:06.633473,08b900/b9b511,08b900/b9b511,"touch <button bound_box=0,1628,216,1756>Map</button>"
23,2024-05-28 06:40:18.275196,08b900/b9b511,08b900,kill_app
24,2024-05-28 06:40:28.715680,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
25,2024-05-28 06:40:42.580202,08b900/66c66d,08b900/888a22,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
26,2024-05-28 06:41:02.015318,08b900/888a22,08b900/ca0c79,"touch <button bound_box=75,1131,1005,1275>TELEMETRY SETTINGS</button>"
27,2024-05-28 06:41:21.691735,08b900/ca0c79,08b900/ca0c79,"touch <p bound_box=147,700,933,773>Make Mapbox Maps Better</p>"
28,2024-05-28 06:41:33.306511,08b900/ca0c79,08b900/66c66d,"touch <button bound_box=495,1045,770,1189>DISAGREE</button>"
29,2024-05-28 06:41:45.104824,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
30,2024-05-28 06:41:57.107417,08b900/aa9f67,08b900/dc7e71,"scroll down <scrollbar bound_box=0,240,1080,384></scrollbar>"
31,2024-05-28 06:42:07.514568,08b900/dc7e71,08b900/dc7e71,"select <checkbox bound_box=42,240,642,384>Parks and open spaces</checkbox>"
32,2024-05-28 06:42:18.788372,08b900/dc7e71,08b900/2479ee,"touch <button bound_box=648,1628,864,1756>Route</button>"
33,2024-05-28 06:42:29.973871,08b900/2479ee,08b900/6f3178,"touch <button bound_box=460,940,969,1084>BUY THIS ITEM FOR </button>"
34,2024-05-28 06:42:41.811426,08b900/6f3178,08b900/888a22,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
35,2024-05-28 06:42:52.721194,08b900/888a22,08b900,kill_app
36,2024-05-28 06:43:15.189593,08b900,08b900/2f7de7,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
37,2024-05-28 06:43:26.758224,08b900/2f7de7,08b900/2f7de7,"touch <p bound_box=147,826,933,907>Do you like the app?</p>"
38,2024-05-28 06:43:38.283771,08b900/2f7de7,08b900/08b900,"touch <button bound_box=777,919,969,1063>YES</button>"
39,2024-05-28 06:43:48.725503,08b900/08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
40,2024-05-28 06:44:02.615412,08b900/66c66d,08b900/122e8f,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
41,2024-05-28 06:44:14.380698,08b900/122e8f,08b900/122e8f,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
42,2024-05-28 06:44:28.204933,08b900/122e8f,08b900/122e8f,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
43,2024-05-28 06:44:41.789163,08b900/122e8f,08b900/122e8f,"long_touch <button bound_box=48,1471,622,1528>Β© OpenStreetMap contributors</button>"
44,2024-05-28 06:44:53.584656,08b900/122e8f,08b900/66c66d,"touch <button bound_box=0,1278,540,1423>Save</button>"
45,2024-05-28 06:45:20.770697,08b900/66c66d,08b900/3abce7,"touch <button bound_box=432,1628,648,1756>Search</button>"
46,2024-05-28 06:45:32.349527,08b900/3abce7,08b900/ad051d,"touch <button bound_box=216,1357,1080,1414>Bookstores</button>"
47,2024-05-28 06:45:43.359829,08b900/ad051d,08b900,kill_app
48,2024-05-28 06:45:53.805195,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
49,2024-05-28 06:46:06.503090,08b900/66c66d,08b900/3abce7,"touch <button bound_box=432,1628,648,1756>Search</button>"
50,2024-05-28 06:46:18.185984,08b900/3abce7,08b900/3abce7,"touch <button bound_box=432,1628,648,1756>Search</button>"
51,2024-05-28 06:46:29.866824,08b900/ad051d,08b900/3abce7,"touch <button bound_box=432,1628,648,1756>Search</button>"
52,2024-05-28 06:46:41.952113,08b900/3abce7,08b900/3abce7,"touch <button bound_box=216,1051,1080,1108>Beaches</button>"
53,2024-05-28 06:46:55.783130,08b900/ad051d,08b900/f6e89f,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
54,2024-05-28 06:47:14.905606,08b900/f6e89f,08b900/f6e89f,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
55,2024-05-28 06:47:26.577204,08b900/f6e89f,08b900/9e4620,"touch <button bound_box=540,1278,1080,1423>Route</button>"
56,2024-05-28 06:47:38.277287,08b900/9e4620,08b900/9e4620,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
57,2024-05-28 06:47:50.074315,08b900/ad051d,08b900/ad051d,"touch <p bound_box=168,123,1080,188>Beaches</p>"
58,2024-05-28 06:48:01.910281,08b900/ad051d,08b900/f6e89f,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
59,2024-05-28 06:48:12.672323,08b900/f6e89f,08b900,kill_app
60,2024-05-28 06:48:22.777996,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
61,2024-05-28 06:48:35.186664,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
62,2024-05-28 06:48:47.115108,08b900/aa9f67,08b900/dc7e71,"select <checkbox bound_box=42,240,570,384>Parks and open spaces</checkbox>"
63,2024-05-28 06:49:00.996984,08b900/dc7e71,08b900/dc7e71,"touch <p bound_box=168,123,912,188>Tourist Attractions</p>"
64,2024-05-28 06:49:22.937334,08b900/dc7e71,08b900/aa9f67,"scroll up <scrollbar bound_box=0,240,1080,384></scrollbar>"
65,2024-05-28 06:49:34.477521,08b900/aa9f67,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
66,2024-05-28 06:49:46.887862,08b900/aa9f67,08b900/62fddf,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
67,2024-05-28 06:49:58.803951,08b900/62fddf,08b900/62fddf,"select <checkbox bound_box=969,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
68,2024-05-28 06:50:09.148960,08b900/62fddf,08b900/62fddf,"unselect <checkbox bound_box=594,240,945,384>Sports venues</checkbox>"
69,2024-05-28 06:50:21.367179,08b900/62fddf,08b900/503264,"touch <p bound_box=168,123,912,188>Tourist Attractions</p>"
70,2024-05-28 06:50:31.869772,08b900/503264,08b900/503264,"unselect <checkbox bound_box=42,240,570,384>Parks and open spaces</checkbox>"
71,2024-05-28 06:50:42.889725,08b900/503264,08b900,kill_app
72,2024-05-28 06:50:53.559393,08b900,08b900/2f7de7,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
73,2024-05-28 06:51:04.940042,08b900/2f7de7,08b900/66c66d,"touch <button bound_box=585,919,777,1063>NO</button>"
74,2024-05-28 06:51:24.312230,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
75,2024-05-28 06:51:36.027292,08b900/aa9f67,08b900/503264,"select <checkbox bound_box=1041,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
76,2024-05-28 06:51:47.950795,08b900/503264,08b900/66c66d,"touch <button bound_box=0,1628,216,1756>Map</button>"
77,2024-05-28 06:51:59.774048,08b900/66c66d,08b900/3abce7,"touch <button bound_box=432,1628,648,1756>Search</button>"
78,2024-05-28 06:52:14.013304,08b900/3abce7,08b900/15a5cb,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
79,2024-05-28 06:52:28.553671,08b900/15a5cb,08b900/888a22,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
80,2024-05-28 06:52:40.249971,08b900/888a22,08b900/888a22,"touch <p bound_box=147,602,933,675>Mapbox Maps SDK for Android</p>"
81,2024-05-28 06:52:51.816127,08b900/888a22,08b900/15a5cb,"touch <button bound_box=75,699,1005,843>Β© MAPBOX</button>"
82,2024-05-28 06:53:04.043763,08b900/15a5cb,08b900/503264,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
83,2024-05-28 06:53:18.569653,08b900/503264,08b900,kill_app
84,2024-05-28 06:53:29.013111,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
85,2024-05-28 06:53:42.230754,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
86,2024-05-28 06:53:54.161342,08b900/aa9f67,08b900/3abce7,"touch <button bound_box=432,1628,648,1756>Search</button>"
87,2024-05-28 06:54:06.855083,08b900/3abce7,08b900/3abce7,"scroll down <scrollbar bound_box=0,240,1080,1776></scrollbar>"
88,2024-05-28 06:54:18.726027,08b900/ad051d,08b900/888a22,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
89,2024-05-28 06:54:31.481396,08b900/888a22,08b900/888a22,"touch <button bound_box=75,843,1005,987>Β© OPENSTREETMAP</button>"
90,2024-05-28 06:54:43.472071,08b900/ad051d,08b900/66c66d,"touch <button bound_box=0,1628,216,1756>Map</button>"
91,2024-05-28 06:54:55.993687,08b900/66c66d,08b900/3abce7,"touch <button bound_box=432,1628,648,1756>Search</button>"
92,2024-05-28 06:55:11.795117,08b900/3abce7,08b900/15a5cb,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
93,2024-05-28 06:55:25.327839,08b900/15a5cb,08b900/7e6517,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
94,2024-05-28 06:55:37.059721,08b900/7e6517,08b900/7e6517,"touch <button bound_box=648,1628,864,1756>Route</button>"
95,2024-05-28 06:55:47.901541,08b900/7e6517,08b900,kill_app
96,2024-05-28 06:55:58.334459,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
97,2024-05-28 06:56:11.799041,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
98,2024-05-28 06:56:22.621597,08b900/aa9f67,08b900/aa9f67,"unselect <checkbox bound_box=969,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
99,2024-05-28 06:56:34.876761,08b900/aa9f67,08b900/9ea42d,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
100,2024-05-28 06:56:47.317229,08b900/9ea42d,08b900/9ea42d,"touch <input bound_box=312,100,1056,208>Name</input>"
101,2024-05-28 06:56:59.287085,08b900/9ea42d,08b900/aa9f67,"touch <button bound_box=449,727,631,800>Sigiriya</button>"
102,2024-05-28 06:57:14.165078,08b900/aa9f67,08b900/80bbe1,"select <checkbox bound_box=594,240,945,384>Sports venues</checkbox>"
103,2024-05-28 06:57:29.285436,08b900/80bbe1,08b900/5d6613,"touch <button bound_box=0,1485,1080,1605>List</button>"
104,2024-05-28 06:57:40.218988,08b900/5d6613,08b900/5d6613,"select <checkbox bound_box=594,240,1017,384>Sports venues</checkbox>"
105,2024-05-28 06:57:54.360179,08b900/5d6613,08b900/80bbe1,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
106,2024-05-28 06:58:04.959705,08b900/80bbe1,08b900/80bbe1,"unselect <checkbox bound_box=1041,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
107,2024-05-28 06:58:16.585447,08b900/80bbe1,08b900,kill_app
108,2024-05-28 06:58:26.994506,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
109,2024-05-28 06:58:42.042847,08b900/66c66d,08b900/122e8f,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
110,2024-05-28 06:58:53.931907,08b900/122e8f,08b900/122e8f,"touch <button bound_box=0,1628,216,1756>Map</button>"
111,2024-05-28 06:59:05.987053,08b900/122e8f,08b900/122e8f,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
112,2024-05-28 06:59:19.913373,08b900/122e8f,08b900/122e8f,"touch <button bound_box=648,1628,864,1756>Route</button>"
113,2024-05-28 06:59:32.175409,08b900/122e8f,08b900/122e8f,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
114,2024-05-28 06:59:44.069615,08b900/122e8f,08b900/122e8f,"touch <button bound_box=432,1628,648,1756>Search</button>"
115,2024-05-28 06:59:56.013436,08b900/122e8f,08b900/122e8f,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
116,2024-05-28 07:00:09.916002,08b900/122e8f,08b900/122e8f,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
117,2024-05-28 07:00:21.675294,08b900/122e8f,08b900/9e4620,"touch <button bound_box=540,1278,1080,1423>Route</button>"
118,2024-05-28 07:00:34.042806,08b900/9e4620,08b900/66c66d,"touch <button bound_box=265,924,460,1068>CLOSE</button>"
119,2024-05-28 07:00:45.173283,08b900/66c66d,08b900,kill_app
120,2024-05-28 07:00:55.569835,08b900,08b900/2f7de7,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
121,2024-05-28 07:01:08.099935,08b900/2f7de7,08b900/66c66d,"touch <button bound_box=585,919,777,1063>NO</button>"
122,2024-05-28 07:01:22.684300,08b900/66c66d,08b900/2479ee,"touch <button bound_box=648,1628,864,1756>Route</button>"
123,2024-05-28 07:01:34.406059,08b900/2479ee,08b900/2479ee,"touch <p bound_box=75,822,1005,887>PRO version required</p>"
124,2024-05-28 07:01:46.890246,08b900/2479ee,08b900/f1a4a2,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
125,2024-05-28 07:01:58.604276,08b900/f1a4a2,08b900/9e4620,"touch <p bound_box=168,123,1080,188>Bus stations</p>"
126,2024-05-28 07:02:11.631708,08b900/9e4620,08b900/f1a4a2,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
127,2024-05-28 07:02:23.326666,08b900/f1a4a2,08b900/2479ee,"touch <button bound_box=648,1628,864,1756>Route</button>"
128,2024-05-28 07:02:37.005106,08b900/2479ee,08b900/f1a4a2,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
129,2024-05-28 07:02:48.934385,08b900/f1a4a2,08b900/2479ee,"touch <button bound_box=648,1628,864,1756>Route</button>"
130,2024-05-28 07:03:01.765886,08b900/2479ee,08b900/f1a4a2,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
131,2024-05-28 07:03:13.436532,08b900/f1a4a2,08b900/9e4620,"touch <p bound_box=168,123,1080,188>Bus stations</p>"
132,2024-05-28 07:03:25.198435,08b900/9e4620,08b900,kill_app
133,2024-05-28 07:03:35.623010,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
134,2024-05-28 07:03:48.840648,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
135,2024-05-28 07:04:02.750266,08b900/aa9f67,08b900/9ea42d,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
136,2024-05-28 07:04:15.309964,08b900/9ea42d,08b900/aa9f67,"scroll up <scrollbar bound_box=0,240,1080,1776></scrollbar>"
137,2024-05-28 07:04:25.660234,08b900/aa9f67,08b900/aa9f67,"unselect <checkbox bound_box=594,240,945,384>Sports venues</checkbox>"
138,2024-05-28 07:04:38.772088,08b900/aa9f67,08b900/503264,"select <checkbox bound_box=969,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
139,2024-05-28 07:04:52.731349,08b900/503264,08b900/da96ee,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
140,2024-05-28 07:05:04.761780,08b900/da96ee,08b900/da96ee,"touch <button bound_box=0,1485,1080,1605>List</button>"
141,2024-05-28 07:05:17.444852,08b900/da96ee,08b900/da96ee,"scroll up <scrollbar bound_box=0,240,1080,384></scrollbar>"
142,2024-05-28 07:05:30.656353,08b900/da96ee,08b900/da96ee,"unselect <checkbox bound_box=42,240,642,384>Parks and open spaces</checkbox>"
143,2024-05-28 07:05:44.808278,08b900/da96ee,08b900/da96ee,"long_touch <button bound_box=48,1471,622,1528>Β© OpenStreetMap contributors</button>"
144,2024-05-28 07:05:55.904986,08b900/da96ee,08b900,kill_app
145,2024-05-28 07:06:06.304846,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
146,2024-05-28 07:06:19.034451,08b900/66c66d,08b900/7e6517,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
147,2024-05-28 07:06:31.471497,08b900/7e6517,08b900/08b900,"touch <button bound_box=216,592,482,649>Privacy Policy</button>"
148,2024-05-28 07:06:42.078047,08b900/08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
149,2024-05-28 07:06:56.843249,08b900/66c66d,08b900/3abce7,"touch <button bound_box=432,1628,648,1756>Search</button>"
150,2024-05-28 07:07:12.090287,08b900/3abce7,08b900/e91690,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
151,2024-05-28 07:07:23.654213,08b900/e91690,08b900/e91690,"touch <p bound_box=168,123,1080,188>Banks</p>"
152,2024-05-28 07:07:35.553110,08b900/e91690,08b900/2479ee,"touch <button bound_box=648,1628,864,1756>Route</button>"
153,2024-05-28 07:07:48.602389,08b900/2479ee,08b900/21009d,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
154,2024-05-28 07:08:01.441109,08b900/21009d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
155,2024-05-28 07:08:13.900369,08b900/aa9f67,08b900/7e6517,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
156,2024-05-28 07:08:25.034717,08b900/7e6517,08b900,kill_app
157,2024-05-28 07:08:35.343544,08b900,08b900/2f7de7,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
158,2024-05-28 07:08:48.346324,08b900/2f7de7,08b900/66c66d,"touch <button bound_box=585,919,777,1063>NO</button>"
159,2024-05-28 07:09:00.735006,08b900/66c66d,08b900/7e6517,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
160,2024-05-28 07:09:27.871230,08b900/7e6517,08b900/7e6517,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
161,2024-05-28 07:09:39.835287,08b900/7e6517,08b900/7e6517,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
162,2024-05-28 07:09:51.913688,08b900/7e6517,08b900/7e6517,"touch <button bound_box=216,286,368,343>Support</button>"
163,2024-05-28 07:10:04.202263,08b900/7e6517,08b900/66c66d,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
164,2024-05-28 07:10:17.258024,08b900/66c66d,08b900/2479ee,"touch <button bound_box=648,1628,864,1756>Route</button>"
165,2024-05-28 07:10:29.223919,08b900/2479ee,08b900/f1a4a2,"touch <button bound_box=777,940,969,1084>YES</button>"
166,2024-05-28 07:10:41.341686,08b900/f1a4a2,08b900/dff98f,"touch <button bound_box=207,468,912,612>GET DIRECTIONS</button>"
167,2024-05-28 07:10:53.294579,08b900/dff98f,08b900/dff98f,"touch <p bound_box=147,826,933,907>From can't be empty</p>"
168,2024-05-28 07:11:04.036947,08b900/dff98f,08b900,kill_app
169,2024-05-28 07:11:14.438876,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
170,2024-05-28 07:11:31.480687,08b900/66c66d,08b900/7e6517,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
171,2024-05-28 07:11:43.129623,08b900/7e6517,08b900/7e6517,"touch <p bound_box=168,119,304,192>Menu</p>"
172,2024-05-28 07:11:55.258289,08b900/7e6517,08b900/3703d9,"touch <button bound_box=216,439,477,496>Used libraries</button>"
173,2024-05-28 07:12:06.833947,08b900/3703d9,08b900/3703d9,"touch <button bound_box=432,1628,648,1756>Search</button>"
174,2024-05-28 07:12:22.051670,08b900/3703d9,08b900/3703d9,"touch <button bound_box=48,288,1032,345>Graphhopper</button>"
175,2024-05-28 07:12:37.376364,08b900/3703d9,08b900/3703d9,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
176,2024-05-28 07:12:50.920387,08b900/3703d9,08b900/3703d9,"touch <button bound_box=48,393,1032,499>graphhopper/graphhopper is licensed under the Apac</button>"
177,2024-05-28 07:13:04.070559,08b900/3703d9,08b900/3703d9,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
178,2024-05-28 07:13:16.931926,08b900/3703d9,08b900/3703d9,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
179,2024-05-28 07:13:29.206481,08b900/3703d9,08b900/3703d9,"touch <p bound_box=168,119,501,192>Used libraries</p>"
180,2024-05-28 07:13:40.148661,08b900/3703d9,08b900,kill_app
181,2024-05-28 07:13:50.570000,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
182,2024-05-28 07:14:04.027502,08b900/66c66d,08b900/3abce7,"touch <button bound_box=432,1628,648,1756>Search</button>"
183,2024-05-28 07:14:16.405921,08b900/3abce7,08b900/c42b7f,"touch <button bound_box=216,1204,1080,1261>Beauty Salons</button>"
184,2024-05-28 07:14:28.542857,08b900/c42b7f,08b900/c42b7f,"touch <p bound_box=168,123,1080,188>Beauty Salons</p>"
185,2024-05-28 07:14:42.806038,08b900/c42b7f,08b900/3abce7,"touch <button bound_box=432,1628,648,1756>Search</button>"
186,2024-05-28 07:14:56.370782,08b900/3abce7,08b900/3abce7,"touch <button bound_box=648,1628,864,1756>Route</button>"
187,2024-05-28 07:15:08.267878,08b900/ad051d,08b900/ad051d,"touch <p bound_box=168,123,1080,188>Cafes</p>"
188,2024-05-28 07:15:21.809392,08b900/ad051d,08b900/3abce7,"touch <button bound_box=432,1628,648,1756>Search</button>"
189,2024-05-28 07:15:35.683020,08b900/3abce7,08b900/e91690,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
190,2024-05-28 07:15:49.022049,08b900/e91690,08b900/3abce7,"touch <button bound_box=432,1628,648,1756>Search</button>"
191,2024-05-28 07:16:00.954328,08b900/3abce7,08b900/3abce7,"touch <input bound_box=312,100,1056,208>Address, hotel, name</input>"
192,2024-05-28 07:16:12.819679,08b900/3abce7,08b900,kill_app
193,2024-05-28 07:16:23.220609,08b900,08b900/2f7de7,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
194,2024-05-28 07:16:36.227925,08b900/2f7de7,08b900/66c66d,"touch <button bound_box=585,919,777,1063>NO</button>"
195,2024-05-28 07:16:50.056804,08b900/66c66d,08b900/122e8f,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
196,2024-05-28 07:17:01.795049,08b900/122e8f,08b900/122e8f,"touch <button bound_box=48,1471,622,1528>Β© OpenStreetMap contributors</button>"
197,2024-05-28 07:17:19.566832,08b900/122e8f,08b900/122e8f,"touch <p bound_box=48,1074,447,1147>7.8773, 80.7004</p>"
198,2024-05-28 07:17:35.599363,08b900/122e8f,08b900/66c66d,"touch <button bound_box=0,1278,540,1423>Save</button>"
199,2024-05-28 07:17:47.415582,08b900/66c66d,08b900/3abce7,"touch <button bound_box=432,1628,648,1756>Search</button>"
200,2024-05-28 07:17:59.643750,08b900/3abce7,08b900/a30cbd,"touch <button bound_box=216,592,1080,649>Attractions</button>"
201,2024-05-28 07:18:11.901143,08b900/a30cbd,08b900/a30cbd,"touch <p bound_box=168,123,1080,188>Attractions</p>"
202,2024-05-28 07:18:26.867595,08b900/a30cbd,08b900/752a80,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
203,2024-05-28 07:18:38.906299,08b900/752a80,08b900/752a80,"touch <button bound_box=432,1628,648,1756>Search</button>"
204,2024-05-28 07:18:49.814609,08b900/752a80,08b900,kill_app
205,2024-05-28 07:19:00.418640,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
206,2024-05-28 07:19:13.950042,08b900/66c66d,08b900/3abce7,"touch <button bound_box=432,1628,648,1756>Search</button>"
207,2024-05-28 07:19:31.749364,08b900/3abce7,08b900/3abce7,"long_touch <input bound_box=312,100,1056,208>Address, hotel, name</input>"
208,2024-05-28 07:19:43.683542,08b900/3abce7,08b900/3abce7,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
209,2024-05-28 07:19:58.644798,08b900/ad051d,08b900/e07759,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
210,2024-05-28 07:20:12.605503,08b900/e07759,08b900/e07759,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
211,2024-05-28 07:20:24.692999,08b900/e07759,08b900/e07759,"touch <button bound_box=648,1628,864,1756>Route</button>"
212,2024-05-28 07:20:36.645522,08b900/e07759,08b900/e07759,"touch <button bound_box=0,1628,216,1756>Map</button>"
213,2024-05-28 07:20:48.629690,08b900/e07759,08b900/e07759,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
214,2024-05-28 07:21:00.675811,08b900/e07759,08b900/e07759,"touch <p bound_box=168,123,1080,188>Cafes</p>"
215,2024-05-28 07:21:21.593532,08b900/ad051d,08b900/e07759,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
216,2024-05-28 07:21:35.911840,08b900/e07759,08b900/e07759,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
217,2024-05-28 07:21:46.615601,08b900/e07759,08b900,kill_app
218,2024-05-28 07:21:56.939596,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
219,2024-05-28 07:22:10.318128,08b900/66c66d,08b900/7e6517,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
220,2024-05-28 07:22:23.436958,08b900/7e6517,08b900/132cb7,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
221,2024-05-28 07:22:34.984841,08b900/132cb7,08b900/66c66d,"touch <button bound_box=0,1628,216,1756>Map</button>"
222,2024-05-28 07:22:48.524830,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
223,2024-05-28 07:22:58.948394,08b900/aa9f67,08b900/aa9f67,"unselect <checkbox bound_box=666,240,1017,384>Sports venues</checkbox>"
224,2024-05-28 07:23:14.613210,08b900/aa9f67,08b900/9ea42d,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
225,2024-05-28 07:23:26.912907,08b900/9ea42d,08b900/aa9f67,"touch <button bound_box=0,1628,216,1756>Map</button>"
226,2024-05-28 07:23:44.178716,08b900/aa9f67,08b900/9ea42d,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
227,2024-05-28 07:23:56.400718,08b900/9ea42d,08b900/aa9f67,"select <checkbox bound_box=594,240,945,384>Sports venues</checkbox>"
228,2024-05-28 07:24:09.815063,08b900/aa9f67,08b900/9ea42d,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
229,2024-05-28 07:24:20.107388,08b900/9ea42d,08b900/9ea42d,"unselect <checkbox bound_box=969,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
230,2024-05-28 07:24:30.747787,08b900/9ea42d,08b900,kill_app
231,2024-05-28 07:24:42.143508,08b900,08b900/2f7de7,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
232,2024-05-28 07:24:54.859964,08b900/2f7de7,08b900/66c66d,"touch <button bound_box=585,919,777,1063>NO</button>"
233,2024-05-28 07:25:06.954200,08b900/66c66d,08b900/3abce7,"touch <button bound_box=432,1628,648,1756>Search</button>"
234,2024-05-28 07:25:18.618347,08b900/3abce7,08b900/3abce7,"touch <button bound_box=216,286,1080,343>ATMs</button>"
235,2024-05-28 07:25:33.557160,08b900/132cb7,08b900/8cd72e,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
236,2024-05-28 07:25:45.395500,08b900/8cd72e,08b900/8cd72e,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
237,2024-05-28 07:25:57.328611,08b900/8cd72e,08b900/8cd72e,"touch <button bound_box=48,1471,622,1528>Β© OpenStreetMap contributors</button>"
238,2024-05-28 07:26:10.898941,08b900/8cd72e,08b900/8cd72e,"long_touch <button bound_box=48,1471,622,1528>Β© OpenStreetMap contributors</button>"
239,2024-05-28 07:26:22.874611,08b900/8cd72e,08b900/8cd72e,"touch <p bound_box=168,123,1080,188>ATMs</p>"
240,2024-05-28 07:26:37.939643,08b900/132cb7,08b900/8cd72e,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
241,2024-05-28 07:26:49.585699,08b900/8cd72e,08b900/8cd72e,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
242,2024-05-28 07:27:00.374078,08b900/8cd72e,08b900,kill_app
243,2024-05-28 07:27:11.223517,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
244,2024-05-28 07:27:29.501576,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
245,2024-05-28 07:27:41.704007,08b900/aa9f67,08b900/80bbe1,"select <checkbox bound_box=666,240,1017,384>Sports venues</checkbox>"
246,2024-05-28 07:27:53.754958,08b900/80bbe1,08b900/aa9f67,"unselect <checkbox bound_box=594,240,1017,384>Sports venues</checkbox>"
247,2024-05-28 07:28:07.026303,08b900/aa9f67,08b900/9ea42d,"touch <button bound_box=0,1485,1080,1605>List</button>"
248,2024-05-28 07:28:18.883738,08b900/9ea42d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
249,2024-05-28 07:28:32.502399,08b900/aa9f67,08b900/9ea42d,"touch <button bound_box=0,1485,1080,1605>List</button>"
250,2024-05-28 07:28:44.143446,08b900/9ea42d,08b900/aa9f67,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
251,2024-05-28 07:28:58.727914,08b900/aa9f67,08b900/a02611,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
252,2024-05-28 07:29:12.409379,08b900/a02611,08b900/a02611,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
253,2024-05-28 07:29:30.781782,08b900/a02611,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
254,2024-05-28 07:29:41.430492,08b900/aa9f67,08b900,kill_app
255,2024-05-28 07:29:52.021286,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
256,2024-05-28 07:30:04.743933,08b900/66c66d,08b900/3abce7,"touch <button bound_box=432,1628,648,1756>Search</button>"
257,2024-05-28 07:30:16.629928,08b900/3abce7,08b900/3abce7,"touch <button bound_box=0,1628,216,1756>Map</button>"
258,2024-05-28 07:30:31.645276,08b900/ad051d,08b900/e07759,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
259,2024-05-28 07:30:44.983262,08b900/e07759,08b900/e07759,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
260,2024-05-28 07:30:56.850378,08b900/e07759,08b900/e07759,"touch <p bound_box=48,1074,447,1147>7.8773, 80.7004</p>"
261,2024-05-28 07:31:08.630342,08b900/e07759,08b900/e07759,"touch <button bound_box=432,1628,648,1756>Search</button>"
262,2024-05-28 07:31:20.024352,08b900/e07759,08b900/e07759,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
263,2024-05-28 07:31:48.327042,08b900/e07759,08b900/e07759,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
264,2024-05-28 07:31:59.837076,08b900/e07759,08b900/e07759,"touch <button bound_box=0,1278,540,1423>Save</button>"
265,2024-05-28 07:32:14.415110,08b900/ad051d,08b900/63b99a,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
266,2024-05-28 07:32:25.819331,08b900/63b99a,08b900/63b99a,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
267,2024-05-28 07:32:37.319998,08b900/63b99a,08b900,kill_app
268,2024-05-28 07:32:47.465805,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
269,2024-05-28 07:33:00.450646,08b900/66c66d,08b900/3abce7,"touch <button bound_box=432,1628,648,1756>Search</button>"
270,2024-05-28 07:33:13.895263,08b900/3abce7,08b900/3abce7,"scroll up <scrollbar bound_box=0,240,1080,1776></scrollbar>"
271,2024-05-28 07:33:34.394943,08b900/ad051d,08b900/f6e89f,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
272,2024-05-28 07:33:45.956817,08b900/f6e89f,08b900/f6e89f,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
273,2024-05-28 07:33:57.712948,08b900/f6e89f,08b900/f6e89f,"touch <p bound_box=168,123,1080,188>Beaches</p>"
274,2024-05-28 07:34:12.271787,08b900/ad051d,08b900/f6e89f,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
275,2024-05-28 07:34:25.506313,08b900/f6e89f,08b900/f6e89f,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
276,2024-05-28 07:34:38.566652,08b900/f6e89f,08b900/f6e89f,"touch <p bound_box=168,123,1080,188>Beaches</p>"
277,2024-05-28 07:34:50.109061,08b900/ad051d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
278,2024-05-28 07:35:00.438313,08b900/aa9f67,08b900/aa9f67,"select <checkbox bound_box=594,240,1017,384>Sports venues</checkbox>"
279,2024-05-28 07:35:11.624997,08b900/aa9f67,08b900,kill_app
280,2024-05-28 07:35:21.736326,08b900,08b900/2f7de7,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
281,2024-05-28 07:35:39.131949,08b900/2f7de7,08b900/66c66d,"touch <button bound_box=585,919,777,1063>NO</button>"
282,2024-05-28 07:35:51.100801,08b900/66c66d,08b900/7e6517,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
283,2024-05-28 07:36:04.459922,08b900/7e6517,08b900/7e6517,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
284,2024-05-28 07:36:17.317361,08b900/7e6517,08b900/3703d9,"touch <button bound_box=216,439,477,496>Used libraries</button>"
285,2024-05-28 07:36:29.118700,08b900/3703d9,08b900/3703d9,"touch <button bound_box=648,1628,864,1756>Route</button>"
286,2024-05-28 07:36:40.719660,08b900/3703d9,08b900/3703d9,"touch <button bound_box=48,1013,1032,1168>Copyright 2015 The RxAndroid authors. Licensed und</button>"
287,2024-05-28 07:36:52.562496,08b900/3703d9,08b900/3703d9,"touch <button bound_box=0,1628,216,1756>Map</button>"
288,2024-05-28 07:37:06.220827,08b900/3703d9,08b900/3703d9,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
289,2024-05-28 07:37:18.960177,08b900/3703d9,08b900/3703d9,"touch <button bound_box=48,1267,1032,1324>OkHttp</button>"
290,2024-05-28 07:37:35.575011,08b900/3703d9,08b900/3703d9,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
291,2024-05-28 07:37:46.126101,08b900/3703d9,08b900,kill_app
292,2024-05-28 07:37:56.599440,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
293,2024-05-28 07:38:09.634441,08b900/66c66d,08b900/3abce7,"touch <button bound_box=432,1628,648,1756>Search</button>"
294,2024-05-28 07:38:21.681893,08b900/3abce7,08b900/73fd98,"set_text <input bound_box=312,100,1056,208>Address, hotel, name</input> dummy_user_input"
295,2024-05-28 07:38:35.357176,08b900/73fd98,08b900/73fd98,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
296,2024-05-28 07:38:47.017298,08b900/73fd98,08b900/73fd98,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
297,2024-05-28 07:38:59.292766,08b900/73fd98,08b900/73fd98,"touch <button bound_box=432,1628,648,1756>Search</button>"
298,2024-05-28 07:39:11.105704,08b900/73fd98,08b900/73fd98,"set_text <input bound_box=312,100,936,208>dummy_user_input</input> dummy_user_input"
299,2024-05-28 07:39:27.433120,08b900/73fd98,08b900/73fd98,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
300,2024-05-28 07:39:44.930649,08b900/73fd98,08b900/73fd98,"long_touch <input bound_box=312,100,936,208>dummy_user_input</input>"
301,2024-05-28 07:39:56.668326,08b900/73fd98,08b900/3abce7,"touch <button alt='ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββClear queryββββββ' bound_box=936,72,1056,237></button>"
302,2024-05-28 07:40:10.141686,08b900/3abce7,08b900/3abce7,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
303,2024-05-28 07:40:20.899008,08b900/ad051d,08b900,kill_app
304,2024-05-28 07:40:31.313480,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
305,2024-05-28 07:40:44.384063,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
306,2024-05-28 07:40:56.682696,08b900/aa9f67,08b900/dc7e71,"unselect <checkbox bound_box=42,240,642,384>Parks and open spaces</checkbox>"
307,2024-05-28 07:41:10.002459,08b900/dc7e71,08b900/dd3aa6,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
308,2024-05-28 07:41:22.231888,08b900/dd3aa6,08b900/dd3aa6,"touch <button bound_box=648,1628,864,1756>Route</button>"
309,2024-05-28 07:41:43.627181,08b900/dd3aa6,08b900/62fddf,"scroll down <scrollbar bound_box=0,240,1080,384></scrollbar>"
310,2024-05-28 07:41:55.258007,08b900/62fddf,08b900/62fddf,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
311,2024-05-28 07:42:06.798464,08b900/62fddf,08b900/9e4620,"touch <button bound_box=540,1278,1080,1423>Route</button>"
312,2024-05-28 07:42:19.642929,08b900/9e4620,08b900/aa9f67,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
313,2024-05-28 07:42:31.786874,08b900/aa9f67,08b900/9ea42d,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
314,2024-05-28 07:42:43.815862,08b900/9ea42d,08b900/9ea42d,"touch <p bound_box=168,123,912,188>Tourist Attractions</p>"
315,2024-05-28 07:42:54.596971,08b900/9ea42d,08b900,kill_app
316,2024-05-28 07:43:04.946444,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
317,2024-05-28 07:43:18.069561,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
318,2024-05-28 07:43:38.944813,08b900/aa9f67,08b900/62fddf,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
319,2024-05-28 07:43:50.596577,08b900/62fddf,08b900/62fddf,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
320,2024-05-28 07:44:00.946518,08b900/62fddf,08b900/62fddf,"unselect <checkbox bound_box=969,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
321,2024-05-28 07:44:12.832201,08b900/62fddf,08b900/62fddf,"touch <button bound_box=48,1471,622,1528>Β© OpenStreetMap contributors</button>"
322,2024-05-28 07:44:23.495191,08b900/62fddf,08b900/62fddf,"unselect <checkbox bound_box=42,240,570,384>Parks and open spaces</checkbox>"
323,2024-05-28 07:44:35.555751,08b900/62fddf,08b900/62fddf,"touch <button bound_box=0,1628,216,1756>Map</button>"
324,2024-05-28 07:44:47.590446,08b900/62fddf,08b900/62fddf,"touch <p bound_box=48,1074,447,1147>7.8773, 80.7004</p>"
325,2024-05-28 07:44:59.485553,08b900/62fddf,08b900/dd3aa6,"select <checkbox bound_box=42,240,570,384>Parks and open spaces</checkbox>"
326,2024-05-28 07:45:11.791522,08b900/dd3aa6,08b900/dd3aa6,"select <checkbox bound_box=1041,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
327,2024-05-28 07:45:22.831326,08b900/dd3aa6,08b900,kill_app
328,2024-05-28 07:45:39.189392,08b900,08b900/2f7de7,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
329,2024-05-28 07:45:51.931762,08b900/2f7de7,08b900/66c66d,"touch <button bound_box=585,919,777,1063>NO</button>"
330,2024-05-28 07:46:03.904721,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
331,2024-05-28 07:46:17.732309,08b900/aa9f67,08b900/62fddf,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
332,2024-05-28 07:46:29.369523,08b900/62fddf,08b900/62fddf,"touch <button bound_box=432,1628,648,1756>Search</button>"
333,2024-05-28 07:46:41.499805,08b900/62fddf,08b900/62fddf,"select <checkbox bound_box=594,240,945,384>Sports venues</checkbox>"
334,2024-05-28 07:46:53.478017,08b900/dd3aa6,08b900/80bbe1,"touch <button bound_box=0,1278,540,1423>Save</button>"
335,2024-05-28 07:47:06.326138,08b900/80bbe1,08b900/80bbe1,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
336,2024-05-28 07:47:18.260714,08b900/dd3aa6,08b900/dd3aa6,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
337,2024-05-28 07:47:30.307159,08b900/dd3aa6,08b900/dd3aa6,"unselect <checkbox bound_box=594,240,1017,384>Sports venues</checkbox>"
338,2024-05-28 07:47:49.468244,08b900/dd3aa6,08b900/dd3aa6,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
339,2024-05-28 07:48:00.375462,08b900/dd3aa6,08b900,kill_app
340,2024-05-28 07:48:10.877746,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
341,2024-05-28 07:48:23.751019,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
342,2024-05-28 07:48:35.751638,08b900/aa9f67,08b900/62fddf,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
343,2024-05-28 07:48:47.571116,08b900/62fddf,08b900/9e4620,"touch <button bound_box=720,1278,1080,1423>Edit</button>"
344,2024-05-28 07:49:00.770878,08b900/9e4620,08b900/aa9f67,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
345,2024-05-28 07:49:12.802510,08b900/aa9f67,08b900/aa9f67,"touch <p bound_box=168,123,1080,188>Banks</p>"
346,2024-05-28 07:49:26.020570,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
347,2024-05-28 07:49:44.923615,08b900/dd3aa6,08b900/dd3aa6,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
348,2024-05-28 07:49:55.337471,08b900/dd3aa6,08b900/dd3aa6,"unselect <checkbox bound_box=969,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
349,2024-05-28 07:50:07.394244,08b900/dd3aa6,08b900/dd3aa6,"select <checkbox bound_box=594,240,945,384>Sports venues</checkbox>"
350,2024-05-28 07:50:19.724267,08b900/dd3aa6,08b900/dd3aa6,"touch <button bound_box=432,1628,648,1756>Search</button>"
351,2024-05-28 07:50:30.703338,08b900/dd3aa6,08b900,kill_app
352,2024-05-28 07:50:40.913100,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
353,2024-05-28 07:50:54.620525,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
354,2024-05-28 07:51:06.855213,08b900/aa9f67,08b900/62fddf,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
355,2024-05-28 07:51:19.378162,08b900/62fddf,08b900/62fddf,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
356,2024-05-28 07:51:39.036676,08b900/62fddf,08b900/62fddf,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
357,2024-05-28 07:51:52.449898,08b900/62fddf,08b900/aa9f67,"touch <p bound_box=168,123,912,188>Tourist Attractions</p>"
358,2024-05-28 07:52:04.617833,08b900/aa9f67,08b900/9ea42d,"touch <button bound_box=0,1485,1080,1605>List</button>"
359,2024-05-28 07:52:17.082303,08b900/9ea42d,08b900/aa9f67,"touch <button bound_box=648,1628,864,1756>Route</button>"
360,2024-05-28 07:52:32.292227,08b900/aa9f67,08b900/9ea42d,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
361,2024-05-28 07:52:45.304648,08b900/9ea42d,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
362,2024-05-28 07:52:59.001063,08b900/aa9f67,08b900/370c46,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
363,2024-05-28 07:53:11.841138,08b900/370c46,08b900/370c46,"touch <button bound_box=48,1471,622,1528>Β© OpenStreetMap contributors</button>"
364,2024-05-28 07:53:23.025361,08b900/370c46,08b900,kill_app
365,2024-05-28 07:53:33.512114,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
366,2024-05-28 07:53:47.153322,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
367,2024-05-28 07:53:59.633708,08b900/aa9f67,08b900/62fddf,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
368,2024-05-28 07:54:10.670109,08b900/62fddf,08b900/62fddf,"unselect <checkbox bound_box=666,240,1017,384>Sports venues</checkbox>"
369,2024-05-28 07:54:25.123660,08b900/62fddf,08b900/aa9f67,"touch <p bound_box=168,123,912,188>Tourist Attractions</p>"
370,2024-05-28 07:54:37.545909,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
371,2024-05-28 07:54:50.137927,08b900/dd3aa6,08b900/dd3aa6,"touch <p bound_box=48,1639,1032,1753>Sigiriya or Sinhagiri (Lion Rock Sinhala: ΰ·ΰ·ΰΆΰ·ΰΆ»ΰ·ΰΆΊ</p>"
372,2024-05-28 07:55:03.319138,08b900/dd3aa6,08b900/fdaa62,"select <checkbox bound_box=969,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
373,2024-05-28 07:55:16.197191,08b900/fdaa62,08b900/fdaa62,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
374,2024-05-28 07:55:31.792316,08b900/fdaa62,08b900/fdaa62,"scroll up <scrollbar bound_box=0,240,1080,384></scrollbar>"
375,2024-05-28 07:55:47.093027,08b900/fdaa62,08b900/fdaa62,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
376,2024-05-28 07:55:58.249343,08b900/fdaa62,08b900,kill_app
377,2024-05-28 07:56:08.667818,08b900,08b900/2f7de7,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
378,2024-05-28 07:56:22.522571,08b900/2f7de7,08b900/66c66d,"touch <button bound_box=585,919,777,1063>NO</button>"
379,2024-05-28 07:56:34.931518,08b900/66c66d,08b900/3abce7,"touch <button bound_box=432,1628,648,1756>Search</button>"
380,2024-05-28 07:56:47.445896,08b900/3abce7,08b900/73fd98,"set_text <input bound_box=312,100,1056,208>Address, hotel, name</input> dummy_user_input"
381,2024-05-28 07:56:59.779224,08b900/73fd98,08b900/73fd98,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
382,2024-05-28 07:57:12.303169,08b900/73fd98,08b900/73fd98,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
383,2024-05-28 07:57:24.500208,08b900/73fd98,08b900/73fd98,"touch <button bound_box=648,1628,864,1756>Route</button>"
384,2024-05-28 07:57:45.717947,08b900/73fd98,08b900/73fd98,"touch <input bound_box=312,100,936,208>dummy_user_input</input>"
385,2024-05-28 07:57:59.551780,08b900/73fd98,08b900/73fd98,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
386,2024-05-28 07:58:11.701489,08b900/73fd98,08b900/73fd98,"touch <button bound_box=0,1628,216,1756>Map</button>"
387,2024-05-28 07:58:25.218756,08b900/73fd98,08b900,kill_app
388,2024-05-28 07:58:35.942849,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
389,2024-05-28 07:58:48.058871,08b900/66c66d,08b900/66c66d,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
390,2024-05-28 07:59:01.492626,08b900/66c66d,08b900/888a22,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
391,2024-05-28 07:59:15.507322,08b900/888a22,08b900/ca0c79,"touch <button bound_box=75,1131,1005,1275>TELEMETRY SETTINGS</button>"
392,2024-05-28 07:59:28.380457,08b900/ca0c79,08b900/66c66d,"touch <button bound_box=770,1045,969,1189>AGREE</button>"
393,2024-05-28 07:59:47.896337,08b900/66c66d,08b900/888a22,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
394,2024-05-28 08:00:00.263894,08b900/888a22,08b900/ca0c79,"touch <button bound_box=75,1131,1005,1275>TELEMETRY SETTINGS</button>"
395,2024-05-28 08:00:12.933004,08b900/ca0c79,08b900/ca0c79,"touch <p bound_box=75,797,1005,1033>You are helping to make OpenStreetMap and Mapbox m</p>"
396,2024-05-28 08:00:25.871810,08b900/ca0c79,08b900/66c66d,"touch <button bound_box=111,1045,415,1189>MORE INFO</button>"
397,2024-05-28 08:00:40.101908,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
398,2024-05-28 08:00:54.105252,08b900/aa9f67,08b900/62fddf,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
399,2024-05-28 08:01:04.973821,08b900/62fddf,08b900/62fddf,"select <checkbox bound_box=42,240,642,384>Parks and open spaces</checkbox>"
400,2024-05-28 08:01:16.068978,08b900/62fddf,08b900,kill_app
401,2024-05-28 08:01:27.127571,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
402,2024-05-28 08:01:45.718822,08b900/66c66d,08b900/2479ee,"touch <button bound_box=648,1628,864,1756>Route</button>"
403,2024-05-28 08:01:57.564271,08b900/2479ee,08b900/f1a4a2,"touch <button bound_box=460,940,969,1084>BUY THIS ITEM FOR </button>"
404,2024-05-28 08:02:09.739356,08b900/f1a4a2,08b900/e11d11,"touch <button bound_box=207,264,912,354>FROM</button>"
405,2024-05-28 08:02:23.927962,08b900/e11d11,08b900/7471e1,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
406,2024-05-28 08:02:36.308465,08b900/7471e1,08b900/5af840,"touch <button bound_box=207,264,912,354>7.8773, 80.7004</button>"
407,2024-05-28 08:02:49.096148,08b900/5af840,08b900/7471e1,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
408,2024-05-28 08:03:01.738255,08b900/7471e1,08b900/66c66d,"touch <button bound_box=0,1628,216,1756>Map</button>"
409,2024-05-28 08:03:16.561829,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
410,2024-05-28 08:03:29.140103,08b900/aa9f67,08b900/62fddf,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
411,2024-05-28 08:03:46.229904,08b900/62fddf,08b900/62fddf,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
412,2024-05-28 08:03:57.519142,08b900/62fddf,08b900,kill_app
413,2024-05-28 08:04:08.534251,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
414,2024-05-28 08:04:22.869247,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
415,2024-05-28 08:04:35.510847,08b900/aa9f67,08b900/62fddf,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
416,2024-05-28 08:04:48.226673,08b900/62fddf,08b900/62fddf,"select <checkbox bound_box=666,240,1017,384>Sports venues</checkbox>"
417,2024-05-28 08:04:59.311538,08b900/dd3aa6,08b900/dd3aa6,"select <checkbox bound_box=594,240,1017,384>Sports venues</checkbox>"
418,2024-05-28 08:05:12.072915,08b900/dd3aa6,08b900/62fddf,"unselect <checkbox bound_box=594,240,1017,384>Sports venues</checkbox>"
419,2024-05-28 08:05:27.001000,08b900/62fddf,08b900/aa9f67,"touch <p bound_box=168,123,912,188>Tourist Attractions</p>"
420,2024-05-28 08:05:41.346201,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
421,2024-05-28 08:05:55.077266,08b900/dd3aa6,08b900/dd3aa6,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
422,2024-05-28 08:06:07.547038,08b900/dd3aa6,08b900/aa9f67,"touch <p bound_box=168,123,912,188>Tourist Attractions</p>"
423,2024-05-28 08:06:21.662208,08b900/aa9f67,08b900/9ea42d,"touch <button bound_box=0,1485,1080,1605>List</button>"
424,2024-05-28 08:06:32.248661,08b900/9ea42d,08b900/9ea42d,"unselect <checkbox bound_box=42,240,570,384>Parks and open spaces</checkbox>"
425,2024-05-28 08:06:43.711799,08b900/9ea42d,08b900,kill_app
426,2024-05-28 08:06:54.280250,08b900,08b900/2f7de7,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
427,2024-05-28 08:07:07.932228,08b900/2f7de7,08b900/66c66d,"touch <button bound_box=585,919,777,1063>NO</button>"
428,2024-05-28 08:07:20.663523,08b900/66c66d,08b900/2479ee,"touch <button bound_box=648,1628,864,1756>Route</button>"
429,2024-05-28 08:07:36.742899,08b900/2479ee,08b900/f1a4a2,"touch <button bound_box=460,940,969,1084>BUY THIS ITEM FOR </button>"
430,2024-05-28 08:07:55.249285,08b900/f1a4a2,08b900/7e98e2,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
431,2024-05-28 08:08:07.429285,08b900/7e98e2,08b900/7e98e2,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
432,2024-05-28 08:08:21.868458,08b900/7e98e2,08b900/7e98e2,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
433,2024-05-28 08:08:34.067029,08b900/7e98e2,08b900/7e98e2,"touch <button bound_box=0,1628,216,1756>Map</button>"
434,2024-05-28 08:08:46.241799,08b900/7e98e2,08b900/dff98f,"touch <button bound_box=207,468,912,612>GET DIRECTIONS</button>"
435,2024-05-28 08:08:58.885993,08b900/dff98f,08b900/7e98e2,"touch <button bound_box=777,919,969,1063>OK</button>"
436,2024-05-28 08:09:11.005853,08b900/7e98e2,08b900/288252,"touch <button bound_box=207,378,912,468>TO</button>"
437,2024-05-28 08:09:21.992647,08b900/288252,08b900,kill_app
438,2024-05-28 08:09:32.633554,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
439,2024-05-28 08:09:56.376429,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
440,2024-05-28 08:10:08.175590,08b900/aa9f67,08b900/62fddf,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
441,2024-05-28 08:10:20.802852,08b900/62fddf,08b900/9e4620,"touch <button bound_box=360,1278,720,1423>Route</button>"
442,2024-05-28 08:10:34.311484,08b900/9e4620,08b900/aa9f67,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
443,2024-05-28 08:10:46.558807,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
444,2024-05-28 08:10:57.078030,08b900/dd3aa6,08b900/dd3aa6,"unselect <checkbox bound_box=594,240,945,384>Sports venues</checkbox>"
445,2024-05-28 08:11:09.545807,08b900/dd3aa6,08b900/b14203,"select <checkbox bound_box=42,240,570,384>Parks and open spaces</checkbox>"
446,2024-05-28 08:11:22.040619,08b900/b14203,08b900/b14203,"touch <button bound_box=0,1485,1080,1605>List</button>"
447,2024-05-28 08:11:34.263493,08b900/b14203,08b900/2feeac,"touch <button bound_box=720,1278,1080,1423>Edit</button>"
448,2024-05-28 08:11:54.072412,08b900/2feeac,08b900/9e4620,"touch <button bound_box=360,1278,720,1423>Route</button>"
449,2024-05-28 08:12:04.630661,08b900/9e4620,08b900,kill_app
450,2024-05-28 08:12:14.758812,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
451,2024-05-28 08:12:28.640075,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
452,2024-05-28 08:12:40.861288,08b900/aa9f67,08b900/62fddf,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
453,2024-05-28 08:12:53.174755,08b900/62fddf,08b900/62fddf,"touch <button bound_box=648,1628,864,1756>Route</button>"
454,2024-05-28 08:13:07.400959,08b900/62fddf,08b900/aa9f67,"touch <p bound_box=168,123,912,188>Tourist Attractions</p>"
455,2024-05-28 08:13:19.466558,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
456,2024-05-28 08:13:32.297252,08b900/dd3aa6,08b900/b14203,"scroll down <scrollbar bound_box=0,240,1080,384></scrollbar>"
457,2024-05-28 08:13:51.689222,08b900/b14203,08b900/b14203,"touch <button bound_box=0,1628,216,1756>Map</button>"
458,2024-05-28 08:14:05.800431,08b900/b14203,08b900/b14203,"long_touch <button bound_box=48,1471,622,1528>Β© OpenStreetMap contributors</button>"
459,2024-05-28 08:14:18.092268,08b900/b14203,08b900/b14203,"touch <button bound_box=648,1628,864,1756>Route</button>"
460,2024-05-28 08:14:29.047394,08b900/b14203,08b900/b14203,"select <checkbox bound_box=42,240,642,384>Parks and open spaces</checkbox>"
461,2024-05-28 08:14:40.288128,08b900/b14203,08b900,kill_app
462,2024-05-28 08:14:51.572283,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
463,2024-05-28 08:15:05.637606,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
464,2024-05-28 08:15:18.315382,08b900/aa9f67,08b900/62fddf,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
465,2024-05-28 08:15:30.622351,08b900/62fddf,08b900/62fddf,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
466,2024-05-28 08:15:49.768969,08b900/62fddf,08b900/9e4620,"touch <button bound_box=360,1278,720,1423>Route</button>"
467,2024-05-28 08:16:01.901107,08b900/9e4620,08b900/aa9f67,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
468,2024-05-28 08:16:14.458593,08b900/aa9f67,08b900/3abce7,"touch <button bound_box=432,1628,648,1756>Search</button>"
469,2024-05-28 08:16:29.077724,08b900/3abce7,08b900/a30cbd,"touch <button bound_box=216,592,1080,649>Attractions</button>"
470,2024-05-28 08:16:43.177617,08b900/a30cbd,08b900/752a80,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
471,2024-05-28 08:16:55.221362,08b900/752a80,08b900/752a80,"touch <p bound_box=48,1074,447,1147>7.8773, 80.7004</p>"
472,2024-05-28 08:17:09.016952,08b900/752a80,08b900/752a80,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
473,2024-05-28 08:17:20.025676,08b900/752a80,08b900,kill_app
474,2024-05-28 08:17:30.550419,08b900,08b900/2f7de7,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
475,2024-05-28 08:17:50.935430,08b900/2f7de7,08b900/66c66d,"touch <button bound_box=585,919,777,1063>NO</button>"
476,2024-05-28 08:18:03.516280,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
477,2024-05-28 08:18:15.736861,08b900/aa9f67,08b900/62fddf,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
478,2024-05-28 08:18:28.016019,08b900/62fddf,08b900/62fddf,"touch <button bound_box=840,1471,1032,1591>FR</button>"
479,2024-05-28 08:18:42.116021,08b900/62fddf,08b900/62fddf,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
480,2024-05-28 08:18:54.207427,08b900/62fddf,08b900/62fddf,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
481,2024-05-28 08:19:06.697400,08b900/62fddf,08b900/dd3aa6,"select <checkbox bound_box=42,240,570,384>Parks and open spaces</checkbox>"
482,2024-05-28 08:19:17.475511,08b900/dd3aa6,08b900/dd3aa6,"unselect <checkbox bound_box=1041,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
483,2024-05-28 08:19:31.517972,08b900/dd3aa6,08b900/dc7e71,"touch <button bound_box=0,1278,540,1423>Save</button>"
484,2024-05-28 08:20:00.484519,08b900/dc7e71,08b900/5fca5f,"touch <button bound_box=0,1485,1080,1605>List</button>"
485,2024-05-28 08:20:12.351506,08b900/5fca5f,08b900/dc7e71,"select <checkbox bound_box=42,240,570,384>Parks and open spaces</checkbox>"
486,2024-05-28 08:20:23.297245,08b900/dc7e71,08b900,kill_app
487,2024-05-28 08:20:34.005670,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
488,2024-05-28 08:20:47.697285,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
489,2024-05-28 08:20:59.994505,08b900/aa9f67,08b900/62fddf,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
490,2024-05-28 08:21:10.590780,08b900/62fddf,08b900/62fddf,"unselect <checkbox bound_box=42,240,570,384>Parks and open spaces</checkbox>"
491,2024-05-28 08:21:24.945506,08b900/62fddf,08b900/aa9f67,"touch <p bound_box=168,123,912,188>Tourist Attractions</p>"
492,2024-05-28 08:21:37.804871,08b900/aa9f67,08b900/9ea42d,"touch <button bound_box=0,1485,1080,1605>List</button>"
493,2024-05-28 08:22:06.488448,08b900/9ea42d,08b900/aa9f67,"scroll down <scrollbar bound_box=0,240,1080,384></scrollbar>"
494,2024-05-28 08:22:20.167212,08b900/aa9f67,08b900/370c46,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
495,2024-05-28 08:22:32.553770,08b900/370c46,08b900/624c33,"select <checkbox bound_box=666,240,1017,384>Sports venues</checkbox>"
496,2024-05-28 08:22:45.207004,08b900/624c33,08b900/624c33,"touch <button bound_box=840,1471,1032,1591>FR</button>"
497,2024-05-28 08:22:57.605148,08b900/624c33,08b900/624c33,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
498,2024-05-28 08:23:08.965964,08b900/624c33,08b900,kill_app
499,2024-05-28 08:23:19.509910,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
500,2024-05-28 08:23:33.742450,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
501,2024-05-28 08:23:46.376644,08b900/aa9f67,08b900/62fddf,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
502,2024-05-28 08:23:58.624832,08b900/62fddf,08b900/62fddf,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
503,2024-05-28 08:24:12.524461,08b900/62fddf,08b900/aa9f67,"touch <button bound_box=0,1278,540,1423>Save</button>"
504,2024-05-28 08:24:25.097817,08b900/aa9f67,08b900/62fddf,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
505,2024-05-28 08:24:37.466402,08b900/62fddf,08b900/62fddf,"select <checkbox bound_box=1041,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
506,2024-05-28 08:24:51.385089,08b900/62fddf,08b900/9e4620,"touch <button bound_box=540,1278,1080,1423>Route</button>"
507,2024-05-28 08:25:03.570985,08b900/9e4620,08b900/503264,"touch <button bound_box=460,940,969,1084>BUY THIS ITEM FOR </button>"
508,2024-05-28 08:25:15.796104,08b900/503264,08b900/66c66d,"touch <button bound_box=0,1628,216,1756>Map</button>"
509,2024-05-28 08:25:30.600806,08b900/66c66d,08b900/503264,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
510,2024-05-28 08:25:44.552616,08b900/503264,08b900/fdaa62,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
511,2024-05-28 08:26:02.109366,08b900/fdaa62,08b900/fdaa62,"touch <button bound_box=48,1471,622,1528>Β© OpenStreetMap contributors</button>"
512,2024-05-28 08:26:13.461202,08b900/fdaa62,08b900,kill_app
513,2024-05-28 08:26:24.137644,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
514,2024-05-28 08:26:38.426172,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
515,2024-05-28 08:26:50.742907,08b900/aa9f67,08b900/62fddf,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
516,2024-05-28 08:27:03.291456,08b900/62fddf,08b900/9e4620,"touch <button bound_box=360,1278,720,1423>Route</button>"
517,2024-05-28 08:27:17.815828,08b900/9e4620,08b900/aa9f67,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
518,2024-05-28 08:27:30.254360,08b900/aa9f67,08b900/2479ee,"touch <button bound_box=648,1628,864,1756>Route</button>"
519,2024-05-28 08:27:44.719169,08b900/2479ee,08b900/7da118,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
520,2024-05-28 08:27:58.997379,08b900/7da118,08b900/7e6517,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
521,2024-05-28 08:28:14.753606,08b900/7e6517,08b900/2f7de7,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
522,2024-05-28 08:28:26.834350,08b900/2f7de7,08b900/66c66d,"touch <button bound_box=432,1628,648,1756>Search</button>"
523,2024-05-28 08:28:42.317210,08b900/66c66d,08b900/2479ee,"touch <button bound_box=648,1628,864,1756>Route</button>"
524,2024-05-28 08:28:54.762412,08b900/2479ee,08b900/2479ee,"touch <button bound_box=460,940,969,1084>BUY THIS ITEM FOR </button>"
525,2024-05-28 08:29:07.293036,08b900/7da118,08b900/2479ee,"touch <button bound_box=648,1628,864,1756>Route</button>"
526,2024-05-28 08:29:18.672589,08b900/2479ee,08b900,kill_app
527,2024-05-28 08:29:29.549784,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
528,2024-05-28 08:29:45.599970,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
529,2024-05-28 08:29:58.472751,08b900/aa9f67,08b900/9ea42d,"touch <button bound_box=0,1485,1080,1605>List</button>"
530,2024-05-28 08:30:12.002058,08b900/9ea42d,08b900/aa9f67,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
531,2024-05-28 08:30:27.746359,08b900/aa9f67,08b900/358b90,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
532,2024-05-28 08:30:40.276319,08b900/358b90,08b900/358b90,"select <checkbox bound_box=1041,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
533,2024-05-28 08:30:53.931426,08b900/358b90,08b900/358b90,"touch <button bound_box=48,1471,312,1591>EN</button>"
534,2024-05-28 08:31:07.369644,08b900/358b90,08b900/358b90,"select <checkbox bound_box=42,240,570,384>Parks and open spaces</checkbox>"
535,2024-05-28 08:31:20.165666,08b900/358b90,08b900/358b90,"touch <button bound_box=432,1628,648,1756>Search</button>"
536,2024-05-28 08:31:31.030018,08b900/358b90,08b900/358b90,"unselect <checkbox bound_box=666,240,1017,384>Sports venues</checkbox>"
537,2024-05-28 08:31:43.748568,08b900/358b90,08b900/358b90,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
538,2024-05-28 08:31:55.027633,08b900/358b90,08b900,kill_app
539,2024-05-28 08:32:05.730724,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
540,2024-05-28 08:32:21.048113,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
541,2024-05-28 08:32:33.553984,08b900/aa9f67,08b900/62fddf,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
542,2024-05-28 08:32:46.538094,08b900/62fddf,08b900/62fddf,"touch <button bound_box=48,1471,312,1591>RU</button>"
543,2024-05-28 08:33:01.792195,08b900/62fddf,08b900/9e4620,"touch <button bound_box=360,1278,720,1423>Route</button>"
544,2024-05-28 08:33:14.192610,08b900/9e4620,08b900/aa9f67,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
545,2024-05-28 08:33:27.023194,08b900/aa9f67,08b900/9ea42d,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
546,2024-05-28 08:33:43.352962,08b900/9ea42d,08b900/aa9f67,"touch <button bound_box=275,1344,804,1417>Gangaramaya Temple</button>"
547,2024-05-28 08:33:59.126728,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
548,2024-05-28 08:34:10.434156,08b900/aa9f67,08b900/aa9f67,"unselect <checkbox bound_box=42,240,570,384>Parks and open spaces</checkbox>"
549,2024-05-28 08:34:25.942805,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
550,2024-05-28 08:34:38.847861,08b900/aa9f67,08b900/aa9f67,"touch <button bound_box=720,1278,1080,1423>Edit</button>"
551,2024-05-28 08:34:49.954939,08b900/aa9f67,08b900,kill_app
552,2024-05-28 08:35:00.831346,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
553,2024-05-28 08:35:16.142637,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
554,2024-05-28 08:35:29.328962,08b900/aa9f67,08b900/62fddf,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
555,2024-05-28 08:35:42.592051,08b900/62fddf,08b900/62fddf,"touch <button bound_box=0,1628,216,1756>Map</button>"
556,2024-05-28 08:36:02.315516,08b900/62fddf,08b900/aa9f67,"touch <button bound_box=0,1278,540,1423>Save</button>"
557,2024-05-28 08:36:15.046119,08b900/aa9f67,08b900/62fddf,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
558,2024-05-28 08:36:27.596000,08b900/62fddf,08b900/62fddf,"select <checkbox bound_box=969,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
559,2024-05-28 08:36:42.935775,08b900/62fddf,08b900/503264,"touch <button bound_box=0,1278,540,1423>Save</button>"
560,2024-05-28 08:36:55.377027,08b900/503264,08b900/503264,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
561,2024-05-28 08:37:08.205304,08b900/503264,08b900/8765a8,"touch <button bound_box=0,1485,1080,1605>List</button>"
562,2024-05-28 08:37:19.252896,08b900/8765a8,08b900/8765a8,"unselect <checkbox bound_box=594,240,945,384>Sports venues</checkbox>"
563,2024-05-28 08:37:30.993070,08b900/8765a8,08b900,kill_app
564,2024-05-28 08:37:47.066320,08b900,08b900/2f7de7,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
565,2024-05-28 08:38:08.785800,08b900/2f7de7,08b900/66c66d,"touch <button bound_box=585,919,777,1063>NO</button>"
566,2024-05-28 08:38:22.056933,08b900/66c66d,08b900/2479ee,"touch <button bound_box=648,1628,864,1756>Route</button>"
567,2024-05-28 08:38:35.069473,08b900/2479ee,08b900/f1a4a2,"touch <button bound_box=460,940,969,1084>BUY THIS ITEM FOR </button>"
568,2024-05-28 08:38:47.650252,08b900/f1a4a2,08b900/66c66d,"touch <button bound_box=0,1628,216,1756>Map</button>"
569,2024-05-28 08:39:03.089749,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
570,2024-05-28 08:39:15.714497,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
571,2024-05-28 08:39:28.346580,08b900/aa9f67,08b900/9ea42d,"touch <button bound_box=48,1471,312,1591>RU</button>"
572,2024-05-28 08:39:43.962014,08b900/9ea42d,08b900/9ea42d,"long_touch <input bound_box=312,100,1056,208>Name</input>"
573,2024-05-28 08:39:57.815251,08b900/9ea42d,08b900/aa9f67,"scroll down <scrollbar bound_box=0,240,1080,1776></scrollbar>"
574,2024-05-28 08:40:12.585669,08b900/aa9f67,08b900/f7afa4,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
575,2024-05-28 08:40:25.412281,08b900/f7afa4,08b900/7ba407,"unselect <checkbox bound_box=42,240,642,384>Parks and open spaces</checkbox>"
576,2024-05-28 08:40:37.185899,08b900/7ba407,08b900,kill_app
577,2024-05-28 08:40:48.222968,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
578,2024-05-28 08:41:03.928322,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
579,2024-05-28 08:41:17.165317,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
580,2024-05-28 08:41:29.984135,08b900/aa9f67,08b900/66c66d,"touch <button bound_box=0,1628,216,1756>Map</button>"
581,2024-05-28 08:41:46.070630,08b900/66c66d,08b900/2479ee,"touch <button bound_box=648,1628,864,1756>Route</button>"
582,2024-05-28 08:42:03.063512,08b900/2479ee,08b900/f1a4a2,"touch <button bound_box=460,940,969,1084>BUY THIS ITEM FOR </button>"
583,2024-05-28 08:42:16.166138,08b900/f1a4a2,08b900/7e6517,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
584,2024-05-28 08:42:33.435148,08b900/7e6517,08b900/66c66d,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
585,2024-05-28 08:42:46.777000,08b900/66c66d,08b900/888a22,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
586,2024-05-28 08:43:02.609938,08b900/888a22,08b900/66c66d,"touch <button bound_box=75,843,1005,987>Β© OPENSTREETMAP</button>"
587,2024-05-28 08:43:17.137172,08b900/66c66d,08b900/122e8f,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
588,2024-05-28 08:43:29.705168,08b900/122e8f,08b900/66c66d,"touch <p bound_box=168,123,1080,188>Attractions</p>"
589,2024-05-28 08:43:40.944647,08b900/66c66d,08b900,kill_app
590,2024-05-28 08:43:52.058051,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
591,2024-05-28 08:44:12.033167,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
592,2024-05-28 08:44:24.300960,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
593,2024-05-28 08:44:35.027733,08b900/aa9f67,08b900/aa9f67,"unselect <checkbox bound_box=594,240,945,384>Sports venues</checkbox>"
594,2024-05-28 08:44:50.125918,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
595,2024-05-28 08:45:02.449732,08b900/aa9f67,08b900/9ea42d,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
596,2024-05-28 08:45:16.348646,08b900/9ea42d,08b900/aa9f67,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
597,2024-05-28 08:45:37.044858,08b900/aa9f67,08b900/7e1d96,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
598,2024-05-28 08:45:51.182619,08b900/7e1d96,08b900/aa9f67,"touch <button bound_box=0,1278,360,1423>Remove</button>"
599,2024-05-28 08:46:05.869412,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
600,2024-05-28 08:46:18.178350,08b900/7e1d96,08b900/aa9f67,"touch <p bound_box=168,123,912,188>Tourist Attractions</p>"
601,2024-05-28 08:46:29.178445,08b900/aa9f67,08b900,kill_app
602,2024-05-28 08:46:40.199838,08b900,08b900/2f7de7,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
603,2024-05-28 08:46:54.958993,08b900/2f7de7,08b900/66c66d,"touch <button bound_box=432,1628,648,1756>Search</button>"
604,2024-05-28 08:47:07.503521,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
605,2024-05-28 08:47:19.602945,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
606,2024-05-28 08:47:32.288687,08b900/aa9f67,08b900/dc7e71,"scroll down <scrollbar bound_box=0,240,1080,384></scrollbar>"
607,2024-05-28 08:47:48.656553,08b900/dc7e71,08b900/5fca5f,"touch <button bound_box=0,1485,1080,1605>List</button>"
608,2024-05-28 08:48:11.175381,08b900/5fca5f,08b900/dc7e71,"scroll up <scrollbar bound_box=0,240,1080,384></scrollbar>"
609,2024-05-28 08:48:26.477553,08b900/dc7e71,08b900/5fca5f,"touch <button bound_box=0,1485,1080,1605>List</button>"
610,2024-05-28 08:48:38.791324,08b900/5fca5f,08b900/dc7e71,"touch <button bound_box=0,1485,1080,1605>List</button>"
611,2024-05-28 08:48:54.161547,08b900/dc7e71,08b900/dc7e71,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
612,2024-05-28 08:49:06.529492,08b900/dc7e71,08b900/dc7e71,"touch <p bound_box=48,1074,447,1147>Sigiriya</p>"
613,2024-05-28 08:49:17.755841,08b900/dc7e71,08b900,kill_app
614,2024-05-28 08:49:28.485695,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
615,2024-05-28 08:49:43.804796,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
616,2024-05-28 08:50:06.013557,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
617,2024-05-28 08:50:16.508808,08b900/aa9f67,08b900/aa9f67,"unselect <checkbox bound_box=42,240,570,384>Parks and open spaces</checkbox>"
618,2024-05-28 08:50:31.718058,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
619,2024-05-28 08:50:44.297110,08b900/aa9f67,08b900/2479ee,"touch <button bound_box=648,1628,864,1756>Route</button>"
620,2024-05-28 08:50:59.529485,08b900/2479ee,08b900/6f3178,"touch <button bound_box=460,940,969,1084>BUY THIS ITEM FOR </button>"
621,2024-05-28 08:51:11.767224,08b900/6f3178,08b900/57a95f,"touch <button bound_box=207,378,912,468>TO</button>"
622,2024-05-28 08:51:26.026960,08b900/57a95f,08b900/57a95f,"long_touch <input bound_box=312,100,1056,208>Address, hotel, name</input>"
623,2024-05-28 08:51:38.221181,08b900/57a95f,08b900/4f10c5,"touch <button bound_box=216,496,516,553>Pick on the map</button>"
624,2024-05-28 08:51:50.583772,08b900/4f10c5,08b900/f3e32c,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
625,2024-05-28 08:52:08.448389,08b900/f3e32c,08b900,kill_app
626,2024-05-28 08:52:19.017092,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
627,2024-05-28 08:52:34.767365,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
628,2024-05-28 08:52:47.391137,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
629,2024-05-28 08:53:02.303115,08b900/aa9f67,08b900/9ea42d,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
630,2024-05-28 08:53:14.542432,08b900/9ea42d,08b900/aa9f67,"select <checkbox bound_box=969,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
631,2024-05-28 08:53:30.395241,08b900/aa9f67,08b900/bed209,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
632,2024-05-28 08:53:42.931315,08b900/bed209,08b900/bed209,"touch <button bound_box=0,1628,216,1756>Map</button>"
633,2024-05-28 08:53:55.359619,08b900/bed209,08b900/bed209,"select <checkbox bound_box=969,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
634,2024-05-28 08:54:15.747214,08b900/bed209,08b900/bed209,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
635,2024-05-28 08:54:28.732447,08b900/bed209,08b900/bed209,"scroll down <scrollbar bound_box=0,240,1080,384></scrollbar>"
636,2024-05-28 08:54:41.721299,08b900/bed209,08b900/bed209,"unselect <checkbox bound_box=1041,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
637,2024-05-28 08:54:53.393985,08b900/bed209,08b900,kill_app
638,2024-05-28 08:55:04.181711,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
639,2024-05-28 08:55:20.153536,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
640,2024-05-28 08:55:32.944756,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
641,2024-05-28 08:55:45.691711,08b900/aa9f67,08b900/80bbe1,"unselect <checkbox bound_box=594,240,1017,384>Sports venues</checkbox>"
642,2024-05-28 08:56:01.848422,08b900/80bbe1,08b900/80bbe1,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
643,2024-05-28 08:56:17.433340,08b900/80bbe1,08b900/aa9f67,"select <checkbox bound_box=594,240,945,384>Sports venues</checkbox>"
644,2024-05-28 08:56:33.269501,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
645,2024-05-28 08:56:45.707949,08b900/aa9f67,08b900/aa9f67,"touch <button bound_box=360,1278,720,1423>Route</button>"
646,2024-05-28 08:57:01.724123,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
647,2024-05-28 08:57:12.448960,08b900/aa9f67,08b900/aa9f67,"unselect <checkbox bound_box=594,240,945,384>Sports venues</checkbox>"
648,2024-05-28 08:57:28.748600,08b900/aa9f67,08b900/9ea42d,"touch <button bound_box=48,1471,312,1591>RU</button>"
649,2024-05-28 08:57:42.175127,08b900/9ea42d,08b900/aa9f67,"touch <button bound_box=432,1628,648,1756>Search</button>"
650,2024-05-28 08:57:55.350714,08b900/aa9f67,08b900,kill_app
651,2024-05-28 08:58:11.587916,08b900,08b900/2f7de7,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
652,2024-05-28 08:58:27.436535,08b900/2f7de7,08b900/66c66d,"touch <button bound_box=585,919,777,1063>NO</button>"
653,2024-05-28 08:58:40.165654,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
654,2024-05-28 08:58:52.935203,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
655,2024-05-28 08:59:03.749470,08b900/aa9f67,08b900/aa9f67,"unselect <checkbox bound_box=42,240,570,384>Parks and open spaces</checkbox>"
656,2024-05-28 08:59:19.682731,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
657,2024-05-28 08:59:32.743393,08b900/aa9f67,08b900/503264,"select <checkbox bound_box=1041,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
658,2024-05-28 08:59:49.240073,08b900/503264,08b900/503264,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
659,2024-05-28 09:00:08.330145,08b900/503264,08b900/8765a8,"scroll up <scrollbar bound_box=48,1471,1032,1591></scrollbar>"
660,2024-05-28 09:00:20.991887,08b900/8765a8,08b900/dadd0d,"set_text <input bound_box=312,100,1056,208>Name</input> dummy_user_input"
661,2024-05-28 09:00:34.059407,08b900/dadd0d,08b900/dadd0d,"touch <button bound_box=0,1485,1080,1605>List</button>"
662,2024-05-28 09:00:45.959857,08b900/dadd0d,08b900,kill_app
663,2024-05-28 09:00:56.936961,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
664,2024-05-28 09:01:12.954215,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
665,2024-05-28 09:01:25.797288,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
666,2024-05-28 09:01:38.397333,08b900/aa9f67,08b900/80bbe1,"select <checkbox bound_box=666,240,1017,384>Sports venues</checkbox>"
667,2024-05-28 09:01:54.940627,08b900/80bbe1,08b900/80bbe1,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
668,2024-05-28 09:02:12.196692,08b900/80bbe1,08b900/80bbe1,"touch <button bound_box=360,1278,720,1423>Route</button>"
669,2024-05-28 09:02:27.792449,08b900/80bbe1,08b900/80bbe1,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
670,2024-05-28 09:02:40.608634,08b900/80bbe1,08b900/218b15,"scroll down <scrollbar bound_box=0,240,1080,384></scrollbar>"
671,2024-05-28 09:02:51.578507,08b900/218b15,08b900/218b15,"select <checkbox bound_box=666,240,1080,384>Sports venues</checkbox>"
672,2024-05-28 09:03:04.930310,08b900/218b15,08b900/dc7e71,"unselect <checkbox bound_box=666,240,1080,384>Sports venues</checkbox>"
673,2024-05-28 09:03:21.433387,08b900/dc7e71,08b900/dc7e71,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
674,2024-05-28 09:03:34.274715,08b900/dc7e71,08b900/dc7e71,"touch <p bound_box=48,1074,447,1147>7.8773, 80.7004</p>"
675,2024-05-28 09:03:45.677408,08b900/dc7e71,08b900,kill_app
676,2024-05-28 09:03:56.579540,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
677,2024-05-28 09:04:13.524234,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
678,2024-05-28 09:04:26.042710,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
679,2024-05-28 09:04:38.507417,08b900/aa9f67,08b900/66c66d,"touch <button bound_box=0,1628,216,1756>Map</button>"
680,2024-05-28 09:04:54.911903,08b900/66c66d,08b900/2479ee,"touch <button bound_box=648,1628,864,1756>Route</button>"
681,2024-05-28 09:05:08.303887,08b900/2479ee,08b900/f1a4a2,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
682,2024-05-28 09:05:20.534821,08b900/f1a4a2,08b900/958998,"touch <button bound_box=207,264,912,354>FROM</button>"
683,2024-05-28 09:05:33.199064,08b900/958998,08b900/c18e26,"touch <button bound_box=207,468,912,612>GET DIRECTIONS</button>"
684,2024-05-28 09:05:45.902651,08b900/c18e26,08b900/c18e26,"touch <button bound_box=0,1628,216,1756>Map</button>"
685,2024-05-28 09:06:00.986829,08b900/c18e26,08b900/74eee5,"touch <button bound_box=929,72,1080,240>OK</button>"
686,2024-05-28 09:06:23.102600,08b900/74eee5,08b900/888a22,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
687,2024-05-28 09:06:34.586149,08b900/888a22,08b900,kill_app
688,2024-05-28 09:06:45.889145,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
689,2024-05-28 09:07:03.584600,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
690,2024-05-28 09:07:17.021707,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
691,2024-05-28 09:07:29.971331,08b900/aa9f67,08b900/7e6517,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
692,2024-05-28 09:07:47.390913,08b900/7e6517,08b900/3703d9,"touch <button bound_box=216,439,477,496>Used libraries</button>"
693,2024-05-28 09:08:00.198048,08b900/3703d9,08b900/3703d9,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
694,2024-05-28 09:08:14.153724,08b900/3703d9,08b900/3703d9,"touch <button bound_box=48,1372,1032,1478>Copyright 2019 Square, Inc. Licensed under the Apa</button>"
695,2024-05-28 09:08:27.512555,08b900/3703d9,08b900/3703d9,"touch <button bound_box=48,703,1032,809>Copyright 2013 Square, Inc. Licensed under the Apa</button>"
696,2024-05-28 09:08:40.743761,08b900/3703d9,08b900/3703d9,"touch <button bound_box=48,598,1032,655>Picasso</button>"
697,2024-05-28 09:08:53.928561,08b900/3703d9,08b900/3703d9,"touch <button bound_box=48,908,1032,965>RxJava2</button>"
698,2024-05-28 09:09:09.956826,08b900/3703d9,08b900,kill_app
699,2024-05-28 09:09:22.298696,08b900,08b900/2f7de7,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
700,2024-05-28 09:09:35.244918,08b900/2f7de7,08b900/66c66d,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
701,2024-05-28 09:09:48.170132,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
702,2024-05-28 09:10:09.426882,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
703,2024-05-28 09:10:25.527078,08b900/aa9f67,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
704,2024-05-28 09:10:43.642365,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
705,2024-05-28 09:10:58.988888,08b900/aa9f67,08b900/9ea42d,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
706,2024-05-28 09:11:18.205589,08b900/9ea42d,08b900/eb7496,"set_text <input bound_box=312,100,1056,208>Name</input> dummy_user_input"
707,2024-05-28 09:11:31.733397,08b900/eb7496,08b900/eb7496,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
708,2024-05-28 09:11:44.938026,08b900/eb7496,08b900/eb7496,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
709,2024-05-28 09:11:58.538653,08b900/eb7496,08b900/eb7496,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
710,2024-05-28 09:12:17.895217,08b900/eb7496,08b900,kill_app
711,2024-05-28 09:12:29.112181,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
712,2024-05-28 09:12:47.569685,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
713,2024-05-28 09:13:00.882184,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
714,2024-05-28 09:13:14.158020,08b900/aa9f67,08b900/aa9f67,"touch <button bound_box=540,1278,1080,1423>Route</button>"
715,2024-05-28 09:13:31.737943,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
716,2024-05-28 09:13:46.724645,08b900/aa9f67,08b900/9ea42d,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
717,2024-05-28 09:14:05.097005,08b900/9ea42d,08b900/eb7496,"set_text <input bound_box=312,100,1056,208>Name</input> dummy_user_input"
718,2024-05-28 09:14:23.712751,08b900/eb7496,08b900/eb7496,"touch <p bound_box=168,123,912,188>Tourist Attractions</p>"
719,2024-05-28 09:14:37.171602,08b900/eb7496,08b900/eb7496,"touch <input bound_box=312,100,936,208>dummy_user_input</input>"
720,2024-05-28 09:14:51.143006,08b900/eb7496,08b900/eb7496,"select <checkbox bound_box=42,240,570,384>Parks and open spaces</checkbox>"
721,2024-05-28 09:15:04.776146,08b900/eb7496,08b900/9ea42d,"touch <button alt='ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββClear queryββββββ' bound_box=936,72,1056,237></button>"
722,2024-05-28 09:15:17.008457,08b900/9ea42d,08b900,kill_app
723,2024-05-28 09:15:28.610387,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
724,2024-05-28 09:15:45.834117,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
725,2024-05-28 09:15:58.968725,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
726,2024-05-28 09:16:12.295795,08b900/aa9f67,08b900/4941af,"touch <p bound_box=48,1074,577,1147>Gangaramaya Temple</p>"
727,2024-05-28 09:16:25.748568,08b900/4941af,08b900/4941af,"touch <button bound_box=648,1628,864,1756>Route</button>"
728,2024-05-28 09:16:40.803658,08b900/4941af,08b900/4941af,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
729,2024-05-28 09:16:54.511470,08b900/4941af,08b900/aa9f67,"touch <p bound_box=168,123,912,188>Tourist Attractions</p>"
730,2024-05-28 09:17:12.812123,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
731,2024-05-28 09:17:25.790785,08b900/aa9f67,08b900/3abce7,"touch <p bound_box=48,1639,1032,1753>Sigiriya or Sinhagiri (Lion Rock Sinhala: ΰ·ΰ·ΰΆΰ·ΰΆ»ΰ·ΰΆΊ</p>"
732,2024-05-28 09:17:44.533882,08b900/3abce7,08b900/e91690,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
733,2024-05-28 09:18:02.138014,08b900/e91690,08b900/600ed0,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
734,2024-05-28 09:18:18.858525,08b900/600ed0,08b900/600ed0,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
735,2024-05-28 09:18:30.735475,08b900/600ed0,08b900,kill_app
736,2024-05-28 09:18:41.833114,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
737,2024-05-28 09:18:59.570349,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
738,2024-05-28 09:19:13.177932,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
739,2024-05-28 09:19:26.256103,08b900/aa9f67,08b900/dc7e71,"select <checkbox bound_box=42,240,570,384>Parks and open spaces</checkbox>"
740,2024-05-28 09:19:43.682665,08b900/dc7e71,08b900/dc7e71,"touch <p bound_box=48,1074,577,1147>Gangaramaya Temple</p>"
741,2024-05-28 09:19:57.586939,08b900/dc7e71,08b900/218b15,"select <checkbox bound_box=594,240,945,384>Sports venues</checkbox>"
742,2024-05-28 09:20:22.474731,08b900/218b15,08b900/218b15,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
743,2024-05-28 09:20:35.614733,08b900/218b15,08b900/dc7e71,"select <checkbox bound_box=594,240,945,384>Sports venues</checkbox>"
744,2024-05-28 09:20:54.080365,08b900/dc7e71,08b900/dc7e71,"touch <p bound_box=48,1074,577,1147>Gangaramaya Temple</p>"
745,2024-05-28 09:21:07.219857,08b900/dc7e71,08b900/218b15,"select <checkbox bound_box=594,240,945,384>Sports venues</checkbox>"
746,2024-05-28 09:21:24.675632,08b900/218b15,08b900/218b15,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
747,2024-05-28 09:21:37.424722,08b900/218b15,08b900/218b15,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
748,2024-05-28 09:21:48.842099,08b900/218b15,08b900,kill_app
749,2024-05-28 09:21:59.965790,08b900,08b900/2f7de7,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
750,2024-05-28 09:22:23.493234,08b900/2f7de7,08b900/66c66d,"touch <button bound_box=432,1628,648,1756>Search</button>"
751,2024-05-28 09:22:35.873185,08b900/66c66d,08b900/2479ee,"touch <button bound_box=648,1628,864,1756>Route</button>"
752,2024-05-28 09:22:48.890985,08b900/2479ee,08b900/f1a4a2,"touch <button bound_box=229,940,460,1084>CANCEL</button>"
753,2024-05-28 09:23:02.026239,08b900/f1a4a2,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
754,2024-05-28 09:23:18.451496,08b900/aa9f67,08b900/4941af,"touch <p bound_box=48,1074,577,1147>Gangaramaya Temple</p>"
755,2024-05-28 09:23:29.493407,08b900/4941af,08b900/4941af,"unselect <checkbox bound_box=969,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
756,2024-05-28 09:23:42.715726,08b900/4941af,08b900/537ae3,"scroll up <scrollbar bound_box=0,240,1080,384></scrollbar>"
757,2024-05-28 09:23:55.566340,08b900/537ae3,08b900/dc7e71,"touch <button bound_box=0,1278,540,1423>Save</button>"
758,2024-05-28 09:24:17.627519,08b900/dc7e71,08b900/dc7e71,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
759,2024-05-28 09:24:30.839978,08b900/dc7e71,08b900/dc7e71,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
760,2024-05-28 09:24:42.143968,08b900/dc7e71,08b900,kill_app
761,2024-05-28 09:24:53.176329,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
762,2024-05-28 09:25:09.424344,08b900/66c66d,08b900/2479ee,"touch <button bound_box=648,1628,864,1756>Route</button>"
763,2024-05-28 09:25:22.398771,08b900/2479ee,08b900/f1a4a2,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
764,2024-05-28 09:25:36.627730,08b900/f1a4a2,08b900/888a22,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
765,2024-05-28 09:25:53.242264,08b900/888a22,08b900/f1a4a2,"touch <button bound_box=75,843,1005,987>Β© OPENSTREETMAP</button>"
766,2024-05-28 09:26:07.781703,08b900/f1a4a2,08b900/7e98e2,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
767,2024-05-28 09:26:27.966959,08b900/7e98e2,08b900/9e4620,"touch <p bound_box=168,123,1080,188>Banks</p>"
768,2024-05-28 09:26:45.115267,08b900/9e4620,08b900/7e98e2,"touch <button bound_box=460,940,969,1084>BUY THIS ITEM FOR </button>"
769,2024-05-28 09:26:58.355554,08b900/7e98e2,08b900/7e98e2,"touch <button bound_box=432,1628,648,1756>Search</button>"
770,2024-05-28 09:27:11.260213,08b900/7e98e2,08b900/f1a4a2,"touch <button bound_box=0,1278,540,1423>Save</button>"
771,2024-05-28 09:27:24.008180,08b900/f1a4a2,08b900/4814f9,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
772,2024-05-28 09:27:35.853794,08b900/4814f9,08b900,kill_app
773,2024-05-28 09:27:47.160224,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
774,2024-05-28 09:28:03.973739,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
775,2024-05-28 09:28:33.289139,08b900/aa9f67,08b900/9ea42d,"touch <button bound_box=48,1471,312,1591>RU</button>"
776,2024-05-28 09:28:44.584116,08b900/9ea42d,08b900/9ea42d,"unselect <checkbox bound_box=1041,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
777,2024-05-28 09:29:01.657278,08b900/9ea42d,08b900/eb7496,"set_text <input bound_box=312,100,1056,208>Name</input> dummy_user_input"
778,2024-05-28 09:29:16.364146,08b900/eb7496,08b900/eb7496,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
779,2024-05-28 09:29:29.506464,08b900/eb7496,08b900/eb7496,"touch <button bound_box=648,1628,864,1756>Route</button>"
780,2024-05-28 09:29:42.692260,08b900/eb7496,08b900/eb7496,"touch <button bound_box=432,1628,648,1756>Search</button>"
781,2024-05-28 09:29:57.381400,08b900/eb7496,08b900/eb7496,"long_touch <input bound_box=312,100,936,208>dummy_user_input</input>"
782,2024-05-28 09:30:08.803839,08b900/eb7496,08b900/eb7496,"unselect <checkbox bound_box=42,240,570,384>Parks and open spaces</checkbox>"
783,2024-05-28 09:30:30.350707,08b900/eb7496,08b900/eb7496,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
784,2024-05-28 09:30:42.338302,08b900/eb7496,08b900,kill_app
785,2024-05-28 09:30:53.835904,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
786,2024-05-28 09:31:11.891086,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
787,2024-05-28 09:31:24.808707,08b900/aa9f67,08b900/62fddf,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
788,2024-05-28 09:31:37.866286,08b900/62fddf,08b900/62fddf,"unselect <checkbox bound_box=594,240,1017,384>Sports venues</checkbox>"
789,2024-05-28 09:31:54.412273,08b900/dd3aa6,08b900/9e4620,"touch <button bound_box=540,1278,1080,1423>Route</button>"
790,2024-05-28 09:32:07.313219,08b900/9e4620,08b900/80bbe1,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
791,2024-05-28 09:32:27.230255,08b900/80bbe1,08b900/80bbe1,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
792,2024-05-28 09:32:40.161745,08b900/dd3aa6,08b900/dd3aa6,"touch <p bound_box=48,1074,447,1147>7.8773, 80.7004</p>"
793,2024-05-28 09:32:53.482973,08b900/dd3aa6,08b900/80bbe1,"touch <button bound_box=0,1278,360,1423>Remove</button>"
794,2024-05-28 09:33:10.738660,08b900/80bbe1,08b900/80bbe1,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
795,2024-05-28 09:33:24.208444,08b900/80bbe1,08b900/218b15,"unselect <checkbox bound_box=42,240,642,384>Parks and open spaces</checkbox>"
796,2024-05-28 09:33:35.873199,08b900/218b15,08b900,kill_app
797,2024-05-28 09:33:47.389952,08b900,08b900/2f7de7,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
798,2024-05-28 09:34:07.381761,08b900/2f7de7,08b900/66c66d,"touch <button bound_box=585,919,777,1063>NO</button>"
799,2024-05-28 09:34:24.325010,08b900/66c66d,08b900/2479ee,"touch <button bound_box=648,1628,864,1756>Route</button>"
800,2024-05-28 09:34:37.814406,08b900/2479ee,08b900/f1a4a2,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
801,2024-05-28 09:34:50.947414,08b900/f1a4a2,08b900/74ad02,"touch <button bound_box=207,264,912,354>FROM</button>"
802,2024-05-28 09:35:04.582088,08b900/74ad02,08b900/74ad02,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
803,2024-05-28 09:35:17.332462,08b900/74ad02,08b900/74ad02,"touch <button bound_box=432,1628,648,1756>Search</button>"
804,2024-05-28 09:35:31.201021,08b900/74ad02,08b900/6b1fe0,"touch <button bound_box=216,862,1080,919>Ibbankatuwa Megalithic Tombs</button>"
805,2024-05-28 09:35:44.081960,08b900/6b1fe0,08b900/888a22,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
806,2024-05-28 09:36:01.691469,08b900/888a22,08b900/6b1fe0,"touch <button bound_box=75,843,1005,987>Β© OPENSTREETMAP</button>"
807,2024-05-28 09:36:17.215605,08b900/6b1fe0,08b900/075510,"touch <button bound_box=207,378,912,468>7.8773, 80.7004</button>"
808,2024-05-28 09:36:33.733343,08b900/075510,08b900,kill_app
809,2024-05-28 09:36:45.495016,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
810,2024-05-28 09:37:02.069569,08b900/66c66d,08b900/7e6517,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
811,2024-05-28 09:37:17.038299,08b900/7e6517,08b900/66c66d,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
812,2024-05-28 09:37:31.694627,08b900/66c66d,08b900/122e8f,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
813,2024-05-28 09:37:48.034975,08b900/122e8f,08b900/9e4620,"touch <button bound_box=540,1278,1080,1423>Route</button>"
814,2024-05-28 09:38:01.153526,08b900/9e4620,08b900/66c66d,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
815,2024-05-28 09:38:16.732433,08b900/66c66d,08b900/2479ee,"touch <button bound_box=648,1628,864,1756>Route</button>"
816,2024-05-28 09:38:35.111682,08b900/2479ee,08b900/2479ee,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
817,2024-05-28 09:38:48.272356,08b900/7da118,08b900/7da118,"touch <button bound_box=207,264,912,354>7.87725, 80.70035</button>"
818,2024-05-28 09:39:01.453978,08b900/075510,08b900/075510,"touch <button bound_box=216,346,433,403>My location</button>"
819,2024-05-28 09:39:14.270069,08b900/075510,08b900/075510,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
820,2024-05-28 09:39:26.407696,08b900/075510,08b900,kill_app
821,2024-05-28 09:39:37.691020,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
822,2024-05-28 09:39:54.515124,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
823,2024-05-28 09:40:07.213581,08b900/aa9f67,08b900/aa9f67,"touch <p bound_box=48,1074,577,1147>Gangaramaya Temple</p>"
824,2024-05-28 09:40:26.082209,08b900/aa9f67,08b900/aa9f67,"unselect <checkbox bound_box=42,240,570,384>Parks and open spaces</checkbox>"
825,2024-05-28 09:40:42.485371,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
826,2024-05-28 09:40:55.627898,08b900/aa9f67,08b900/dc7e71,"scroll up <scrollbar bound_box=0,240,1080,384></scrollbar>"
827,2024-05-28 09:41:12.454818,08b900/dc7e71,08b900/dc7e71,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
828,2024-05-28 09:41:27.679022,08b900/dc7e71,08b900/5fca5f,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
829,2024-05-28 09:41:39.508045,08b900/5fca5f,08b900/5fca5f,"unselect <checkbox bound_box=666,240,1017,384>Sports venues</checkbox>"
830,2024-05-28 09:41:52.658831,08b900/5fca5f,08b900/dc7e71,"select <checkbox bound_box=1041,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
831,2024-05-28 09:42:13.699947,08b900/dc7e71,08b900/dc7e71,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
832,2024-05-28 09:42:36.279932,08b900/bed209,08b900/bed209,"touch <button bound_box=432,1628,648,1756>Search</button>"
833,2024-05-28 09:42:48.011868,08b900/bed209,08b900,kill_app
834,2024-05-28 09:42:59.917481,08b900,08b900/2f7de7,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
835,2024-05-28 09:43:17.643310,08b900/2f7de7,08b900/66c66d,"touch <button bound_box=585,919,777,1063>NO</button>"
836,2024-05-28 09:43:30.961295,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
837,2024-05-28 09:43:44.152428,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
838,2024-05-28 09:43:57.627146,08b900/aa9f67,08b900/80bbe1,"unselect <checkbox bound_box=594,240,1017,384>Sports venues</checkbox>"
839,2024-05-28 09:44:14.458436,08b900/80bbe1,08b900/80bbe1,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
840,2024-05-28 09:44:43.235721,08b900/80bbe1,08b900/5d6613,"touch <button bound_box=312,1471,576,1591>EN</button>"
841,2024-05-28 09:44:56.808683,08b900/5d6613,08b900/80bbe1,"unselect <checkbox bound_box=594,240,1017,384>Sports venues</checkbox>"
842,2024-05-28 09:45:15.893622,08b900/80bbe1,08b900/d04183,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
843,2024-05-28 09:45:29.688040,08b900/d04183,08b900/d04183,"touch <button bound_box=312,1471,576,1591>EN</button>"
844,2024-05-28 09:45:45.280067,08b900/d04183,08b900/d04183,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
845,2024-05-28 09:45:57.244284,08b900/d04183,08b900,kill_app
846,2024-05-28 09:46:08.774611,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
847,2024-05-28 09:46:36.500358,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
848,2024-05-28 09:46:49.997064,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
849,2024-05-28 09:47:01.640698,08b900/aa9f67,08b900/aa9f67,"unselect <checkbox bound_box=969,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
850,2024-05-28 09:47:19.482169,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
851,2024-05-28 09:47:30.922188,08b900/aa9f67,08b900/aa9f67,"select <checkbox bound_box=594,240,1017,384>Sports venues</checkbox>"
852,2024-05-28 09:47:48.549138,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
853,2024-05-28 09:48:02.326581,08b900/aa9f67,08b900/9ea42d,"touch <button bound_box=0,1485,1080,1605>List</button>"
854,2024-05-28 09:48:27.672574,08b900/9ea42d,08b900/eb7496,"set_text <input bound_box=312,100,1056,208>Name</input> dummy_user_input"
855,2024-05-28 09:48:38.801243,08b900/eb7496,08b900/eb7496,"unselect <checkbox bound_box=594,240,945,384>Sports venues</checkbox>"
856,2024-05-28 09:48:52.474113,08b900/eb7496,08b900/eb7496,"touch <button bound_box=0,1628,216,1756>Map</button>"
857,2024-05-28 09:49:04.533887,08b900/eb7496,08b900,kill_app
858,2024-05-28 09:49:16.550948,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
859,2024-05-28 09:49:34.164049,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
860,2024-05-28 09:49:47.932960,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
861,2024-05-28 09:50:02.942620,08b900/aa9f67,08b900/9ea42d,"touch <button bound_box=48,1471,312,1591>RU</button>"
862,2024-05-28 09:50:21.175532,08b900/9ea42d,08b900/eb7496,"set_text <input bound_box=312,100,1056,208>Name</input> dummy_user_input"
863,2024-05-28 09:50:41.870429,08b900/eb7496,08b900/eb7496,"scroll down <scrollbar bound_box=0,240,1080,384></scrollbar>"
864,2024-05-28 09:50:57.596688,08b900/eb7496,08b900/eb7496,"long_touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
865,2024-05-28 09:51:09.487831,08b900/eb7496,08b900/eb7496,"unselect <checkbox bound_box=969,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
866,2024-05-28 09:51:23.532128,08b900/eb7496,08b900/eb7496,"set_text <input bound_box=312,100,936,208>dummy_user_input</input> dummy_user_input"
867,2024-05-28 09:51:37.010754,08b900/eb7496,08b900/eb7496,"select <checkbox bound_box=969,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
868,2024-05-28 09:51:50.621975,08b900/eb7496,08b900/eb7496,"scroll up <scrollbar bound_box=0,240,1080,384></scrollbar>"
869,2024-05-28 09:52:03.857866,08b900/eb7496,08b900,kill_app
870,2024-05-28 09:52:15.687401,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
871,2024-05-28 09:52:40.055302,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
872,2024-05-28 09:52:53.925294,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
873,2024-05-28 09:53:08.197299,08b900/aa9f67,08b900/3abce7,"touch <p bound_box=48,1639,1032,1753>Sigiriya or Sinhagiri (Lion Rock Sinhala: ΰ·ΰ·ΰΆΰ·ΰΆ»ΰ·ΰΆΊ</p>"
874,2024-05-28 09:53:26.665309,08b900/3abce7,08b900/15a5cb,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
875,2024-05-28 09:53:42.570356,08b900/15a5cb,08b900/5b832b,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
876,2024-05-28 09:53:56.599837,08b900/5b832b,08b900/15a5cb,"touch <p bound_box=168,123,1080,188>Attractions</p>"
877,2024-05-28 09:54:18.973182,08b900/15a5cb,08b900/5b832b,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
878,2024-05-28 09:54:38.660912,08b900/5b832b,08b900/5b832b,"touch <button bound_box=0,1628,216,1756>Map</button>"
879,2024-05-28 09:54:52.350562,08b900/5b832b,08b900/15a5cb,"touch <p bound_box=168,123,1080,188>Bus stations</p>"
880,2024-05-28 09:55:14.973410,08b900/15a5cb,08b900/5b832b,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
881,2024-05-28 09:55:30.250274,08b900/5b832b,08b900/5b832b,"long_touch <button bound_box=48,1471,622,1528>Β© OpenStreetMap contributors</button>"
882,2024-05-28 09:55:42.991660,08b900/5b832b,08b900,kill_app
883,2024-05-28 09:55:55.582083,08b900,08b900/2f7de7,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
884,2024-05-28 09:56:14.821490,08b900/2f7de7,08b900/66c66d,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
885,2024-05-28 09:56:34.632858,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
886,2024-05-28 09:56:47.539597,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
887,2024-05-28 09:56:58.881807,08b900/aa9f67,08b900/aa9f67,"unselect <checkbox bound_box=969,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
888,2024-05-28 09:57:19.700790,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
889,2024-05-28 09:57:31.006256,08b900/aa9f67,08b900/aa9f67,"unselect <checkbox bound_box=594,240,945,384>Sports venues</checkbox>"
890,2024-05-28 09:57:48.456662,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
891,2024-05-28 09:58:03.262353,08b900/aa9f67,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
892,2024-05-28 09:58:23.075311,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
893,2024-05-28 09:58:41.128297,08b900/aa9f67,08b900/9ea42d,"touch <button bound_box=0,1485,1080,1605>List</button>"
894,2024-05-28 09:58:53.306660,08b900/9ea42d,08b900,kill_app
895,2024-05-28 09:59:05.028719,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
896,2024-05-28 09:59:22.488206,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
897,2024-05-28 09:59:35.931048,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
898,2024-05-28 09:59:50.748896,08b900/aa9f67,08b900/80bbe1,"select <checkbox bound_box=666,240,1017,384>Sports venues</checkbox>"
899,2024-05-28 10:00:09.853993,08b900/80bbe1,08b900/80bbe1,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
900,2024-05-28 10:00:29.120013,08b900/80bbe1,08b900/3abce7,"touch <p bound_box=48,1639,1032,1753>Sigiriya or Sinhagiri (Lion Rock Sinhala: ΰ·ΰ·ΰΆΰ·ΰΆ»ΰ·ΰΆΊ</p>"
901,2024-05-28 10:00:44.731861,08b900/3abce7,08b900/a30cbd,"touch <button bound_box=216,592,1080,649>Attractions</button>"
902,2024-05-28 10:00:59.848827,08b900/a30cbd,08b900/a30cbd,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
903,2024-05-28 10:01:13.228129,08b900/5b832b,08b900/9e4620,"touch <button bound_box=360,1278,720,1423>Route</button>"
904,2024-05-28 10:01:30.267900,08b900/9e4620,08b900/a30cbd,"touch <button bound_box=777,940,969,1084>YES</button>"
905,2024-05-28 10:01:42.600589,08b900/a30cbd,08b900/3abce7,"touch <button bound_box=432,1628,648,1756>Search</button>"
906,2024-05-28 10:01:53.686662,08b900/3abce7,08b900,kill_app
907,2024-05-28 10:02:04.957712,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
908,2024-05-28 10:02:33.982393,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
909,2024-05-28 10:02:46.597189,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
910,2024-05-28 10:02:57.655290,08b900/aa9f67,08b900/aa9f67,"select <checkbox bound_box=594,240,1017,384>Sports venues</checkbox>"
911,2024-05-28 10:03:13.851602,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
912,2024-05-28 10:03:27.023867,08b900/aa9f67,08b900/aa9f67,"touch <p bound_box=48,1074,447,1147>Sigiriya</p>"
913,2024-05-28 10:03:43.905518,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
914,2024-05-28 10:03:57.130704,08b900/aa9f67,08b900/9ea42d,"touch <button bound_box=312,1471,576,1591>EN</button>"
915,2024-05-28 10:04:14.050948,08b900/9ea42d,08b900/eb7496,"set_text <input bound_box=312,100,1056,208>Name</input> dummy_user_input"
916,2024-05-28 10:04:37.300336,08b900/eb7496,08b900/eb7496,"select <checkbox bound_box=594,240,945,384>Sports venues</checkbox>"
917,2024-05-28 10:04:53.822427,08b900/eb7496,08b900/9ea42d,"touch <button alt='ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββClear queryββββββ' bound_box=936,72,1056,237></button>"
918,2024-05-28 10:05:06.847336,08b900/9ea42d,08b900/aa9f67,"select <checkbox bound_box=666,240,1017,384>Sports venues</checkbox>"
919,2024-05-28 10:05:18.594254,08b900/aa9f67,08b900,kill_app
920,2024-05-28 10:05:29.856624,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
921,2024-05-28 10:05:46.168425,08b900/66c66d,08b900/2479ee,"touch <button bound_box=648,1628,864,1756>Route</button>"
922,2024-05-28 10:05:59.025018,08b900/2479ee,08b900/f1a4a2,"touch <button bound_box=460,940,969,1084>BUY THIS ITEM FOR </button>"
923,2024-05-28 10:06:12.023942,08b900/f1a4a2,08b900/f1a4a2,"touch <p bound_box=48,1074,447,1147>7.8773, 80.7004</p>"
924,2024-05-28 10:06:25.263596,08b900/f1a4a2,08b900/3abce7,"touch <button bound_box=432,1628,648,1756>Search</button>"
925,2024-05-28 10:06:49.213046,08b900/3abce7,08b900/3abce7,"scroll down <scrollbar bound_box=0,240,1080,1776></scrollbar>"
926,2024-05-28 10:07:04.028955,08b900/ad051d,08b900/f6e89f,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
927,2024-05-28 10:07:17.418010,08b900/f6e89f,08b900/f6e89f,"touch <button bound_box=864,1628,1080,1756>Menu</button>"
928,2024-05-28 10:07:34.768968,08b900/f6e89f,08b900/f6e89f,"touch <button bound_box=0,1278,540,1423>Save</button>"
929,2024-05-28 10:07:49.617610,08b900/ad051d,08b900/b5174a,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
930,2024-05-28 10:08:02.656053,08b900/b5174a,08b900/b5174a,"touch <button bound_box=648,1628,864,1756>Route</button>"
931,2024-05-28 10:08:14.315568,08b900/b5174a,08b900,kill_app
932,2024-05-28 10:08:25.751355,08b900,08b900/2f7de7,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
933,2024-05-28 10:08:45.757395,08b900/2f7de7,08b900/66c66d,"touch <button bound_box=585,919,777,1063>NO</button>"
934,2024-05-28 10:08:58.486182,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
935,2024-05-28 10:09:11.751580,08b900/aa9f67,08b900/62fddf,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
936,2024-05-28 10:09:24.860241,08b900/62fddf,08b900/62fddf,"select <checkbox bound_box=1041,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
937,2024-05-28 10:09:41.235587,08b900/62fddf,08b900/503264,"touch <button bound_box=0,1278,540,1423>Save</button>"
938,2024-05-28 10:09:54.895920,08b900/503264,08b900/503264,"touch <p bound_box=48,1074,577,1147>Gangaramaya Temple</p>"
939,2024-05-28 10:10:07.568093,08b900/503264,08b900/503264,"unselect <checkbox bound_box=594,240,945,384>Sports venues</checkbox>"
940,2024-05-28 10:10:28.690517,08b900/503264,08b900/503264,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
941,2024-05-28 10:10:42.689800,08b900/503264,08b900/8765a8,"touch <button bound_box=312,1471,576,1591>EN</button>"
942,2024-05-28 10:10:59.385879,08b900/8765a8,08b900/503264,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
943,2024-05-28 10:11:12.262149,08b900/503264,08b900/503264,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
944,2024-05-28 10:11:24.975923,08b900/bed209,08b900/bed209,"touch <p bound_box=48,1074,230,1147>Sigiriya</p>"
945,2024-05-28 10:11:36.767608,08b900/bed209,08b900,kill_app
946,2024-05-28 10:11:47.550940,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
947,2024-05-28 10:12:05.618697,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
948,2024-05-28 10:12:25.359150,08b900/aa9f67,08b900/aa9f67,"touch <p bound_box=48,1074,577,1147>Gangaramaya Temple</p>"
949,2024-05-28 10:12:40.531436,08b900/aa9f67,08b900/3abce7,"touch <p bound_box=48,1639,1032,1753>Sigiriya or Sinhagiri (Lion Rock Sinhala: ΰ·ΰ·ΰΆΰ·ΰΆ»ΰ·ΰΆΊ</p>"
950,2024-05-28 10:12:56.976209,08b900/3abce7,08b900/3abce7,"touch <button bound_box=648,1628,864,1756>Route</button>"
951,2024-05-28 10:13:12.035419,08b900/ad051d,08b900/e07759,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
952,2024-05-28 10:13:24.892778,08b900/e07759,08b900/e07759,"touch <button bound_box=0,1628,216,1756>Map</button>"
953,2024-05-28 10:13:41.117751,08b900/e07759,08b900/9e4620,"touch <button bound_box=360,1278,720,1423>Route</button>"
954,2024-05-28 10:13:55.014185,08b900/9e4620,08b900/9e4620,"touch <button bound_box=460,940,969,1084>BUY THIS ITEM FOR </button>"
955,2024-05-28 10:14:09.544387,08b900/ad051d,08b900/ad051d,"touch <p bound_box=168,123,912,188>Tourist Attractions</p>"
956,2024-05-28 10:14:30.684833,08b900/ad051d,08b900/e07759,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
957,2024-05-28 10:14:53.064708,08b900/e07759,08b900/e07759,"touch <button alt='Attribution icon. Activate to show attribution dialog.' bound_box=276,1533,339,1596></button>"
958,2024-05-28 10:15:06.102424,08b900/e07759,08b900,kill_app
959,2024-05-28 10:15:17.625848,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
960,2024-05-28 10:15:35.400231,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
961,2024-05-28 10:15:48.840058,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
962,2024-05-28 10:15:59.985878,08b900/aa9f67,08b900/aa9f67,"unselect <checkbox bound_box=594,240,945,384>Sports venues</checkbox>"
963,2024-05-28 10:16:16.782365,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
964,2024-05-28 10:16:41.402962,08b900/aa9f67,08b900/aa9f67,"touch <button bound_box=0,1278,360,1423>Remove</button>"
965,2024-05-28 10:16:57.708517,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
966,2024-05-28 10:17:11.266705,08b900/aa9f67,08b900/80bbe1,"select <checkbox bound_box=594,240,945,384>Sports venues</checkbox>"
967,2024-05-28 10:17:28.316729,08b900/80bbe1,08b900/80bbe1,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
968,2024-05-28 10:17:42.787654,08b900/80bbe1,08b900/dde246,"select <checkbox bound_box=1041,240,1080,384>Waterfalls of Sri Lanka</checkbox>"
969,2024-05-28 10:18:00.274828,08b900/dde246,08b900/dde246,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
970,2024-05-28 10:18:16.719258,08b900/dde246,08b900/6f7db0,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
971,2024-05-28 10:18:39.782401,08b900/6f7db0,08b900,kill_app
972,2024-05-28 10:18:50.586296,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
973,2024-05-28 10:19:06.751240,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
974,2024-05-28 10:19:19.319770,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
975,2024-05-28 10:19:32.932152,08b900/aa9f67,08b900/3abce7,"touch <p bound_box=48,1639,1032,1745>World's End is located within the Horton Plains Na</p>"
976,2024-05-28 10:19:49.306735,08b900/3abce7,08b900/3abce7,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
977,2024-05-28 10:20:03.743482,08b900/ad051d,08b900/e07759,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
978,2024-05-28 10:20:16.899964,08b900/e07759,08b900/e07759,"touch <button bound_box=0,1628,216,1756>Map</button>"
979,2024-05-28 10:20:45.837664,08b900/e07759,08b900/9e4620,"touch <button bound_box=360,1278,720,1423>Route</button>"
980,2024-05-28 10:20:58.482210,08b900/9e4620,08b900/9e4620,"touch <button bound_box=460,924,969,1068>BUY THIS ITEM FOR </button>"
981,2024-05-28 10:21:11.186159,08b900/ad051d,08b900/ad051d,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
982,2024-05-28 10:21:30.398433,08b900/ad051d,08b900/e07759,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
983,2024-05-28 10:21:43.931033,08b900/e07759,08b900/e07759,"touch <button bound_box=48,1471,622,1528>Β© OpenStreetMap contributors</button>"
984,2024-05-28 10:21:55.412266,08b900/e07759,08b900,kill_app
985,2024-05-28 10:22:07.101796,08b900,08b900/2f7de7,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
986,2024-05-28 10:22:23.436686,08b900/2f7de7,08b900/66c66d,"touch <button bound_box=585,919,777,1063>NO</button>"
987,2024-05-28 10:22:37.167653,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
988,2024-05-28 10:22:52.869920,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
989,2024-05-28 10:23:07.347316,08b900/aa9f67,08b900/aa9f67,"touch <button bound_box=720,1278,1080,1423>Edit</button>"
990,2024-05-28 10:23:25.796380,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
991,2024-05-28 10:23:39.866398,08b900/aa9f67,08b900/3abce7,"touch <p bound_box=48,1639,1032,1753>Sigiriya or Sinhagiri (Lion Rock Sinhala: ΰ·ΰ·ΰΆΰ·ΰΆ»ΰ·ΰΆΊ</p>"
992,2024-05-28 10:24:02.234280,08b900/3abce7,08b900/e91690,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
993,2024-05-28 10:24:19.532112,08b900/e91690,08b900/600ed0,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
994,2024-05-28 10:24:36.123555,08b900/600ed0,08b900/e91690,"touch <p bound_box=168,123,1080,188>Attractions</p>"
995,2024-05-28 10:24:58.425083,08b900/e91690,08b900/600ed0,"long_touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
996,2024-05-28 10:25:14.488588,08b900/600ed0,08b900/600ed0,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
997,2024-05-28 10:25:28.782103,08b900/600ed0,08b900,kill_app
998,2024-05-28 10:25:42.285940,08b900,08b900/66c66d,intent am start com.aerostatmaps.srilanka/com.aerostatmaps.srilanka.activities.StartActivity
999,2024-05-28 10:26:03.379617,08b900/66c66d,08b900/aa9f67,"touch <button bound_box=216,1628,432,1756>Attractions</button>"
1000,2024-05-28 10:26:18.850883,08b900/aa9f67,08b900/aa9f67,"touch <button alt='Showing a Map created with Mapbox. Scroll by dragging two fingers. Zoom by pinching two fingers.' bound_box=0,72,1080,1608></button>"
1001,2024-05-28 10:26:34.382860,08b900/aa9f67,08b900/2479ee,"touch <button bound_box=648,1628,864,1756>Route</button>"
1002,2024-05-28 10:26:56.659298,08b900/2479ee,08b900/6f3178,"touch <button bound_box=460,940,969,1084>BUY THIS ITEM FOR </button>"
1003,2024-05-28 10:27:14.226654,08b900/6f3178,08b900/6f3178,"touch <p bound_box=48,1074,447,1147>7.8773, 80.7004</p>"
1004,2024-05-28 10:27:39.732855,08b900/6f3178,08b900/9e4620,"touch <p bound_box=168,123,912,188>Tourist Attractions</p>"
|