-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
209 lines (198 loc) · 42.8 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>
Visit SriLanka
</title>
<link rel="icon" href="res/favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/home.min.css">
<link rel="stylesheet" href="css/about.min.css">
<link rel="stylesheet" href="css/explore.min.css">
<!--Import font for bannerText-->
<link href="https://fonts.googleapis.com/css?family=Poppins&display=swap" rel="stylesheet">
</head>
<body>
<!--Preloader div-->
<div class="preloader">
<div class="loader-container">
<div class="loader">
</div>
</div>
<div class="preloader-Text">
Loading.. Please wait
</div>
</div>
<!--Navigation Bar-->
<div id="navBar" class="navBar">
<div class="navBar-heading">
Sri Lanka
</div>
<ul class="navBar-links">
<li><a onclick="scrollWindow('home');">Home</a></li>
<li><a onclick="scrollWindow('about2');typeAboutSriLanka();" >About</a></li>
<li><a onclick="scrollWindow('explore'); typeExplore('Explore');">Explore</a></li>
</ul>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</div>
<!--Content Body-->
<div id="home" class="content-body">
<div class="slideShow-items fade">
<img class="slide" style="opacity: 0;"src="res/lightHouse.jpg" >
</div>
<div class="welcomeScreen">
<!-- Slideshow container -->
<div class="slideShow">
<div id="slide1" class="slideShow-items fade">
<img class="slide" src="res/beach3.jpg">
</div>
<div id="slide2" class="slideShow-items fade">
<img class="slide" src="res/railRoad.jpg">
</div>
<div id="slide3" class="slideShow-items fade">
<img class="slide" src="res/colombo.jpg">
</div>
<div id="slide4" class="slideShow-items fade">
<img class="slide" src="res/beach3.jpg" >
</div>
<div id="slide5" class="slideShow-items fade">
<img class="slide" src="res/temple2.jpg" >
</div>
<div id="slide6" class="slideShow-items fade">
<img class="slide" src="res/lightHouse.jpg" >
</div>
<!-- Next and previous buttons -->
<a class="prev" onclick="prevSlide(-1)">❮</a>
<a class="next" onclick="nextSlide(1)">❯</a>
</div>
</div>
<!--Introduction-->
<div class="srilanka-description">
<div class="introduction-heading">
Welcome to Sri Lanka
</div><br>
<img src="res/ayubowan.png" alt="">
Endless beaches, timeless ruins, welcoming people, oodles of elephants, rolling surf, cheap prices, fun trains, famous tea and flavourful food make Sri Lanka irresistible.
</div>
</div>
<!--About Page-->
<div id="about2" class="about">
<div id="about-head"class="about-heading">
About Sri Lanka
</div>
<a onclick="loadPages(1);">
<div class="about-container-small">
<image href="/about/wild.html" class="about-image image-small" src="res/Wild.jpg"></image>
<div class="about-text">
WILD
</div>
</div></a>
<a onclick="loadPages(2);">
<div class="about-container-small">
<image class="about-image image-small" src="res/Thrills.jpg"></image>
<div class="about-text">
THRILLS
</div>
</div></a>
<a onclick="loadPages(3);">
<div class="about-container-small">
<image class="about-image image-small" src="res/Bliss.jpg"></image>
<div class="about-text">
BLISS
</div>
</div></a>
<a onclick="loadPages(4);">
<div class="about-container-small">
<image class="about-image image-small" src="res/Essence1.jpg"></image>
<div class="about-text">
ESSENCE
</div>
</div></a>
<a onclick="loadPages(5);">
<div class="about-container-small">
<image class="about-image image-small" src="res/Festive.jpg"></image>
<div class="about-text">
FESTIVE
</div>
</div></a>
<a onclick="loadPages(6);">
<div class="about-container-big">
<image class="about-image image-big" src="res/Scenic.jpg"></image>
<div class="about-text" style="left:4.386vw; width:85%;">
SCENIC
</div>
</div></a>
<a onclick="loadPages(7);">
<div class="about-container-medium">
<image class="about-image image-medium" src="res/Heritage.jpg"></image>
<div class="about-text" style="left:1.389vw; width:86%;">
HERITAGE
</div>
</div></a>
<a onclick="loadPages(8);">
<div class="about-container-medium">
<image class="about-image image-medium" src="res/Pristine.jpg"></image>
<div class="about-text" style="left:1.389vw; width:86%;">
PRISTINE
</div>
</div></a>
<div id="aboutDetailsContainterParent" class="about-details">
<button class="about-details-button" onclick="hideAboutDetails();">Back</button>
<div id="aboutDetailsContainter"class="about-details ">
</div>
</div>
</div>
<br><br>
<!--Explore page-->
<div id="explore">
<div class="heading">
Explore
</div>
<div id="explore-head" class="explore row">
<div class="column province-intro">
Sights and scenes from the nine provinces of Sri Lanka sourced from the nine provincial councils.
<br>Attractions that are ancient, scenic, sacred, and alive and varying like the sun kissed beaches, mist covered mountains, roaring waterfalls, virgin forestlands haunted by the elephants and leopards, are just one click away.
<br><br>Select a province to explore.
</div>
<div class="map-container column">
<svg class="map" width="250" height="500" viewBox="0 0 497 879" fill="none" xmlns="http://www.w3.org/2000/svg">
<path id="pathId9" onclick="showProvinces(8);typeExplore('Uva Province');" d="M298.5 510V511M298.5 511V524V538.5V551L300.5 562L304.5 571C305 573.167 306.1 577.8 306.5 579C306.9 580.2 308 584.5 308.5 586.5L306.5 590L298.5 592L293.5 595L292 596.5C292 598 292 601.2 292 602C292 602.8 293.667 607.333 294.5 609.5C294.5 610.667 294.5 613.2 294.5 614C294.5 614.8 294.5 617.333 294.5 618.5V624.5L296.5 627L290.5 628.5L286 632.5L284.5 634V639.5L283 645L277 646C275.833 646.167 273.2 646.7 272 647.5C270.8 648.3 268.167 650.833 267 652L264.5 654L261 657.5L257 656.5L260 661.5L262.5 667.5L264.5 673L262.5 682.5C261.667 683.833 260 686.7 260 687.5C260 688.3 263 690.833 264.5 692L269.5 694C269.5 695.333 269.5 698.1 269.5 698.5C269.5 698.9 268.5 702 268 703.5L264.5 705.5C264.667 706.5 265.2 708.7 266 709.5C267 710.5 269 712.5 270.5 712.5C271.7 712.5 276.333 712.5 278.5 712.5C278.333 711.5 278.3 709.5 279.5 709.5C280.7 709.5 283.667 708.167 285 707.5C285 708.167 285 709.7 285 710.5C285 711.5 283 718.5 283 719.5C283 720.3 280.667 726.167 279.5 729C279.167 729.5 278.2 730.7 277 731.5C275.8 732.3 273.167 734.5 272 735.5V741.5V745L269.5 748.5L266 752.5C266.667 754.167 268 757.7 268 758.5C268 759.3 269 765.167 269.5 768V772V777C270.833 777.167 273.6 777.7 274 778.5C274.5 779.5 275.5 780 277 781C278.2 781.8 281.5 785.333 283 787V789L288 790C289.167 790 291.7 789.8 292.5 789C293.3 788.2 296.833 785 298.5 783.5L302.5 782.5L301.5 777V772H303.5L308.5 770.5L312.5 766.5H318L325.5 764.5H329L334 766.5L336.5 770.5H341.5H345.5L348.5 775L351.5 778.5L354.5 782.5L357 781L361.5 777L365.5 774L373 772L379 770.5C379.667 769.667 381.2 768 382 768C382.8 768 385.667 765.667 387 764.5H393.5H396.5H401.5C401.833 763.333 402.5 760.8 402.5 760C402.5 759 403.5 755 404 754.5C404.4 754.1 404.833 751.333 405 750L408 744.5L416 740.5L419.5 737.5L427.5 735.5L431.5 734L433.5 728.5V721.5V719L431.5 713C432.167 710.667 433.5 705.9 433.5 705.5C433.5 705.1 434.167 700.333 434.5 698V691.5L433.5 685.5L434.5 673C434.833 670.833 435.6 666.3 436 665.5C436.4 664.7 437.5 657.167 438 653.5V649L434.5 644.5L433.5 638.5L430.5 635V633V628L429 625L424 622.5L415 617.5L411.5 611V606L409.5 602L411.5 596.5L415 591V584.5L413 582.5L411.5 579V574L407.5 572.5L404.5 565L404 561L403.5 558.5L403 553.5L403.5 548.5V542.5L403 539.5H400.5L397.5 542L394 545.5L389 549L384.5 551V556L381 561L378 565L374 567L372 568.5L370.5 571C370.5 572.667 370.5 576.2 370.5 577C370.5 577.8 368.167 581 367 582.5L363 584.5L358.5 581L356 575.5L353.5 571L352 563.5L348.5 561L346 557C345.667 555.667 345 552.6 345 551C345 549 346 545 345 544.5C344.2 544.1 342.333 541 341.5 539.5L345 533C345.5 532.167 346.6 530.3 347 529.5C347.4 528.7 346.5 524.833 346 523C345.167 522.167 343.5 520.3 343.5 519.5C343.5 518.7 342.833 515.833 342.5 514.5L341.5 512H334.5C333.667 513 331.8 515.1 331 515.5C330.2 515.9 325 518.333 322.5 519.5L319 523L313.5 524L306.5 521.5L304.5 518L302.5 512V508.5L298.5 503L296.5 506.5L297.5 508.5L298.5 511Z" stroke="black"/>
<path id="pathId10" onclick="showProvinces(0);typeExplore('Nothern Province');"d="M17.5 165.5C16.7 165.5 13.1667 164.833 11.5 164.5L10.5 165.5L11.5 168V170.5L16.5 173.5L25 175.5L31.5 177L38.5 182L44.5 185L49 191L52 196L57 199L62 198L63 197L59.5 193C58.6667 192.167 57 190.3 57 189.5C57 188.7 54.6667 187.167 53.5 186.5L52 185L53.5 183.5H55.5L58.5 182C58.1667 181.5 57.4 180.1 57 178.5C56.6 176.9 54.5 176.833 53.5 177L50 173.5L44.5 170.5L37.5 168L31.5 166.5L26.5 165.5H17.5Z" fill="#C4C4C4" stroke="black"/>
<path id="pathId5" onclick="showProvinces(4);typeExplore('Central Province');"d="M181.5 554V547.5L183 549L186 550.5L194 552V545.5L199.5 539L205 536.5L207.5 532L203.5 526.5V521.5V517L207.5 512L205 507V501L202 496.5L201.5 491.5L202.5 487L199.5 483C199 481 198.3 476.7 199.5 475.5C200.7 474.3 200 472.667 199.5 472L194 468L192 462.5L189.5 457.5C190.667 456.333 193.2 453.7 194 452.5C194.8 451.3 197 451 198 451H207.5H213.5V449.5L216.5 445L220 440L222.5 436L226 430.5L229 425L232.5 424V421L236 418.5L243 417.5H246L247.5 418.5L250 422.5L253 425L259 424L261.5 421L263 425.5L261.5 432L259 438.5L255.5 445V452.5L254 457.5L247.5 461C246.5 463.667 244.5 469.3 244.5 470.5V477L243 481.5L250 483C251.833 484.333 255.9 487.2 257.5 488C259.1 488.8 261.833 488.333 263 488C265.333 487 270.5 484.6 272.5 483C274.5 481.4 275 480 275 479.5L279 478.5C282.333 478.667 289.4 479.1 291 479.5C292.6 479.9 295.333 481 296.5 481.5V485L298.5 490.5C297 491.333 294 493.2 294 494C294 494.8 295.667 496.667 296.5 497.5L294 504.5L292.5 516L294 528V539V554L296.5 559.5L298.5 570L301.5 576V584.5V586.5H295.5L291 590.5L288.5 595V603L290.5 609V617V623.5L285.5 625.5C284.5 626.667 282.2 629.3 281 630.5C279.8 631.7 278.833 634.333 278.5 635.5V641L274.5 642.5L267.5 644.5L265.5 646.5L259 651L257 652.5H255L250.5 651L248.5 654.5V658.5L250.5 661.5H255L258 665L259 668.5L258 676C257.667 678.167 257 682.8 257 684C257 685.2 255.667 686.5 255 687L246 691L229.5 694.5L215 693L205.5 690C202.5 689.333 196.1 687.8 194.5 687C192.9 686.2 191.5 684.667 191 684L188 680.5V677L193 675L194.5 671.5V667.5L191 665H188L181 661.5L176.5 657V651V644.5L179 639.5H183V632.5V623.5L179 617L181 612L183 611L191 609C192.667 608.167 196.1 606.2 196.5 605C197 603.5 199 602.5 200.5 601.5C201.7 600.7 201 599.5 200.5 599L198 595C196.833 593.667 194.5 590.7 194.5 589.5V586.5V582L191 580H186V576V570L185 569C183 568.333 179 566.8 179 566C179 565.2 175.333 562.333 173.5 561V559L179 557.5H183L181.5 554Z" fill="#C4C4C4" stroke="black"/>
<path id="pathId7" onclick="showProvinces(6);typeExplore('Western Province');"d="M52 576H44.5L42.5 578.5V583.5V587L37.5 592.5L40 598.5L42.5 604C42.8333 606 43.6 610.2 44 611C44.4 611.8 45.5 617 46 619.5C46.3333 621.333 47 625.3 47 626.5C47 627.7 48.6667 630.333 49.5 631.5V637.5L47 645.5L42.5 651.5L46 657.5V668.5L47 676L51.5 687L57 700L62 709.5V713.5L65 720L69 726.5L72 732.5L73.5 742V750L76 757V762H78.5H82L87 765L91 769L96 771L105 774.5L114 777H121.5L129.5 778L134.5 780L139 783L143.5 785.5V783L142.5 778L141 774.5L142.5 771L147 767L153 765L160 763.5L158 760.5L151.5 753L145.5 745.5L142.5 742L141 734.5H145.5V729L142.5 725.5L134.5 722L129.5 718.5V713.5C129.5 712.7 127.833 710.5 127 709.5L122 706.5L118 700L116 695L114 684.5L116 681L122 678.5L120.5 676L118 671.5L116 668V661.5L120.5 659L127 651.5L124 645.5L116 641.5L113 637.5C112.5 635.667 111.5 631.6 111.5 630C111.5 628.4 110.5 626 110 625L111.5 621L118 614L116 609L110 607L108.5 604C108.5 601.667 109 596.2 109 595C109 593.8 111.5 592 111.5 591.5L117 590.5V586.5L116.5 585L119.5 580.5L118 578.5H116L114 572L110 567.5L108.5 566L105.5 567.5L101 570.5L95 572H91L84 569L78.5 570.5H74L69 574L67 576L63.5 578.5H59L52 576Z" fill="#C4C4C4" stroke="black"/>
<path id="pathId8" onclick="showProvinces(7);typeExplore('Southern Province');"d="M84.5 783.5L80.5 774.5L77.5 772V768.5V764.5H79.5L84.5 766.5L89 769.5L92.5 773L95 774.5C96.6667 774.833 100.2 775.7 101 776.5C101.8 777.3 104.667 777.5 106 777.5L109 779.5L114.5 781L121.5 779.5H126.5L133 782L137 785L142 789H146L147 785L146 782L144.5 777.5L146 773L150 769.5L154 766.5L159 768.5H163.5C164.3 768.5 166.833 770.833 168 772L172.5 774H177.5L184.5 775.5L187 776.5L191 779.5H194L197.5 777.5L200 774H205.5L213 773L217.5 774V775.5C216.667 775.833 214.9 776.7 214.5 777.5C214.1 778.3 211.333 779.167 210 779.5L213 783L219 784L223 785L226 789V793H230L236 795L244.5 797L250.5 801H258H264.5L268 804.5L269 806H273.5H277L280 808L286.5 809.5H289.5L293.5 806L290.5 803L286.5 799L285 793H286.5L290.5 792L292.5 790.5L299 787L304.5 784L306 782L304.5 779.5V776.5L308.5 773L317 770L320.5 768.5H325H329L331 770L334 773L339.5 774H344V778.5L348 784L349.5 785.5H354.5H358.5L361.5 782L364 778.5L367.5 777.5L371 776.5C372 776 374.2 775 375 775C375.8 775 379.333 773.667 381 773L384.5 772L389 767.5H392L396 768.5H402.5H405L406.5 766V763V758V754.5L409 752L410 748L414 745.5L419 742.5L423.5 739.5L428.5 738H434L435 733.5L437 735.5L441.5 738L444 741L449.5 742.5L452.5 745.5C453.3 746.3 455.167 746.5 456 746.5L457.5 749V750.5V752L453.5 755.5L447 759.5L442.5 763L440.5 765H435L434 768.5V772L431 775L424.5 778.5L421.5 781H416.5L414 784L412 788V790L408 793L404 794L400.5 795.5L397.5 797L396 801L392 804.5L385.5 809.5L380 812.5L374 815C372 816.167 367.7 818.8 366.5 820C365.3 821.2 362 820.5 360.5 820C358.833 820.333 355.3 821.2 354.5 822L349.5 823.5L345.5 822L343.5 823.5L340.5 827.5L336.5 829L329 831L323 834.5C321.333 835 317.9 836.2 317.5 837C317.1 837.8 312 837.333 309.5 837C307.5 836.833 303.3 836.6 302.5 837C301.5 837.5 301 838 299 841C298.6 842.2 296.833 841.5 296 841L289.5 842L284 845L277.5 847C275.167 847.333 270.3 848 269.5 848C268.7 848 263.833 848.667 261.5 849L259 851.5L257.5 855.5L255 859H252C251.6 859 248.167 860 246.5 860.5L245 864L242.5 868L239 869H228.5L222.5 870C220.333 871.5 215.9 874.5 215.5 874.5C215.1 874.5 214.667 876.5 214.5 877.5C212.833 877.667 209.2 877.9 208 877.5C206.8 877.1 203.5 875.333 202 874.5C200.5 874.167 197.2 873.5 196 873.5H190H182L179.5 871L175.5 869L169 871L164.5 868L162.5 866H157L153 864L150.5 861.5L146.5 860.5H139.5L133.5 859V855.5L132.5 851.5H125.5L122 849L119 846.5C117.833 845.667 115.4 843.8 115 843C114.6 842.2 111.5 841.667 110 841.5L104.5 835.5C103.833 834 102.5 830.8 102.5 830C102.5 829.2 100.5 825.667 99.5 824H98L97 821.5L94.5 818L91.5 813.5L90.5 808.5L89 806L86.5 802.5V798.5V791.5L84.5 783.5Z" fill="#C4C4C4" stroke="black"/>
<path id="pathId2" onclick="showProvinces(1);typeExplore('Nothern Central Province');"d="M216 225L212.881 223.663C212.637 223.559 212.445 223.362 212.346 223.115L211.842 221.854C211.649 221.371 211.858 220.821 212.323 220.589L214.34 219.58C214.446 219.527 214.56 219.493 214.677 219.48L219 219H225H229.917C229.972 219 230.027 218.995 230.082 218.986L232.852 218.525C232.95 218.508 233.045 218.477 233.134 218.433L240 215L244 212.5L247.527 210.296C247.676 210.202 247.848 210.15 248.024 210.144L252.5 210L257.404 210.49C257.468 210.497 257.531 210.509 257.592 210.528L262.4 211.97C262.467 211.99 262.531 212.017 262.592 212.05L267.895 214.943C267.965 214.981 268.03 215.027 268.089 215.081L273.5 220L278.207 224.707C278.395 224.895 278.5 225.149 278.5 225.414V230.314C278.5 230.437 278.477 230.559 278.433 230.673L276 237L274.544 242.826C274.515 242.941 274.507 243.06 274.52 243.179L274.984 247.358C274.995 247.452 275.019 247.544 275.055 247.632L277.5 253.5L279.44 257.865C279.48 257.954 279.506 258.049 279.518 258.147L279.966 261.731C279.988 261.907 279.963 262.086 279.893 262.249L278.5 265.5L277.564 268.776C277.522 268.923 277.514 269.078 277.542 269.229L278.46 274.28C278.486 274.425 278.544 274.562 278.63 274.682L281 278L283 281.5L286 286L287.868 289.269C287.955 289.421 288 289.592 288 289.766V292.5V295.929C288 295.976 288.003 296.024 288.01 296.07L288.453 299.17C288.483 299.384 288.583 299.583 288.736 299.736L290.869 301.869C290.956 301.955 291.058 302.026 291.17 302.075L295.5 304L298.13 305.315C298.367 305.433 298.547 305.641 298.631 305.893L298.895 306.684C298.963 306.889 298.963 307.111 298.895 307.316L298.586 308.242C298.53 308.411 298.429 308.562 298.296 308.679L294.572 311.937C294.524 311.979 294.48 312.025 294.441 312.076L291.105 316.365C291.036 316.454 290.982 316.555 290.946 316.663L290 319.5L289.076 321.809C289.026 321.935 288.951 322.049 288.855 322.145L287.615 323.385C287.539 323.461 287.451 323.525 287.355 323.573L284.5 325L282.798 325.851C282.605 325.948 282.448 326.105 282.351 326.298L281.549 327.902C281.516 327.967 281.491 328.036 281.473 328.106L281.061 329.757C281.021 329.917 281.021 330.083 281.061 330.243L281.447 331.788C281.482 331.928 281.547 332.058 281.636 332.17L283.389 334.361C283.462 334.453 283.519 334.557 283.556 334.669L284.425 337.276C284.474 337.423 284.557 337.557 284.667 337.667L286.95 339.95C286.983 339.983 287.019 340.014 287.057 340.043L288.87 341.403C288.956 341.467 289.052 341.517 289.154 341.551L291.896 342.465C291.965 342.488 292.032 342.519 292.094 342.556L294.223 343.834C294.403 343.942 294.545 344.104 294.627 344.297L295.957 347.401C295.986 347.467 296.021 347.529 296.063 347.588L298.301 350.722C298.43 350.902 298.615 351.035 298.828 351.098L303.394 352.468C303.464 352.489 303.537 352.503 303.61 352.508L310.413 352.994C310.471 352.998 310.528 353.007 310.584 353.021L320.5 355.5L326.924 356.488C326.975 356.496 327.026 356.5 327.076 356.5H331.586C331.851 356.5 332.105 356.605 332.293 356.793L333.5 358L335.851 360.821C335.949 360.939 336.073 361.032 336.213 361.095L340.306 362.914C340.434 362.971 340.572 363 340.712 363H344.465C344.799 363 345.111 363.167 345.297 363.445L345.867 364.3C345.954 364.432 346.01 364.582 346.028 364.738L346.975 372.791C346.992 372.929 346.979 373.069 346.938 373.202L345.249 378.69C345.105 379.158 345.32 379.66 345.758 379.879L347.709 380.855C347.898 380.949 348.112 380.981 348.321 380.947L353.469 380.088C353.801 380.033 354.082 379.815 354.219 379.508L355.933 375.651C355.977 375.551 356.005 375.444 356.015 375.335L356.485 370.165C356.495 370.056 356.523 369.949 356.567 369.849L358.425 365.67C358.474 365.558 358.544 365.456 358.631 365.369L362 362L363.885 360.115C363.961 360.039 364.049 359.975 364.145 359.927L366.789 358.606C367.391 358.305 368.112 358.672 368.223 359.336L368.486 360.918C368.495 360.973 368.5 361.028 368.5 361.083V366.5L368 375.5L367.5 385L367 398.5V406.5L367.961 413.706C367.986 413.898 368.067 414.078 368.193 414.225L371 417.5L372.936 420.404C372.979 420.468 373.014 420.536 373.04 420.608L374.436 424.33C374.478 424.442 374.5 424.561 374.5 424.681V427.086C374.5 427.351 374.395 427.605 374.207 427.793L373.364 428.636C373.136 428.864 372.811 428.968 372.492 428.915L370.212 428.535C370.072 428.512 369.939 428.459 369.821 428.381L367.082 426.555C367.028 426.518 366.977 426.477 366.93 426.43L365.793 425.293C365.605 425.105 365.351 425 365.086 425H363.303C363.105 425 362.912 425.058 362.748 425.168L360 427L357.706 428.835C357.571 428.943 357.466 429.084 357.402 429.245L355.5 434L354.5 437.5L353.051 441.846C353.017 441.948 353 442.055 353 442.162V448.377C353 448.459 353.01 448.54 353.03 448.619L353.978 452.413C353.993 452.471 354.002 452.53 354.006 452.589L354.5 460L355 468V475L354.514 481.034C354.505 481.153 354.474 481.269 354.424 481.377L352.5 485.5L350 490.5L348.791 492.514C348.611 492.816 348.285 493 347.934 493H346.803C346.605 493 346.412 492.942 346.248 492.832L342 490L339 487.5L335.564 485.046C335.521 485.015 335.477 484.988 335.43 484.965L333.711 484.106C333.572 484.036 333.419 484 333.264 484H330.162C330.055 484 329.948 483.983 329.846 483.949L327.28 483.093C327.097 483.032 326.936 482.92 326.816 482.769L325.093 480.616C325.031 480.539 324.981 480.454 324.945 480.362L324.098 478.245C324.034 478.084 323.929 477.943 323.794 477.835L321.639 476.111C321.547 476.038 321.443 475.981 321.331 475.944L318.848 475.116C318.623 475.041 318.38 475.048 318.16 475.136L316.179 475.928C316.061 475.976 315.935 476 315.807 476H313.5H309.5L303 476.5L296.5 477L281.5 476.5L277.335 476.037C277.118 476.013 276.898 476.061 276.711 476.174L274.645 477.413C274.549 477.471 274.463 477.544 274.392 477.63L272.093 480.389C272.031 480.462 271.959 480.527 271.879 480.58L267.665 483.39C267.556 483.463 267.434 483.513 267.306 483.539L265.097 483.981C265.033 483.994 264.967 484 264.901 484H261H254.162C254.055 484 253.948 483.983 253.846 483.949L251.351 483.117C251.124 483.041 250.932 482.887 250.81 482.683L249.547 480.578C249.516 480.526 249.489 480.471 249.468 480.415L248.064 476.67C248.022 476.558 248 476.439 248 476.319V472.5L248.5 468L248.954 463.912C248.984 463.648 249.116 463.407 249.323 463.241L251.394 461.585C251.464 461.529 251.542 461.482 251.625 461.447L254.727 460.117C254.905 460.041 255.057 459.914 255.165 459.753L255.913 458.63C255.971 458.544 256.014 458.449 256.043 458.35L256.979 455.074C256.993 455.025 257.003 454.974 257.01 454.923L257.5 451L259 444L261 438.5L265 429.5L266.914 425.194C266.971 425.066 267 424.928 267 424.788V423V422.035C267 421.701 266.833 421.389 266.555 421.203L264.144 419.596C264.049 419.533 263.943 419.486 263.832 419.458L262 419L259.687 418.615C259.274 418.546 258.862 418.741 258.654 419.105L257.288 421.496C257.11 421.808 256.779 422 256.42 422H254.236C254.081 422 253.928 421.964 253.789 421.894L252.229 421.115C252.079 421.039 251.95 420.928 251.854 420.789L247.592 414.633C247.531 414.545 247.456 414.467 247.37 414.403L245.881 413.286C245.64 413.105 245.33 413.042 245.038 413.115L243.606 413.473C243.536 413.491 243.467 413.516 243.402 413.549L240.5 415L237.5 416.5L234.5 418L232 419.5L229.5 421L226.337 422.356C226.119 422.449 225.942 422.616 225.836 422.828L224.5 425.5L222.5 429L220.5 432L218 436L215.563 439.412C215.521 439.471 215.486 439.533 215.457 439.599L214 443L213.099 445.704C213.034 445.897 212.913 446.065 212.75 446.187L211.267 447.3C211.094 447.43 210.883 447.5 210.667 447.5H204.681C204.561 447.5 204.442 447.522 204.33 447.564L200.5 449L195.083 451.462C195.028 451.487 194.97 451.507 194.912 451.522L191.493 452.377C191.183 452.454 190.855 452.379 190.61 452.175L188.161 450.134C188.055 450.046 187.968 449.936 187.906 449.813L186.08 446.16C186.027 446.054 185.993 445.94 185.98 445.823L185.5 441.5L184.5 437L183 431.5L181.619 427.817C181.542 427.612 181.399 427.437 181.213 427.32L177.564 425.04C177.521 425.013 177.481 424.984 177.443 424.951L174.153 422.131C174.052 422.045 173.969 421.939 173.91 421.819L172.042 418.083C172.014 418.028 171.991 417.97 171.974 417.911L171 414.5L170.552 412.26C170.518 412.09 170.529 411.913 170.584 411.748L171.478 409.067C171.492 409.023 171.511 408.979 171.532 408.936L172.468 407.064C172.489 407.021 172.508 406.977 172.522 406.933L172.869 405.893C172.953 405.641 172.933 405.367 172.815 405.13L172.54 404.581C172.513 404.527 172.482 404.476 172.446 404.428L171.24 402.821C171.086 402.615 170.858 402.476 170.605 402.434L168 402L165.203 401.534C165.069 401.512 164.941 401.462 164.827 401.389L158.09 397.058C158.03 397.019 157.975 396.975 157.924 396.924L150.104 389.104C150.035 389.035 149.956 388.977 149.871 388.93L143.632 385.571C143.544 385.524 143.451 385.49 143.354 385.471L141 385L138.67 384.534C138.557 384.511 138.45 384.47 138.351 384.411L136.168 383.101C136.057 383.034 135.96 382.947 135.882 382.843L134.642 381.189C134.548 381.065 134.428 380.964 134.289 380.894L129.5 378.5L123 375.5L116 373L109.5 371.5L106.15 370.543C106.051 370.514 105.956 370.471 105.87 370.413L104.822 369.714C104.615 369.576 104.467 369.366 104.406 369.125L104.049 367.696C104.017 367.567 103.959 367.445 103.879 367.338L102.543 365.557C102.514 365.519 102.483 365.483 102.45 365.45L100.645 363.645C100.549 363.549 100.435 363.474 100.309 363.424L98 362.5L95 361L92 359.5L89.613 358.068C89.538 358.023 89.4574 357.988 89.3733 357.964L86.1347 357.038C86.0453 357.013 85.9529 357 85.8599 357H84.3333C84.117 357 83.9064 357.07 83.7333 357.2L82 358.5L80.1298 359.903C80.0438 359.967 79.948 360.017 79.846 360.051L79.0863 360.305C78.727 360.424 78.3308 360.331 78.063 360.063L77.7702 359.77C77.5962 359.596 77.4925 359.364 77.4788 359.119L77.0039 350.571C77.0013 350.524 76.9953 350.477 76.9861 350.43L76 345.5L74.5477 340.659C74.5161 340.554 74.4674 340.454 74.4036 340.365L72 337L69.6104 333.655C69.5374 333.552 69.4844 333.438 69.4539 333.316L68.5897 329.859C68.5318 329.627 68.5587 329.383 68.6654 329.169L69.8944 326.711C69.9639 326.572 70.0647 326.452 70.1889 326.358L76 322L80.5 318L86.341 312.159C86.4457 312.054 86.5258 311.928 86.5756 311.788L88.9417 305.163C88.9803 305.055 89 304.941 89 304.827V300.5V296.351C89 296.124 89.0773 295.903 89.2191 295.726L91 293.5L92.3788 291.662C92.4588 291.555 92.5167 291.433 92.549 291.304L92.9701 289.619C92.99 289.54 93 289.459 93 289.377V287V283V277.59C93 277.53 92.9946 277.47 92.9839 277.411L92.0256 272.141C92.0086 272.047 91.9785 271.957 91.9361 271.872L90.5318 269.064C90.5106 269.021 90.4925 268.977 90.4775 268.933L90.4387 268.816C90.2229 268.169 90.7049 267.5 91.3874 267.5H91.8074C91.9346 267.5 92.0607 267.524 92.1788 267.572L94.5 268.5L97.3461 269.449C97.448 269.483 97.5548 269.5 97.6623 269.5H101.338C101.445 269.5 101.552 269.483 101.654 269.449L106 268L110 267L116 265.5L120 264.5L124 263.5L126.2 262.62C126.395 262.542 126.61 262.527 126.814 262.578L127.967 262.867C128.299 262.95 128.565 263.196 128.674 263.521L128.949 264.346C128.983 264.448 129 264.555 129 264.662V267.5V270.838C129 270.945 129.017 271.052 129.051 271.154L129.925 273.776C129.974 273.923 130.057 274.057 130.167 274.167L130.707 274.707C130.895 274.895 131.149 275 131.414 275H133.917C133.972 275 134.027 275.005 134.082 275.014L136.684 275.447C136.889 275.482 137.079 275.579 137.227 275.727L139 277.5L140.934 279.917C140.978 279.972 141.016 280.032 141.047 280.095L141.894 281.789C141.964 281.928 142 282.081 142 282.236V284.5V285.764C142 285.919 142.036 286.072 142.106 286.211L142.394 286.789C142.464 286.928 142.565 287.048 142.689 287.142L144.295 288.346C144.43 288.447 144.587 288.512 144.754 288.536L147.874 288.982C147.958 288.994 148.042 288.995 148.126 288.986L152.5 288.5L156.422 287.519C156.474 287.506 156.525 287.489 156.574 287.468L159.754 286.105C159.915 286.036 160.055 285.926 160.16 285.786L162.879 282.162C162.959 282.055 163.017 281.933 163.049 281.804L164 278L164.441 275.797C164.479 275.603 164.574 275.426 164.714 275.286L166.304 273.696C166.432 273.568 166.593 273.477 166.769 273.433L168.332 273.042C168.443 273.014 168.549 272.968 168.644 272.904L169.555 272.297C169.833 272.111 170 271.799 170 271.465V270.5V269.162C170 269.055 170.017 268.948 170.051 268.846L170.392 267.826C170.462 267.615 170.6 267.433 170.785 267.31L171.918 266.555C171.972 266.518 172.023 266.477 172.07 266.43L173.5 265L175.5 263L176.93 261.57C176.977 261.523 177.028 261.482 177.082 261.445L178.335 260.61C178.444 260.537 178.566 260.487 178.694 260.461L180.903 260.019C180.967 260.007 181.033 260 181.099 260H183.167C183.383 260 183.594 260.07 183.767 260.2L185.5 261.5L187.428 262.946C187.476 262.982 187.527 263.013 187.581 263.04L189.38 263.94C189.46 263.98 189.544 264.009 189.631 264.026L192 264.5L194.304 264.961C194.433 264.987 194.567 264.987 194.696 264.961L196.778 264.544C196.924 264.515 197.062 264.453 197.181 264.364L199 263L201.5 261L204.451 258.442C204.496 258.403 204.543 258.368 204.594 258.338L206 257.5L207.545 256.728C207.831 256.585 208.031 256.313 208.084 255.998L208.916 251.002C208.969 250.687 209.169 250.415 209.455 250.272L213 248.5L217.683 245.69C217.887 245.568 218.041 245.376 218.117 245.149L220 239.5L222 235L223.331 231.894C223.439 231.642 223.439 231.358 223.331 231.106L222.144 228.337C222.051 228.119 221.884 227.942 221.672 227.836L216 225Z" fill="#C4C4C4" stroke="black" stroke-width="2" mask="url(#path-11-inside-1)"/>
<path id="pathId1" onclick="showProvinces(0);typeExplore('Nothern Province');"d="M58 19L59 17L65.5 12.5L68.5 10L74 6.5L79.5 5.5H88L94.5 6.5L108 5L123 1.5L130 0.5L131.5 1.5L134 5.5L139.5 11.5L145.5 18L149.5 24L150.5 27L152 30L158.5 36L162.5 39.5L166 45L173.5 52L179 55L185 58.5L189 61L192.5 63.5L196 69L199.5 72L206 76L210.5 79L212 81L213.5 81.5L218 85L223 89.5L227 91L231.5 96L235 101L238 104.5L247.5 112.5L257.5 120.5L261 123L264 130.5L269.5 141.5L271.5 147.5L281.5 170L286.5 177.5L291 184V186L287 190L277.5 196L270 198L260 199L254 200.5L249 203.5L248.5 206.5L247.5 209.5L243 211.5L236 215.5L231 218H220.5H215L212 218.5L210.5 220L209 223L212 225L217 227.5L220.5 230.5L221 232.5L219.5 235.5L217 241.5L215.5 244.5L213.5 246L209.5 248L207.5 250L206.5 254.5L204 257L198.5 261L195.5 263H193L190.5 262L188.5 261L186.5 259.5L184.5 258L182.5 257.5L178.013 258.5L174.5 261.5L173 263L171 264L169 267L168 269.5L167.5 271.5L164 272.5L162.5 274.5V276.5V280L161 283L156.5 286L147 287.5L144 286L143.5 282.5L142.5 280L140 275.5L137.75 273.5H135H132.5L131 270.5V267.5V263.5V261L130 260.5L128 261L127 261.5L122.5 262.5L117.5 263.5L109.5 266L103.5 267L100 267.5H97L94.5 266L91.5 264H90.5L88.5 266.5L89 270L91 275L91.5 280V284.5V288L90.5 291.5L88.5 294.5L86.5 295.5L83 294L73.5 290L67.5 288.5L62.5 287L60.5 286.5L60 283.5L61.5 280L65 274.5L66 270V264.5L65.5 260L66 255.5L66.5 253.5L68 251.5V249L66 245L61.5 239.5L62 236.5L63.5 233.5L60.5 230L61 226.5L62.5 223L64 219.5L63.5 216L62 213.5L58 208.5L54.5 204V202.5H56.5L59.5 204H61L63.5 201.5L67.5 199L72 197L76.5 194L80 188L84 186.5L87 185.5L91 177.5L95.5 170L96 169L96.5 167V163.5V161V159.5L97 159L98 158.5L99.5 157L100 155.5V152.5V149L101 146.5L103 143.5L104 140L103.5 136L103 132.5V129V126.5L104 124.5L105 122L104 120.5L101 119L97.5 117L95.5 115.5L93.5 112.5L91 107.5L90 105L90.5 101.5L96 98.5L101.5 94.5L109.5 91L114.5 87.5L116.5 84.5L117.5 81L117 78L116.5 75L111.5 71L106.5 67L102 62L94.5 57.5L92 54L92.5 51.5L94 50.5L96 49.5L96.5 48.5L95.5 47.5L90 46L83.5 43.5L81.5 41L81 38L75.5 35.5L69 33.5L66.5 32.5L63 27L58 19Z" fill="#C4C4C4" stroke="black" stroke-width="2" mask="url(#path-12-inside-2)"/>
<path id="pathId4" onclick="showProvinces(3);typeExplore('North Western Province');"d="M62 288.5H58.5H56.5L54.5 290C53.5 290 51.4 290.1 51 290.5L49 292.5V296L48 299.5V306V310C48 311.5 47 311.5 46.5 312.5C46.1 313.3 44.6667 314.833 44 315.5V320V327.5C44 328.3 43.6667 330.833 43.5 332L43 337C42.8333 339.5 42.4 344.8 42 346C41.6 347.2 39.5 348.167 38.5 348.5L36.5 354L35 358L31.5 359.5L36 362.5L36.5 367L36 370L38.5 374.5L40 376.5V381L38.5 386.5L36 392.5L32 395V398L36 401L41 407V411.5V417C40.5 419.5 39.5 424.7 39.5 425.5C39.5 426.3 38.8333 430.167 38.5 432C38.3333 434 37.9 438.3 37.5 439.5C37.1 440.7 37.3333 443.333 37.5 444.5C38 446.667 39.1 451.2 39.5 452C40 453 40 458.5 41 459.5C41.8 460.3 41.3333 462.5 41 463.5L37.5 466L35 463.5V459.5V455C35 454.6 34 452.167 33.5 451L33 446.5L35 442.5V436L36 431.5L36.5 422.5L35 417H33.5L30.5 415H26.5L24.5 414L22 409.5V402.5L20.5 398L21 394L22 388L21 384L20.5 379.5L22 377.5V374.5V370L24.5 367L27.5 365V360.5L25.5 355V348.5L26.5 342.5L28.5 339.5V336.5H27.5L25.5 339.5C24.5 341 22.4 344.1 22 344.5C21.6 344.9 20.5 346.667 20 347.5L19 353L18 359L15 362.5L12.5 364V368.5L13.5 371.5V375.5C13.1667 376.833 12.5 379.6 12.5 380C12.5 380.4 11.5 381.833 11 382.5C11.5 384 12.5 387.2 12.5 388V394L13.5 401V405.5L14.5 411L17.5 414L20.5 420L23 424.5V432L25 438L27 444.5L29.5 451L31 457L32 461V467L33 472.5V477L34 481.5L35 486V490.5L34.5 494.5L33 499L32 500.5V505V510.5C32 510.9 32.6667 514.333 33 516L34 520.5L34.5 524.5L36 531.5V535.5L37 540L40 549.5L41 554.5L41.5 561.5L42.5 566.5L43.5 570.5L48 572.5L50.5 574H57.5L63 574.5L66.5 571.5L68.5 569L72 566.5L76 565.5L80.5 564.5L84.5 566.5L88.5 568L90 569.5L95 569L100.5 566.5L106.5 561.5H110.5L113 563.5L114 569L118 574.5C119.667 574.667 123.3 574.9 124.5 574.5C125.7 574.1 128 573 129 572.5L131.5 569.5L135 566.5L138.5 564.5L146 563.5H149.5L152.5 559L153 554.5V551L154.5 549.5L159 548L163.5 549.5L168.5 551L172 554.5L175.5 556H179V553.5L178 549.5L177 546.5V542.5L180.5 540.5L182.5 544.5L186.5 546.5L189 547.5L191.5 544.5L192.5 540.5C193.167 539.5 194.5 537.4 194.5 537C194.5 536.6 196.167 535.167 197 534.5L202.5 534L203.5 533L202.5 530.5L201.5 525.5C201 524.167 200 521.3 200 520.5C200 519.7 199.333 517.833 199 517V514.5L201.5 512L202.5 510V506.5L201.5 502C200.667 500.667 199 497.9 199 497.5C199 497.1 198 495.667 197.5 495C198 493.833 199 491.4 199 491V488L197.5 484.5L195.5 482L194.5 479.5V474.5L192.5 470.5V468.5L190 466.5L185.5 461.5L183.5 457.5L185.5 456L187.5 454V452C187.167 451.833 186.3 451.3 185.5 450.5C184.7 449.7 183.833 448.167 183.5 447.5V444.5C183.5 443.5 182 440 182 439V436C182 435.2 180.667 432.333 180 431L178 429L173.5 425.5L170.5 423.5L169.5 418L168 413.5L169 410L170.5 405.5C169.667 405 167.8 404 167 404H164.5L161 402.5L157 398.5C156.5 398 154.5 396.5 152.5 395.5C150.5 394.5 150.5 394 149.5 393C148.7 392.2 146.833 390.667 146 390L143 389L139.5 388L136 386.5L133.5 383.5L130 380.5H124.5C123.5 380.333 121.2 379.7 120 378.5C118.8 377.3 117.167 378 116.5 378.5L115 375.5H112L108 374.5L104.5 372.5C103.833 371.5 102.4 369.3 102 368.5C101.6 367.7 100.833 366.5 100.5 366L97.5 365H94L90.5 362.5L87 359L84.5 360.5L82.5 362.5L79 364H76L75 360.5L74 356.5V351L72.5 346L71.5 341.5L70 338.5L67 332.5L66 329.5V326.5L67 325.5L70 323.5L72.5 321L76.5 318.5L78.5 315.5L81.5 313.5L83.5 310L86.5 306.5V302.5V298.5L85 297L81.5 295.5L77.5 293.5L72.5 291.5L68 290L64 288.5H62Z" fill="#C4C4C4" stroke="black"/>
<path id="pathId3" onclick="showProvinces(2);typeExplore('Eastern Province');"d="M256 208H251V207V205.5L252.5 203.5L258 201L265.5 199H271.5L278.5 197L283.5 194L288 190.5L293.5 188C293.667 188.833 294.1 190.8 294.5 192C295 193.5 298 195.5 298.5 196C299 196.5 300.5 199 300.5 200V204.5C300.5 205.3 301.167 207.167 301.5 208C302.333 208.833 304.1 210.7 304.5 211.5C304.9 212.3 308.333 215.167 310 216.5L316.5 219.5C317.667 219.667 320.2 220.2 321 221C322 222 321.5 223 321.5 223.5C321.5 224 324 230 324 231C324 231.8 326 231.333 327 231C327.833 232.333 329.5 235.2 329.5 236C329.5 237 331 240.5 331 241C331 241.5 339 247.5 339.5 248C339.9 248.4 342.333 250.5 343.5 251.5V257L346 259.5L349 265L352.5 269.5L352 274.5V280L352.5 282.5L354.5 285.5L355 287.5V291.5L354.5 292.5L352 294V292C351.667 291.5 351 290.3 351 289.5C351 288.5 349.5 286.5 348.5 285.5C347.7 284.7 347.167 285.833 347 286.5L345 288.5V292.5C345.333 292.833 346.2 293.6 347 294C348 294.5 348 295.5 348 296.5C348 297.5 347.5 299 347 299.5C346.6 299.9 346.167 303.667 346 305.5V308H352C352.8 308 355.333 309 356.5 309.5H360C360.667 310.167 362.2 311.5 363 311.5H364.5L363 307L364.5 301.5L368 298L371.5 295.5L374 296.5C375 297.833 377.1 300.7 377.5 301.5C378 302.5 380 307 380 308C380 308.8 382 314 383 316.5L384.5 327C385.167 329.333 386.6 334.2 387 335C387.4 335.8 388.167 340.667 388.5 343C389.333 345 391 349.2 391 350V357C391 358.2 392.333 360.5 393 361.5L395.5 364C396 365.5 397.1 368.7 397.5 369.5C397.9 370.3 398.333 372.167 398.5 373V378.5V385.5L402 388.5L406 390.5C406 392.5 406.1 396.6 406.5 397C406.9 397.4 406.333 402.167 406 404.5L410 408.5L415.5 413.5C416.333 414.333 418.1 416.2 418.5 417C418.9 417.8 420.667 419.333 421.5 420C421.833 421.167 422.5 423.6 422.5 424C422.5 424.4 424.833 425.833 426 426.5L429 429.5C429.8 430.3 430.667 431.833 431 432.5V434.5C430.333 436 429 439.1 429 439.5V444L431 447.5L435 452.5L442 458.5L448 460.5V465C449.333 465.5 452.1 466.5 452.5 466.5C452.9 466.5 455.667 468.167 457 469L461 472.5L463 477.5L465 481L468 485.5L469.5 487.5L472 490.5L475 496.5C476 498.333 478 502.1 478 502.5C478 503 479.5 506.5 479.5 507V513.5V520.5V527.5L481.5 533L485.5 540L488 546L490.5 551C491.167 553 492.6 557.1 493 557.5C493.4 557.9 493.5 562.667 493.5 565L494.5 573.5L493.5 580C493.667 582.5 493.9 587.7 493.5 588.5C493 589.5 492.5 590.5 492.5 591.5C492.5 592.3 490.5 592.5 489.5 592.5C488.667 593.5 486.7 595.6 485.5 596C484.3 596.4 485 598.833 485.5 600L487 603L488 607.5L490.5 606.5L492.5 603V606.5V613.5V617L494.5 622L496.5 632.5V638.5C495.333 640.833 493 645.6 493 646C493 646.5 491 649.5 490.5 650C490 650.5 490 653 490.5 654C490.9 654.8 491 656 491 656.5L489.5 660V664V668L485 669.5L488 671.5L487 675.5L486 677C485.333 677.5 484 678.7 484 679.5C484 680.3 485.333 684.833 486 687L485 691L482 694C481.6 694.4 480.833 696.833 480.5 698C480.167 698.833 479.5 700.8 479.5 702V705L474.5 708V712L475.5 716L473.5 719.5C473 720.167 471.8 721.6 471 722C470 722.5 471 725.5 471 727V731L467 732.5C465.833 733 463.4 734.3 463 735.5C462.5 737 462 738.5 462 739C462 739.5 461 744.5 461.5 744.5C461.9 744.5 460 745.5 459 746L455 744.5L445 738L440 734C438.833 732.5 436.5 729.3 436.5 728.5V724L435.5 718.5V712L438 706V697V684.5C438 683.3 439 677.333 439.5 674.5C439.667 671.667 440 665.9 440 665.5C440 665 441.5 659 441.5 658.5V651L440 647.5C439.333 645.833 437.9 642.3 437.5 641.5C437.1 640.7 436.333 638.5 436 637.5C435.5 637 434.3 635.9 433.5 635.5C432.5 635 434.5 632 434.5 631.5V626V622C434 621.667 432.8 620.8 432 620C431.2 619.2 429.333 619.667 428.5 620C426.333 619.333 421.8 617.9 421 617.5C420.2 617.1 418.667 615.667 418 615L414 607.5L413.5 602.5L414 599.5C415.167 597.333 417.6 592.9 418 592.5C418.4 592.1 418.167 589 418 587.5V582L415 580V574.5L412 571.5L408.5 566.5L407 562.5C406.667 561.167 406 558.2 406 557V549.5V543.5C406 542.7 406.667 541.833 407 541.5L408.5 538.5L404.5 536L403 533C402.333 533.333 400.9 534.2 400.5 535C400.1 535.8 399.667 537 399.5 537.5L393.5 541.5L387.5 544.5L382 548C381.167 548.833 379.5 550.7 379.5 551.5V558.5L376.5 561.5C376 562 371.5 563.5 370.5 563.5C369.7 563.5 368.167 565.5 367.5 566.5C367.167 567.5 366.5 569.6 366.5 570C366.5 570.4 367.167 573.167 367.5 574.5L365 580H361.5L360 576.5L358.5 573C358 571.667 357 568.8 357 568C357 567 355.5 564.5 355 563.5C354.5 562.5 351 559 350 558.5C349.2 558.1 349 557.333 349 557V550.5C349 549.7 348.333 546.5 348 545L346 540.5V538.5L349 535C349.333 534.167 350 532.3 350 531.5V527.5L348 521.5C347.167 520.167 345.5 517.3 345.5 516.5C345.5 515.7 345.167 512.5 345 511C344.667 510.5 343.7 509.5 342.5 509.5C341.3 509.5 337 508.833 335 508.5L333 510.5L330.5 512.5L326 515C324.5 516 321.4 518.1 321 518.5C320.6 518.9 316.833 520 315 520.5H310L308 518.5L306 515C305.667 514 305 511.7 305 510.5V506.5L302.5 502.5L298 497L300 493V489L299 486.5L300 479H302.5C303.5 479 307.5 477.5 308 477.5H315.5H320L322 479C322.667 479.667 324.1 481.2 324.5 482C324.9 482.8 325.667 484.667 326 485.5H329.5C330.667 485.667 333.2 486.1 334 486.5C334.8 486.9 337 489 338 490L342.5 493L345.5 495.5L350 496V493L353 489C354.333 487 357 482.8 357 482C357 481.2 358 478.667 358.5 477.5L357 472V466.5V459L354.5 447L355.5 441.5L357.5 435.5L360 431.5L361 429H364.5L369 431.5L372.5 432.5L377.5 431C377.167 429.5 376.5 426.3 376.5 425.5C376.5 424.7 375.167 421.5 374.5 420C373.167 418.5 370.4 415.3 370 414.5C369.6 413.7 369.5 411.167 369.5 410V404V396.5V390.5V382.5V373.5L371 364V358L368.5 355.5H364.5L362.5 358L358.5 361.5C357.333 363.333 354.7 367.1 353.5 367.5C352.3 367.9 353 370.667 353.5 372L355 376L350.5 378.5H348.5V376L349.5 372L348.5 365V361L346 360H341L336.5 358L333 354.5H330L320.5 353.5L312.5 351.5C310.167 351.167 305.4 350.5 305 350.5C304.5 350.5 298.5 346.5 298.5 346C298.5 345.6 296.167 343.5 295 342.5L293 340C291.5 339.333 288.2 337.9 287 337.5C285.8 337.1 285.5 335.667 285.5 335L283.5 329.5L282.5 327.5C283.667 327.167 286.2 326.4 287 326C287.8 325.6 289.667 324.5 290.5 324C291 322.5 292.2 319.4 293 319C293.8 318.6 294.667 316.167 295 315L298.5 312.5L302 311.5V307.5L301 304L298.5 302L294 300L292 299L291 294.5L289.5 288L288 285C286.167 282.5 282.4 277.5 282 277.5C281.6 277.5 280.167 274.167 279.5 272.5V267.5L282.5 263.5V257.5L281 253L277.5 249L275.5 244L277.5 238.5L281 232L282.5 228.5L281 225.5L277.5 221.5C275.667 219.833 271.9 216.4 271.5 216C271.1 215.6 267.333 212.833 265.5 211.5L260.5 209C259.7 208.6 257.167 208.167 256 208Z" fill="#C4C4C4" stroke="black"/>
<path id="pathId6" onclick="showProvinces(5);typeExplore('Sabaragamuwa Province');"d="M132 575L125 578.5L123 581.5L120.5 584L119.5 586L120.5 588V590.5L119.5 591.5L116.5 594H113.5L112 597V602.5L113.5 605L115.5 606.5L119.5 608.5L123 611.5L120.5 617.5L116.5 620.5L114.5 625V630.5L116.5 636L119.5 639L122 640L126.5 644L129.5 645V649V654L127.5 658.5L122 661.5L119.5 663L120.5 668.5L125 675L126.5 680.5L125 682.5L119.5 685L117.5 687L119.5 693L122 700L125 705L129.5 708L132.5 709.5V714.5L133.5 718.5H136L141 721.5C143 722.833 147.2 725.6 148 726C149 726.5 149 728 149.5 729.5C149.9 730.7 148 732.667 147 733.5V737V740L151 746L156 752L161.5 759.5L164.5 766.5C167.333 767.833 173.1 770.7 173.5 771.5C173.9 772.3 177 771.833 178.5 771.5H183C184.167 772.333 186.6 774 187 774H191C192.667 773.167 196.2 771.5 197 771.5C197.8 771.5 200.667 769.833 202 769H209C209.8 769 213.667 770.667 215.5 771.5H220.5L221.5 774L220.5 778L215.5 780H221.5L225.5 782C226.333 783.5 228.2 786.7 229 787.5C229.8 788.3 229.333 789.5 229 790H232L235.5 791.5L241 793L246.5 795L252.5 797H259.5L264 798L267.5 799L271 802L274 803.5L278.5 805H285.5H286.5L285.5 802L282.5 795L280.5 791.5L276 784.5L273 782C271.167 781 267.2 778.8 266 778C264.8 777.2 264.167 775 264 774L265 769L262.5 759.5C262.167 757.833 261.5 754.3 261.5 753.5C261.5 752.7 262.167 750.833 262.5 750L266 747.5C266.5 746.167 267.5 743.4 267.5 743V739.5L269.5 731L273 726.5L279 720V715.5C278 715.833 275.8 716.5 275 716.5C274 716.5 272 715.5 271 715.5H267.5L265 712.5H261.5L260.5 708.5L258.5 702.5L260.5 701.5L265 700.5V697.5L262.5 694L257 690.5L254 693L247.5 695L241.5 697.5L234.5 696C232.333 696.5 227.9 697.5 227.5 697.5H222L208.5 695L201 693L195.5 690.5L189.5 687.672L188 687L186.5 682.5L185 679L186.5 674L189.5 672L191 670L186.5 667.5L182.5 666L177.5 664L175.5 659.5L173.5 654V645L172 642L173.5 640L177.5 637.5L180 636V633.5V628.5L178.5 625L177.5 620.5L176.5 616V611.5L178.5 608.5L182.5 606.5H186.5L192.5 605C193.667 604.5 196.3 603.2 197.5 602C198.7 600.8 198 599.5 197.5 599L195 597L192.5 595.5L191 591.5V588L189.5 584L187.5 583H185L182.5 580.5V576V572L181 571L177.5 569L173.5 566L170.5 564V560L168.5 555.5L165.5 554.5L163 552.5H158.5H157L156 555.5C155.833 556.5 155.4 558.8 155 560C154.6 561.2 154.167 563.833 154 565L150 568H140.5L135 570L132 575Z" fill="#C4C4C4" stroke="black"/>
</svg>
</div>
<div id="showProvincesContainer" class="showProvinces-Container">
<div class="showProvinces-Heading">
<div class="comboBox">
<select name="placesComboBox" id="placesComboBox">
</select>
</div>
<Button class="showProvinces-BackButton" onclick="closePlaces();">Back</Button>
</div>
<div id="places-Container">
</div>
</div>
</div>
</div>
<br>
</body>
<footer>
<div>
<image class="clipart" src="res/banner.jpg"></image>
</div>
</footer>
<script src="js/App.min.js"></script>
<footer>
</footer>
</html>