-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorder.html
More file actions
1358 lines (1354 loc) · 273 KB
/
order.html
File metadata and controls
1358 lines (1354 loc) · 273 KB
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
<!DOCTYPE html>
<html lang="en">
<style>
* {
top: 100;
left: 100;
padding: 0;
margin: 0;
width: 8px;
height: 8px;
}
.row {
position: absolute;
width: 336px;
}
.square {
position: absolute;
}
.square:hover {
z-index: 1;
border: solid 1px black;
outline: solid 1px white;
}
.info{
color: black;
position: absolute;
background-color: white;
font-family: monospace;
z-index: 2;
border-radius: 8px;
height: 20px;
font-size: 16px;
width: 100px;
pointer-events: none;
text-align: center;
border: solid 1px black;
outline: solid 1px white;
}
</style>
<script>
function onTileHovered(x, y) {
const pos = document.getElementById("pos");
pos.innerText = "[" + (x + -569) + ", " + (y + 327) + "]";
pos.style.left = x * 8 + 16 + "px";
pos.style.top = y * 8 - 6 + "px";
}
</script>
<body>
<div id="pos" class="info">[999,999]</div>
<div class='row' style='top: 0px;'><a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=327&px=20' onMouseOver='onTileHovered(0, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=327&px=20' onMouseOver='onTileHovered(1, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=327&px=20' onMouseOver='onTileHovered(2, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=327&px=20' onMouseOver='onTileHovered(3, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=327&px=20' onMouseOver='onTileHovered(4, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=327&px=20' onMouseOver='onTileHovered(5, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=327&px=20' onMouseOver='onTileHovered(6, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=327&px=20' onMouseOver='onTileHovered(7, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=327&px=20' onMouseOver='onTileHovered(8, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=327&px=20' onMouseOver='onTileHovered(9, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=327&px=20' onMouseOver='onTileHovered(10, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=327&px=20' onMouseOver='onTileHovered(11, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=327&px=20' onMouseOver='onTileHovered(12, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=327&px=20' onMouseOver='onTileHovered(13, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=327&px=20' onMouseOver='onTileHovered(14, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=327&px=20' onMouseOver='onTileHovered(15, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=327&px=20' onMouseOver='onTileHovered(16, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=327&px=20' onMouseOver='onTileHovered(17, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=327&px=20' onMouseOver='onTileHovered(18, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=327&px=20' onMouseOver='onTileHovered(19, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=327&px=20' onMouseOver='onTileHovered(20, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=327&px=20' onMouseOver='onTileHovered(21, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=327&px=20' onMouseOver='onTileHovered(22, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=327&px=20' onMouseOver='onTileHovered(23, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 192px; ' class='square' href='https://new.reddit.com/r/place/?cx=-545&cy=327&px=20' onMouseOver='onTileHovered(24, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 200px; ' class='square' href='https://new.reddit.com/r/place/?cx=-544&cy=327&px=20' onMouseOver='onTileHovered(25, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 208px; ' class='square' href='https://new.reddit.com/r/place/?cx=-543&cy=327&px=20' onMouseOver='onTileHovered(26, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 216px; ' class='square' href='https://new.reddit.com/r/place/?cx=-542&cy=327&px=20' onMouseOver='onTileHovered(27, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 224px; ' class='square' href='https://new.reddit.com/r/place/?cx=-541&cy=327&px=20' onMouseOver='onTileHovered(28, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 232px; ' class='square' href='https://new.reddit.com/r/place/?cx=-540&cy=327&px=20' onMouseOver='onTileHovered(29, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 240px; ' class='square' href='https://new.reddit.com/r/place/?cx=-539&cy=327&px=20' onMouseOver='onTileHovered(30, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 248px; ' class='square' href='https://new.reddit.com/r/place/?cx=-538&cy=327&px=20' onMouseOver='onTileHovered(31, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 256px; ' class='square' href='https://new.reddit.com/r/place/?cx=-537&cy=327&px=20' onMouseOver='onTileHovered(32, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 264px; ' class='square' href='https://new.reddit.com/r/place/?cx=-536&cy=327&px=20' onMouseOver='onTileHovered(33, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 272px; ' class='square' href='https://new.reddit.com/r/place/?cx=-535&cy=327&px=20' onMouseOver='onTileHovered(34, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 280px; ' class='square' href='https://new.reddit.com/r/place/?cx=-534&cy=327&px=20' onMouseOver='onTileHovered(35, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 288px; ' class='square' href='https://new.reddit.com/r/place/?cx=-533&cy=327&px=20' onMouseOver='onTileHovered(36, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 296px; ' class='square' href='https://new.reddit.com/r/place/?cx=-532&cy=327&px=20' onMouseOver='onTileHovered(37, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 304px; ' class='square' href='https://new.reddit.com/r/place/?cx=-531&cy=327&px=20' onMouseOver='onTileHovered(38, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 312px; ' class='square' href='https://new.reddit.com/r/place/?cx=-530&cy=327&px=20' onMouseOver='onTileHovered(39, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 320px; ' class='square' href='https://new.reddit.com/r/place/?cx=-529&cy=327&px=20' onMouseOver='onTileHovered(40, 0)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 328px; ' class='square' href='https://new.reddit.com/r/place/?cx=-528&cy=327&px=20' onMouseOver='onTileHovered(41, 0)'></a>
</div><div class='row' style='top: 8px;'><a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=328&px=20' onMouseOver='onTileHovered(0, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=328&px=20' onMouseOver='onTileHovered(1, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=328&px=20' onMouseOver='onTileHovered(2, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=328&px=20' onMouseOver='onTileHovered(3, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=328&px=20' onMouseOver='onTileHovered(4, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=328&px=20' onMouseOver='onTileHovered(5, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=328&px=20' onMouseOver='onTileHovered(6, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=328&px=20' onMouseOver='onTileHovered(7, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=328&px=20' onMouseOver='onTileHovered(8, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=328&px=20' onMouseOver='onTileHovered(9, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=328&px=20' onMouseOver='onTileHovered(10, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=328&px=20' onMouseOver='onTileHovered(11, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=328&px=20' onMouseOver='onTileHovered(12, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=328&px=20' onMouseOver='onTileHovered(13, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=328&px=20' onMouseOver='onTileHovered(14, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=328&px=20' onMouseOver='onTileHovered(15, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=328&px=20' onMouseOver='onTileHovered(16, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=328&px=20' onMouseOver='onTileHovered(17, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=328&px=20' onMouseOver='onTileHovered(18, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=328&px=20' onMouseOver='onTileHovered(19, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=328&px=20' onMouseOver='onTileHovered(20, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=328&px=20' onMouseOver='onTileHovered(21, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=328&px=20' onMouseOver='onTileHovered(22, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=328&px=20' onMouseOver='onTileHovered(23, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 192px; ' class='square' href='https://new.reddit.com/r/place/?cx=-545&cy=328&px=20' onMouseOver='onTileHovered(24, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 200px; ' class='square' href='https://new.reddit.com/r/place/?cx=-544&cy=328&px=20' onMouseOver='onTileHovered(25, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 208px; ' class='square' href='https://new.reddit.com/r/place/?cx=-543&cy=328&px=20' onMouseOver='onTileHovered(26, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 216px; ' class='square' href='https://new.reddit.com/r/place/?cx=-542&cy=328&px=20' onMouseOver='onTileHovered(27, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 224px; ' class='square' href='https://new.reddit.com/r/place/?cx=-541&cy=328&px=20' onMouseOver='onTileHovered(28, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 232px; ' class='square' href='https://new.reddit.com/r/place/?cx=-540&cy=328&px=20' onMouseOver='onTileHovered(29, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 240px; ' class='square' href='https://new.reddit.com/r/place/?cx=-539&cy=328&px=20' onMouseOver='onTileHovered(30, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 248px; ' class='square' href='https://new.reddit.com/r/place/?cx=-538&cy=328&px=20' onMouseOver='onTileHovered(31, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 256px; ' class='square' href='https://new.reddit.com/r/place/?cx=-537&cy=328&px=20' onMouseOver='onTileHovered(32, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 264px; ' class='square' href='https://new.reddit.com/r/place/?cx=-536&cy=328&px=20' onMouseOver='onTileHovered(33, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 272px; ' class='square' href='https://new.reddit.com/r/place/?cx=-535&cy=328&px=20' onMouseOver='onTileHovered(34, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 280px; ' class='square' href='https://new.reddit.com/r/place/?cx=-534&cy=328&px=20' onMouseOver='onTileHovered(35, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 288px; ' class='square' href='https://new.reddit.com/r/place/?cx=-533&cy=328&px=20' onMouseOver='onTileHovered(36, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 296px; ' class='square' href='https://new.reddit.com/r/place/?cx=-532&cy=328&px=20' onMouseOver='onTileHovered(37, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 304px; ' class='square' href='https://new.reddit.com/r/place/?cx=-531&cy=328&px=20' onMouseOver='onTileHovered(38, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 312px; ' class='square' href='https://new.reddit.com/r/place/?cx=-530&cy=328&px=20' onMouseOver='onTileHovered(39, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 320px; ' class='square' href='https://new.reddit.com/r/place/?cx=-529&cy=328&px=20' onMouseOver='onTileHovered(40, 1)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 328px; ' class='square' href='https://new.reddit.com/r/place/?cx=-528&cy=328&px=20' onMouseOver='onTileHovered(41, 1)'></a>
</div><div class='row' style='top: 16px;'><a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=329&px=20' onMouseOver='onTileHovered(0, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=329&px=20' onMouseOver='onTileHovered(1, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=329&px=20' onMouseOver='onTileHovered(2, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=329&px=20' onMouseOver='onTileHovered(3, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=329&px=20' onMouseOver='onTileHovered(4, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=329&px=20' onMouseOver='onTileHovered(5, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=329&px=20' onMouseOver='onTileHovered(6, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=329&px=20' onMouseOver='onTileHovered(7, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=329&px=20' onMouseOver='onTileHovered(8, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=329&px=20' onMouseOver='onTileHovered(9, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=329&px=20' onMouseOver='onTileHovered(10, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=329&px=20' onMouseOver='onTileHovered(11, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=329&px=20' onMouseOver='onTileHovered(12, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=329&px=20' onMouseOver='onTileHovered(13, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=329&px=20' onMouseOver='onTileHovered(14, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=329&px=20' onMouseOver='onTileHovered(15, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=329&px=20' onMouseOver='onTileHovered(16, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=329&px=20' onMouseOver='onTileHovered(17, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=329&px=20' onMouseOver='onTileHovered(18, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=329&px=20' onMouseOver='onTileHovered(19, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=329&px=20' onMouseOver='onTileHovered(20, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=329&px=20' onMouseOver='onTileHovered(21, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=329&px=20' onMouseOver='onTileHovered(22, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=329&px=20' onMouseOver='onTileHovered(23, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 192px; ' class='square' href='https://new.reddit.com/r/place/?cx=-545&cy=329&px=20' onMouseOver='onTileHovered(24, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 200px; ' class='square' href='https://new.reddit.com/r/place/?cx=-544&cy=329&px=20' onMouseOver='onTileHovered(25, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 208px; ' class='square' href='https://new.reddit.com/r/place/?cx=-543&cy=329&px=20' onMouseOver='onTileHovered(26, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 216px; ' class='square' href='https://new.reddit.com/r/place/?cx=-542&cy=329&px=20' onMouseOver='onTileHovered(27, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 224px; ' class='square' href='https://new.reddit.com/r/place/?cx=-541&cy=329&px=20' onMouseOver='onTileHovered(28, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 232px; ' class='square' href='https://new.reddit.com/r/place/?cx=-540&cy=329&px=20' onMouseOver='onTileHovered(29, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 240px; ' class='square' href='https://new.reddit.com/r/place/?cx=-539&cy=329&px=20' onMouseOver='onTileHovered(30, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 248px; ' class='square' href='https://new.reddit.com/r/place/?cx=-538&cy=329&px=20' onMouseOver='onTileHovered(31, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 256px; ' class='square' href='https://new.reddit.com/r/place/?cx=-537&cy=329&px=20' onMouseOver='onTileHovered(32, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 264px; ' class='square' href='https://new.reddit.com/r/place/?cx=-536&cy=329&px=20' onMouseOver='onTileHovered(33, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 272px; ' class='square' href='https://new.reddit.com/r/place/?cx=-535&cy=329&px=20' onMouseOver='onTileHovered(34, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 280px; ' class='square' href='https://new.reddit.com/r/place/?cx=-534&cy=329&px=20' onMouseOver='onTileHovered(35, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 288px; ' class='square' href='https://new.reddit.com/r/place/?cx=-533&cy=329&px=20' onMouseOver='onTileHovered(36, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 296px; ' class='square' href='https://new.reddit.com/r/place/?cx=-532&cy=329&px=20' onMouseOver='onTileHovered(37, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 304px; ' class='square' href='https://new.reddit.com/r/place/?cx=-531&cy=329&px=20' onMouseOver='onTileHovered(38, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 312px; ' class='square' href='https://new.reddit.com/r/place/?cx=-530&cy=329&px=20' onMouseOver='onTileHovered(39, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 320px; ' class='square' href='https://new.reddit.com/r/place/?cx=-529&cy=329&px=20' onMouseOver='onTileHovered(40, 2)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 328px; ' class='square' href='https://new.reddit.com/r/place/?cx=-528&cy=329&px=20' onMouseOver='onTileHovered(41, 2)'></a>
</div><div class='row' style='top: 24px;'><a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=330&px=20' onMouseOver='onTileHovered(0, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=330&px=20' onMouseOver='onTileHovered(1, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=330&px=20' onMouseOver='onTileHovered(2, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=330&px=20' onMouseOver='onTileHovered(3, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=330&px=20' onMouseOver='onTileHovered(4, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=330&px=20' onMouseOver='onTileHovered(5, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=330&px=20' onMouseOver='onTileHovered(6, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=330&px=20' onMouseOver='onTileHovered(7, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=330&px=20' onMouseOver='onTileHovered(8, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=330&px=20' onMouseOver='onTileHovered(9, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=330&px=20' onMouseOver='onTileHovered(10, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=330&px=20' onMouseOver='onTileHovered(11, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=330&px=20' onMouseOver='onTileHovered(12, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=330&px=20' onMouseOver='onTileHovered(13, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=330&px=20' onMouseOver='onTileHovered(14, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=330&px=20' onMouseOver='onTileHovered(15, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=330&px=20' onMouseOver='onTileHovered(16, 3)'></a>
<a style='background-color: rgba(255.0,206.0000029206276,44.000001177191734,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=330&px=20' onMouseOver='onTileHovered(17, 3)'></a>
<a style='background-color: rgba(255.0,210.00000268220901,49.00000087916851,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=330&px=20' onMouseOver='onTileHovered(18, 3)'></a>
<a style='background-color: rgba(255.0,208.0000028014183,46.000001057982445,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=330&px=20' onMouseOver='onTileHovered(19, 3)'></a>
<a style='background-color: rgba(255.0,208.0000028014183,46.000001057982445,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=330&px=20' onMouseOver='onTileHovered(20, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=330&px=20' onMouseOver='onTileHovered(21, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=330&px=20' onMouseOver='onTileHovered(22, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=330&px=20' onMouseOver='onTileHovered(23, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 192px; ' class='square' href='https://new.reddit.com/r/place/?cx=-545&cy=330&px=20' onMouseOver='onTileHovered(24, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 200px; ' class='square' href='https://new.reddit.com/r/place/?cx=-544&cy=330&px=20' onMouseOver='onTileHovered(25, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 208px; ' class='square' href='https://new.reddit.com/r/place/?cx=-543&cy=330&px=20' onMouseOver='onTileHovered(26, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 216px; ' class='square' href='https://new.reddit.com/r/place/?cx=-542&cy=330&px=20' onMouseOver='onTileHovered(27, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 224px; ' class='square' href='https://new.reddit.com/r/place/?cx=-541&cy=330&px=20' onMouseOver='onTileHovered(28, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 232px; ' class='square' href='https://new.reddit.com/r/place/?cx=-540&cy=330&px=20' onMouseOver='onTileHovered(29, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 240px; ' class='square' href='https://new.reddit.com/r/place/?cx=-539&cy=330&px=20' onMouseOver='onTileHovered(30, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 248px; ' class='square' href='https://new.reddit.com/r/place/?cx=-538&cy=330&px=20' onMouseOver='onTileHovered(31, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 256px; ' class='square' href='https://new.reddit.com/r/place/?cx=-537&cy=330&px=20' onMouseOver='onTileHovered(32, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 264px; ' class='square' href='https://new.reddit.com/r/place/?cx=-536&cy=330&px=20' onMouseOver='onTileHovered(33, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 272px; ' class='square' href='https://new.reddit.com/r/place/?cx=-535&cy=330&px=20' onMouseOver='onTileHovered(34, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 280px; ' class='square' href='https://new.reddit.com/r/place/?cx=-534&cy=330&px=20' onMouseOver='onTileHovered(35, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 288px; ' class='square' href='https://new.reddit.com/r/place/?cx=-533&cy=330&px=20' onMouseOver='onTileHovered(36, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 296px; ' class='square' href='https://new.reddit.com/r/place/?cx=-532&cy=330&px=20' onMouseOver='onTileHovered(37, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 304px; ' class='square' href='https://new.reddit.com/r/place/?cx=-531&cy=330&px=20' onMouseOver='onTileHovered(38, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 312px; ' class='square' href='https://new.reddit.com/r/place/?cx=-530&cy=330&px=20' onMouseOver='onTileHovered(39, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 320px; ' class='square' href='https://new.reddit.com/r/place/?cx=-529&cy=330&px=20' onMouseOver='onTileHovered(40, 3)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 328px; ' class='square' href='https://new.reddit.com/r/place/?cx=-528&cy=330&px=20' onMouseOver='onTileHovered(41, 3)'></a>
</div><div class='row' style='top: 32px;'><a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=331&px=20' onMouseOver='onTileHovered(0, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=331&px=20' onMouseOver='onTileHovered(1, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=331&px=20' onMouseOver='onTileHovered(2, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=331&px=20' onMouseOver='onTileHovered(3, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=331&px=20' onMouseOver='onTileHovered(4, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=331&px=20' onMouseOver='onTileHovered(5, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=331&px=20' onMouseOver='onTileHovered(6, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=331&px=20' onMouseOver='onTileHovered(7, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=331&px=20' onMouseOver='onTileHovered(8, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=331&px=20' onMouseOver='onTileHovered(9, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=331&px=20' onMouseOver='onTileHovered(10, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=331&px=20' onMouseOver='onTileHovered(11, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=331&px=20' onMouseOver='onTileHovered(12, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=331&px=20' onMouseOver='onTileHovered(13, 4)'></a>
<a style='background-color: rgba(255.0,212.00000256299973,51.00000075995922,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=331&px=20' onMouseOver='onTileHovered(14, 4)'></a>
<a style='background-color: rgba(226.0000017285347,215.0000023841858,162.00000554323196,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=331&px=20' onMouseOver='onTileHovered(15, 4)'></a>
<a style='background-color: rgba(218.00000220537186,215.0000023841858,194.00000363588333,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=331&px=20' onMouseOver='onTileHovered(16, 4)'></a>
<a style='background-color: rgba(241.00000083446503,242.00000077486038,242.00000077486038,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=331&px=20' onMouseOver='onTileHovered(17, 4)'></a>
<a style='background-color: rgba(240.00000089406967,241.00000083446503,242.00000077486038,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=331&px=20' onMouseOver='onTileHovered(18, 4)'></a>
<a style='background-color: rgba(238.00000101327896,240.00000089406967,240.00000089406967,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=331&px=20' onMouseOver='onTileHovered(19, 4)'></a>
<a style='background-color: rgba(238.00000101327896,239.00000095367432,240.00000089406967,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=331&px=20' onMouseOver='onTileHovered(20, 4)'></a>
<a style='background-color: rgba(238.00000101327896,239.00000095367432,240.00000089406967,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=331&px=20' onMouseOver='onTileHovered(21, 4)'></a>
<a style='background-color: rgba(236.00000113248825,238.00000101327896,238.00000101327896,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=331&px=20' onMouseOver='onTileHovered(22, 4)'></a>
<a style='background-color: rgba(234.00000125169754,235.0000011920929,236.00000113248825,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=331&px=20' onMouseOver='onTileHovered(23, 4)'></a>
<a style='background-color: rgba(229.00000154972076,231.00000143051147,232.00000137090683,1.0);left: 192px; ' class='square' href='https://new.reddit.com/r/place/?cx=-545&cy=331&px=20' onMouseOver='onTileHovered(24, 4)'></a>
<a style='background-color: rgba(220.00000208616257,215.0000023841858,186.0000041127205,1.0);left: 200px; ' class='square' href='https://new.reddit.com/r/place/?cx=-544&cy=331&px=20' onMouseOver='onTileHovered(25, 4)'></a>
<a style='background-color: rgba(230.00000149011612,215.0000023841858,147.00000643730164,1.0);left: 208px; ' class='square' href='https://new.reddit.com/r/place/?cx=-543&cy=331&px=20' onMouseOver='onTileHovered(26, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 216px; ' class='square' href='https://new.reddit.com/r/place/?cx=-542&cy=331&px=20' onMouseOver='onTileHovered(27, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 224px; ' class='square' href='https://new.reddit.com/r/place/?cx=-541&cy=331&px=20' onMouseOver='onTileHovered(28, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 232px; ' class='square' href='https://new.reddit.com/r/place/?cx=-540&cy=331&px=20' onMouseOver='onTileHovered(29, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 240px; ' class='square' href='https://new.reddit.com/r/place/?cx=-539&cy=331&px=20' onMouseOver='onTileHovered(30, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 248px; ' class='square' href='https://new.reddit.com/r/place/?cx=-538&cy=331&px=20' onMouseOver='onTileHovered(31, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 256px; ' class='square' href='https://new.reddit.com/r/place/?cx=-537&cy=331&px=20' onMouseOver='onTileHovered(32, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 264px; ' class='square' href='https://new.reddit.com/r/place/?cx=-536&cy=331&px=20' onMouseOver='onTileHovered(33, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 272px; ' class='square' href='https://new.reddit.com/r/place/?cx=-535&cy=331&px=20' onMouseOver='onTileHovered(34, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 280px; ' class='square' href='https://new.reddit.com/r/place/?cx=-534&cy=331&px=20' onMouseOver='onTileHovered(35, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 288px; ' class='square' href='https://new.reddit.com/r/place/?cx=-533&cy=331&px=20' onMouseOver='onTileHovered(36, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 296px; ' class='square' href='https://new.reddit.com/r/place/?cx=-532&cy=331&px=20' onMouseOver='onTileHovered(37, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 304px; ' class='square' href='https://new.reddit.com/r/place/?cx=-531&cy=331&px=20' onMouseOver='onTileHovered(38, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 312px; ' class='square' href='https://new.reddit.com/r/place/?cx=-530&cy=331&px=20' onMouseOver='onTileHovered(39, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 320px; ' class='square' href='https://new.reddit.com/r/place/?cx=-529&cy=331&px=20' onMouseOver='onTileHovered(40, 4)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 328px; ' class='square' href='https://new.reddit.com/r/place/?cx=-528&cy=331&px=20' onMouseOver='onTileHovered(41, 4)'></a>
</div><div class='row' style='top: 40px;'><a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=332&px=20' onMouseOver='onTileHovered(0, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=332&px=20' onMouseOver='onTileHovered(1, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=332&px=20' onMouseOver='onTileHovered(2, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=332&px=20' onMouseOver='onTileHovered(3, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=332&px=20' onMouseOver='onTileHovered(4, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=332&px=20' onMouseOver='onTileHovered(5, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=332&px=20' onMouseOver='onTileHovered(6, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=332&px=20' onMouseOver='onTileHovered(7, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=332&px=20' onMouseOver='onTileHovered(8, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=332&px=20' onMouseOver='onTileHovered(9, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=332&px=20' onMouseOver='onTileHovered(10, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=332&px=20' onMouseOver='onTileHovered(11, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=332&px=20' onMouseOver='onTileHovered(12, 5)'></a>
<a style='background-color: rgba(255.0,213.00000250339508,52.000000700354576,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=332&px=20' onMouseOver='onTileHovered(13, 5)'></a>
<a style='background-color: rgba(228.0000016093254,215.0000023841858,156.00000590085983,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=332&px=20' onMouseOver='onTileHovered(14, 5)'></a>
<a style='background-color: rgba(224.000001847744,215.0000023841858,173.00000488758087,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=332&px=20' onMouseOver='onTileHovered(15, 5)'></a>
<a style='background-color: rgba(219.0000021457672,215.0000023841858,189.00000393390656,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=332&px=20' onMouseOver='onTileHovered(16, 5)'></a>
<a style='background-color: rgba(213.00000250339508,215.0000023841858,214.00000244379044,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=332&px=20' onMouseOver='onTileHovered(17, 5)'></a>
<a style='background-color: rgba(237.0000010728836,238.00000101327896,239.00000095367432,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=332&px=20' onMouseOver='onTileHovered(18, 5)'></a>
<a style='background-color: rgba(238.00000101327896,239.00000095367432,240.00000089406967,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=332&px=20' onMouseOver='onTileHovered(19, 5)'></a>
<a style='background-color: rgba(239.00000095367432,241.00000083446503,241.00000083446503,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=332&px=20' onMouseOver='onTileHovered(20, 5)'></a>
<a style='background-color: rgba(237.0000010728836,238.00000101327896,239.00000095367432,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=332&px=20' onMouseOver='onTileHovered(21, 5)'></a>
<a style='background-color: rgba(234.00000125169754,235.0000011920929,236.00000113248825,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=332&px=20' onMouseOver='onTileHovered(22, 5)'></a>
<a style='background-color: rgba(214.00000244379044,215.0000023841858,211.00000262260437,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=332&px=20' onMouseOver='onTileHovered(23, 5)'></a>
<a style='background-color: rgba(212.00000256299973,215.0000023841858,217.0000022649765,1.0);left: 192px; ' class='square' href='https://new.reddit.com/r/place/?cx=-545&cy=332&px=20' onMouseOver='onTileHovered(24, 5)'></a>
<a style='background-color: rgba(212.00000256299973,215.0000023841858,216.00000232458115,1.0);left: 200px; ' class='square' href='https://new.reddit.com/r/place/?cx=-544&cy=332&px=20' onMouseOver='onTileHovered(25, 5)'></a>
<a style='background-color: rgba(218.00000220537186,215.0000023841858,195.0000035762787,1.0);left: 208px; ' class='square' href='https://new.reddit.com/r/place/?cx=-543&cy=332&px=20' onMouseOver='onTileHovered(26, 5)'></a>
<a style='background-color: rgba(229.00000154972076,215.0000023841858,153.00000607967377,1.0);left: 216px; ' class='square' href='https://new.reddit.com/r/place/?cx=-542&cy=332&px=20' onMouseOver='onTileHovered(27, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 224px; ' class='square' href='https://new.reddit.com/r/place/?cx=-541&cy=332&px=20' onMouseOver='onTileHovered(28, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 232px; ' class='square' href='https://new.reddit.com/r/place/?cx=-540&cy=332&px=20' onMouseOver='onTileHovered(29, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 240px; ' class='square' href='https://new.reddit.com/r/place/?cx=-539&cy=332&px=20' onMouseOver='onTileHovered(30, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 248px; ' class='square' href='https://new.reddit.com/r/place/?cx=-538&cy=332&px=20' onMouseOver='onTileHovered(31, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 256px; ' class='square' href='https://new.reddit.com/r/place/?cx=-537&cy=332&px=20' onMouseOver='onTileHovered(32, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 264px; ' class='square' href='https://new.reddit.com/r/place/?cx=-536&cy=332&px=20' onMouseOver='onTileHovered(33, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 272px; ' class='square' href='https://new.reddit.com/r/place/?cx=-535&cy=332&px=20' onMouseOver='onTileHovered(34, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 280px; ' class='square' href='https://new.reddit.com/r/place/?cx=-534&cy=332&px=20' onMouseOver='onTileHovered(35, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 288px; ' class='square' href='https://new.reddit.com/r/place/?cx=-533&cy=332&px=20' onMouseOver='onTileHovered(36, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 296px; ' class='square' href='https://new.reddit.com/r/place/?cx=-532&cy=332&px=20' onMouseOver='onTileHovered(37, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 304px; ' class='square' href='https://new.reddit.com/r/place/?cx=-531&cy=332&px=20' onMouseOver='onTileHovered(38, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 312px; ' class='square' href='https://new.reddit.com/r/place/?cx=-530&cy=332&px=20' onMouseOver='onTileHovered(39, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 320px; ' class='square' href='https://new.reddit.com/r/place/?cx=-529&cy=332&px=20' onMouseOver='onTileHovered(40, 5)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 328px; ' class='square' href='https://new.reddit.com/r/place/?cx=-528&cy=332&px=20' onMouseOver='onTileHovered(41, 5)'></a>
</div><div class='row' style='top: 48px;'><a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=333&px=20' onMouseOver='onTileHovered(0, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=333&px=20' onMouseOver='onTileHovered(1, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=333&px=20' onMouseOver='onTileHovered(2, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=333&px=20' onMouseOver='onTileHovered(3, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=333&px=20' onMouseOver='onTileHovered(4, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=333&px=20' onMouseOver='onTileHovered(5, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=333&px=20' onMouseOver='onTileHovered(6, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=333&px=20' onMouseOver='onTileHovered(7, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=333&px=20' onMouseOver='onTileHovered(8, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=333&px=20' onMouseOver='onTileHovered(9, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=333&px=20' onMouseOver='onTileHovered(10, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=333&px=20' onMouseOver='onTileHovered(11, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=333&px=20' onMouseOver='onTileHovered(12, 6)'></a>
<a style='background-color: rgba(233.00000131130219,215.0000023841858,138.00000697374344,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=333&px=20' onMouseOver='onTileHovered(13, 6)'></a>
<a style='background-color: rgba(228.0000016093254,215.0000023841858,156.00000590085983,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=333&px=20' onMouseOver='onTileHovered(14, 6)'></a>
<a style='background-color: rgba(223.00000190734863,215.0000023841858,176.00000470876694,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=333&px=20' onMouseOver='onTileHovered(15, 6)'></a>
<a style='background-color: rgba(215.0000023841858,215.0000023841858,205.00000298023224,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=333&px=20' onMouseOver='onTileHovered(16, 6)'></a>
<a style='background-color: rgba(247.00000047683716,248.0000004172325,248.0000004172325,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=333&px=20' onMouseOver='onTileHovered(17, 6)'></a>
<a style='background-color: rgba(249.00000035762787,249.00000035762787,250.00000029802322,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=333&px=20' onMouseOver='onTileHovered(18, 6)'></a>
<a style='background-color: rgba(242.00000077486038,243.00000071525574,244.0000006556511,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=333&px=20' onMouseOver='onTileHovered(19, 6)'></a>
<a style='background-color: rgba(244.0000006556511,245.00000059604645,246.0000005364418,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=333&px=20' onMouseOver='onTileHovered(20, 6)'></a>
<a style='background-color: rgba(244.0000006556511,245.00000059604645,246.0000005364418,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=333&px=20' onMouseOver='onTileHovered(21, 6)'></a>
<a style='background-color: rgba(241.00000083446503,242.00000077486038,243.00000071525574,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=333&px=20' onMouseOver='onTileHovered(22, 6)'></a>
<a style='background-color: rgba(212.00000256299973,215.0000023841858,216.00000232458115,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=333&px=20' onMouseOver='onTileHovered(23, 6)'></a>
<a style='background-color: rgba(219.0000021457672,215.0000023841858,191.00000381469727,1.0);left: 192px; ' class='square' href='https://new.reddit.com/r/place/?cx=-545&cy=333&px=20' onMouseOver='onTileHovered(24, 6)'></a>
<a style='background-color: rgba(214.00000244379044,215.0000023841858,208.0000028014183,1.0);left: 200px; ' class='square' href='https://new.reddit.com/r/place/?cx=-544&cy=333&px=20' onMouseOver='onTileHovered(25, 6)'></a>
<a style='background-color: rgba(219.0000021457672,215.0000023841858,191.00000381469727,1.0);left: 208px; ' class='square' href='https://new.reddit.com/r/place/?cx=-543&cy=333&px=20' onMouseOver='onTileHovered(26, 6)'></a>
<a style='background-color: rgba(226.0000017285347,215.0000023841858,163.00000548362732,1.0);left: 216px; ' class='square' href='https://new.reddit.com/r/place/?cx=-542&cy=333&px=20' onMouseOver='onTileHovered(27, 6)'></a>
<a style='background-color: rgba(228.0000016093254,215.0000023841858,154.00000602006912,1.0);left: 224px; ' class='square' href='https://new.reddit.com/r/place/?cx=-541&cy=333&px=20' onMouseOver='onTileHovered(28, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 232px; ' class='square' href='https://new.reddit.com/r/place/?cx=-540&cy=333&px=20' onMouseOver='onTileHovered(29, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 240px; ' class='square' href='https://new.reddit.com/r/place/?cx=-539&cy=333&px=20' onMouseOver='onTileHovered(30, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 248px; ' class='square' href='https://new.reddit.com/r/place/?cx=-538&cy=333&px=20' onMouseOver='onTileHovered(31, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 256px; ' class='square' href='https://new.reddit.com/r/place/?cx=-537&cy=333&px=20' onMouseOver='onTileHovered(32, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 264px; ' class='square' href='https://new.reddit.com/r/place/?cx=-536&cy=333&px=20' onMouseOver='onTileHovered(33, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 272px; ' class='square' href='https://new.reddit.com/r/place/?cx=-535&cy=333&px=20' onMouseOver='onTileHovered(34, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 280px; ' class='square' href='https://new.reddit.com/r/place/?cx=-534&cy=333&px=20' onMouseOver='onTileHovered(35, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 288px; ' class='square' href='https://new.reddit.com/r/place/?cx=-533&cy=333&px=20' onMouseOver='onTileHovered(36, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 296px; ' class='square' href='https://new.reddit.com/r/place/?cx=-532&cy=333&px=20' onMouseOver='onTileHovered(37, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 304px; ' class='square' href='https://new.reddit.com/r/place/?cx=-531&cy=333&px=20' onMouseOver='onTileHovered(38, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 312px; ' class='square' href='https://new.reddit.com/r/place/?cx=-530&cy=333&px=20' onMouseOver='onTileHovered(39, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 320px; ' class='square' href='https://new.reddit.com/r/place/?cx=-529&cy=333&px=20' onMouseOver='onTileHovered(40, 6)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 328px; ' class='square' href='https://new.reddit.com/r/place/?cx=-528&cy=333&px=20' onMouseOver='onTileHovered(41, 6)'></a>
</div><div class='row' style='top: 56px;'><a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=334&px=20' onMouseOver='onTileHovered(0, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=334&px=20' onMouseOver='onTileHovered(1, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=334&px=20' onMouseOver='onTileHovered(2, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=334&px=20' onMouseOver='onTileHovered(3, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=334&px=20' onMouseOver='onTileHovered(4, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=334&px=20' onMouseOver='onTileHovered(5, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=334&px=20' onMouseOver='onTileHovered(6, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=334&px=20' onMouseOver='onTileHovered(7, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=334&px=20' onMouseOver='onTileHovered(8, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=334&px=20' onMouseOver='onTileHovered(9, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=334&px=20' onMouseOver='onTileHovered(10, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=334&px=20' onMouseOver='onTileHovered(11, 7)'></a>
<a style='background-color: rgba(255.0,199.0000033378601,36.00000165402889,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=334&px=20' onMouseOver='onTileHovered(12, 7)'></a>
<a style='background-color: rgba(229.00000154972076,215.0000023841858,152.0000061392784,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=334&px=20' onMouseOver='onTileHovered(13, 7)'></a>
<a style='background-color: rgba(220.00000208616257,215.0000023841858,188.0000039935112,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=334&px=20' onMouseOver='onTileHovered(14, 7)'></a>
<a style='background-color: rgba(234.00000125169754,235.0000011920929,236.00000113248825,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=334&px=20' onMouseOver='onTileHovered(15, 7)'></a>
<a style='background-color: rgba(245.00000059604645,245.00000059604645,246.0000005364418,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=334&px=20' onMouseOver='onTileHovered(16, 7)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=334&px=20' onMouseOver='onTileHovered(17, 7)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=334&px=20' onMouseOver='onTileHovered(18, 7)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=334&px=20' onMouseOver='onTileHovered(19, 7)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=334&px=20' onMouseOver='onTileHovered(20, 7)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=334&px=20' onMouseOver='onTileHovered(21, 7)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=334&px=20' onMouseOver='onTileHovered(22, 7)'></a>
<a style='background-color: rgba(252.00000017881393,253.0000001192093,253.0000001192093,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=334&px=20' onMouseOver='onTileHovered(23, 7)'></a>
<a style='background-color: rgba(247.00000047683716,247.00000047683716,248.0000004172325,1.0);left: 192px; ' class='square' href='https://new.reddit.com/r/place/?cx=-545&cy=334&px=20' onMouseOver='onTileHovered(24, 7)'></a>
<a style='background-color: rgba(217.0000022649765,215.0000023841858,198.00000339746475,1.0);left: 200px; ' class='square' href='https://new.reddit.com/r/place/?cx=-544&cy=334&px=20' onMouseOver='onTileHovered(25, 7)'></a>
<a style='background-color: rgba(222.00000196695328,215.0000023841858,179.000004529953,1.0);left: 208px; ' class='square' href='https://new.reddit.com/r/place/?cx=-543&cy=334&px=20' onMouseOver='onTileHovered(26, 7)'></a>
<a style='background-color: rgba(224.000001847744,215.0000023841858,171.00000500679016,1.0);left: 216px; ' class='square' href='https://new.reddit.com/r/place/?cx=-542&cy=334&px=20' onMouseOver='onTileHovered(27, 7)'></a>
<a style='background-color: rgba(224.000001847744,215.0000023841858,169.00000512599945,1.0);left: 224px; ' class='square' href='https://new.reddit.com/r/place/?cx=-541&cy=334&px=20' onMouseOver='onTileHovered(28, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 232px; ' class='square' href='https://new.reddit.com/r/place/?cx=-540&cy=334&px=20' onMouseOver='onTileHovered(29, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 240px; ' class='square' href='https://new.reddit.com/r/place/?cx=-539&cy=334&px=20' onMouseOver='onTileHovered(30, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 248px; ' class='square' href='https://new.reddit.com/r/place/?cx=-538&cy=334&px=20' onMouseOver='onTileHovered(31, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 256px; ' class='square' href='https://new.reddit.com/r/place/?cx=-537&cy=334&px=20' onMouseOver='onTileHovered(32, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 264px; ' class='square' href='https://new.reddit.com/r/place/?cx=-536&cy=334&px=20' onMouseOver='onTileHovered(33, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 272px; ' class='square' href='https://new.reddit.com/r/place/?cx=-535&cy=334&px=20' onMouseOver='onTileHovered(34, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 280px; ' class='square' href='https://new.reddit.com/r/place/?cx=-534&cy=334&px=20' onMouseOver='onTileHovered(35, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 288px; ' class='square' href='https://new.reddit.com/r/place/?cx=-533&cy=334&px=20' onMouseOver='onTileHovered(36, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 296px; ' class='square' href='https://new.reddit.com/r/place/?cx=-532&cy=334&px=20' onMouseOver='onTileHovered(37, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 304px; ' class='square' href='https://new.reddit.com/r/place/?cx=-531&cy=334&px=20' onMouseOver='onTileHovered(38, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 312px; ' class='square' href='https://new.reddit.com/r/place/?cx=-530&cy=334&px=20' onMouseOver='onTileHovered(39, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 320px; ' class='square' href='https://new.reddit.com/r/place/?cx=-529&cy=334&px=20' onMouseOver='onTileHovered(40, 7)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 328px; ' class='square' href='https://new.reddit.com/r/place/?cx=-528&cy=334&px=20' onMouseOver='onTileHovered(41, 7)'></a>
</div><div class='row' style='top: 64px;'><a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=335&px=20' onMouseOver='onTileHovered(0, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=335&px=20' onMouseOver='onTileHovered(1, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=335&px=20' onMouseOver='onTileHovered(2, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=335&px=20' onMouseOver='onTileHovered(3, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=335&px=20' onMouseOver='onTileHovered(4, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=335&px=20' onMouseOver='onTileHovered(5, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=335&px=20' onMouseOver='onTileHovered(6, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=335&px=20' onMouseOver='onTileHovered(7, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=335&px=20' onMouseOver='onTileHovered(8, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=335&px=20' onMouseOver='onTileHovered(9, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=335&px=20' onMouseOver='onTileHovered(10, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=335&px=20' onMouseOver='onTileHovered(11, 8)'></a>
<a style='background-color: rgba(255.0,208.0000028014183,46.000001057982445,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=335&px=20' onMouseOver='onTileHovered(12, 8)'></a>
<a style='background-color: rgba(243.00000071525574,244.0000006556511,245.00000059604645,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=335&px=20' onMouseOver='onTileHovered(13, 8)'></a>
<a style='background-color: rgba(248.0000004172325,248.0000004172325,249.00000035762787,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=335&px=20' onMouseOver='onTileHovered(14, 8)'></a>
<a style='background-color: rgba(248.0000004172325,249.00000035762787,249.00000035762787,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=335&px=20' onMouseOver='onTileHovered(15, 8)'></a>
<a style='background-color: rgba(252.00000017881393,252.00000017881393,252.00000017881393,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=335&px=20' onMouseOver='onTileHovered(16, 8)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=335&px=20' onMouseOver='onTileHovered(17, 8)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=335&px=20' onMouseOver='onTileHovered(18, 8)'></a>
<a style='background-color: rgba(252.00000017881393,252.00000017881393,253.0000001192093,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=335&px=20' onMouseOver='onTileHovered(19, 8)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=335&px=20' onMouseOver='onTileHovered(20, 8)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=335&px=20' onMouseOver='onTileHovered(21, 8)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=335&px=20' onMouseOver='onTileHovered(22, 8)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=335&px=20' onMouseOver='onTileHovered(23, 8)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 192px; ' class='square' href='https://new.reddit.com/r/place/?cx=-545&cy=335&px=20' onMouseOver='onTileHovered(24, 8)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 200px; ' class='square' href='https://new.reddit.com/r/place/?cx=-544&cy=335&px=20' onMouseOver='onTileHovered(25, 8)'></a>
<a style='background-color: rgba(244.0000006556511,245.00000059604645,245.00000059604645,1.0);left: 208px; ' class='square' href='https://new.reddit.com/r/place/?cx=-543&cy=335&px=20' onMouseOver='onTileHovered(26, 8)'></a>
<a style='background-color: rgba(216.00000232458115,215.0000023841858,202.00000315904617,1.0);left: 216px; ' class='square' href='https://new.reddit.com/r/place/?cx=-542&cy=335&px=20' onMouseOver='onTileHovered(27, 8)'></a>
<a style='background-color: rgba(226.0000017285347,215.0000023841858,164.00000542402267,1.0);left: 224px; ' class='square' href='https://new.reddit.com/r/place/?cx=-541&cy=335&px=20' onMouseOver='onTileHovered(28, 8)'></a>
<a style='background-color: rgba(253.0000001192093,214.00000244379044,60.00000022351742,1.0);left: 232px; ' class='square' href='https://new.reddit.com/r/place/?cx=-540&cy=335&px=20' onMouseOver='onTileHovered(29, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 240px; ' class='square' href='https://new.reddit.com/r/place/?cx=-539&cy=335&px=20' onMouseOver='onTileHovered(30, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 248px; ' class='square' href='https://new.reddit.com/r/place/?cx=-538&cy=335&px=20' onMouseOver='onTileHovered(31, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 256px; ' class='square' href='https://new.reddit.com/r/place/?cx=-537&cy=335&px=20' onMouseOver='onTileHovered(32, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 264px; ' class='square' href='https://new.reddit.com/r/place/?cx=-536&cy=335&px=20' onMouseOver='onTileHovered(33, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 272px; ' class='square' href='https://new.reddit.com/r/place/?cx=-535&cy=335&px=20' onMouseOver='onTileHovered(34, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 280px; ' class='square' href='https://new.reddit.com/r/place/?cx=-534&cy=335&px=20' onMouseOver='onTileHovered(35, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 288px; ' class='square' href='https://new.reddit.com/r/place/?cx=-533&cy=335&px=20' onMouseOver='onTileHovered(36, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 296px; ' class='square' href='https://new.reddit.com/r/place/?cx=-532&cy=335&px=20' onMouseOver='onTileHovered(37, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 304px; ' class='square' href='https://new.reddit.com/r/place/?cx=-531&cy=335&px=20' onMouseOver='onTileHovered(38, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 312px; ' class='square' href='https://new.reddit.com/r/place/?cx=-530&cy=335&px=20' onMouseOver='onTileHovered(39, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 320px; ' class='square' href='https://new.reddit.com/r/place/?cx=-529&cy=335&px=20' onMouseOver='onTileHovered(40, 8)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 328px; ' class='square' href='https://new.reddit.com/r/place/?cx=-528&cy=335&px=20' onMouseOver='onTileHovered(41, 8)'></a>
</div><div class='row' style='top: 72px;'><a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=336&px=20' onMouseOver='onTileHovered(0, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=336&px=20' onMouseOver='onTileHovered(1, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=336&px=20' onMouseOver='onTileHovered(2, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=336&px=20' onMouseOver='onTileHovered(3, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=336&px=20' onMouseOver='onTileHovered(4, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=336&px=20' onMouseOver='onTileHovered(5, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=336&px=20' onMouseOver='onTileHovered(6, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=336&px=20' onMouseOver='onTileHovered(7, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=336&px=20' onMouseOver='onTileHovered(8, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=336&px=20' onMouseOver='onTileHovered(9, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=336&px=20' onMouseOver='onTileHovered(10, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=336&px=20' onMouseOver='onTileHovered(11, 9)'></a>
<a style='background-color: rgba(226.0000017285347,215.0000023841858,162.00000554323196,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=336&px=20' onMouseOver='onTileHovered(12, 9)'></a>
<a style='background-color: rgba(252.00000017881393,252.00000017881393,252.00000017881393,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=336&px=20' onMouseOver='onTileHovered(13, 9)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=336&px=20' onMouseOver='onTileHovered(14, 9)'></a>
<a style='background-color: rgba(244.0000006556511,245.00000059604645,246.0000005364418,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=336&px=20' onMouseOver='onTileHovered(15, 9)'></a>
<a style='background-color: rgba(242.00000077486038,243.00000071525574,243.00000071525574,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=336&px=20' onMouseOver='onTileHovered(16, 9)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=336&px=20' onMouseOver='onTileHovered(17, 9)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=336&px=20' onMouseOver='onTileHovered(18, 9)'></a>
<a style='background-color: rgba(252.00000017881393,252.00000017881393,253.0000001192093,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=336&px=20' onMouseOver='onTileHovered(19, 9)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=336&px=20' onMouseOver='onTileHovered(20, 9)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=336&px=20' onMouseOver='onTileHovered(21, 9)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=336&px=20' onMouseOver='onTileHovered(22, 9)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=336&px=20' onMouseOver='onTileHovered(23, 9)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 192px; ' class='square' href='https://new.reddit.com/r/place/?cx=-545&cy=336&px=20' onMouseOver='onTileHovered(24, 9)'></a>
<a style='background-color: rgba(251.00000023841858,251.00000023841858,252.00000017881393,1.0);left: 200px; ' class='square' href='https://new.reddit.com/r/place/?cx=-544&cy=336&px=20' onMouseOver='onTileHovered(25, 9)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 208px; ' class='square' href='https://new.reddit.com/r/place/?cx=-543&cy=336&px=20' onMouseOver='onTileHovered(26, 9)'></a>
<a style='background-color: rgba(248.0000004172325,248.0000004172325,249.00000035762787,1.0);left: 216px; ' class='square' href='https://new.reddit.com/r/place/?cx=-542&cy=336&px=20' onMouseOver='onTileHovered(27, 9)'></a>
<a style='background-color: rgba(212.00000256299973,215.0000023841858,216.00000232458115,1.0);left: 224px; ' class='square' href='https://new.reddit.com/r/place/?cx=-541&cy=336&px=20' onMouseOver='onTileHovered(28, 9)'></a>
<a style='background-color: rgba(255.0,211.00000262260437,50.000000819563866,1.0);left: 232px; ' class='square' href='https://new.reddit.com/r/place/?cx=-540&cy=336&px=20' onMouseOver='onTileHovered(29, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 240px; ' class='square' href='https://new.reddit.com/r/place/?cx=-539&cy=336&px=20' onMouseOver='onTileHovered(30, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 248px; ' class='square' href='https://new.reddit.com/r/place/?cx=-538&cy=336&px=20' onMouseOver='onTileHovered(31, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 256px; ' class='square' href='https://new.reddit.com/r/place/?cx=-537&cy=336&px=20' onMouseOver='onTileHovered(32, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 264px; ' class='square' href='https://new.reddit.com/r/place/?cx=-536&cy=336&px=20' onMouseOver='onTileHovered(33, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 272px; ' class='square' href='https://new.reddit.com/r/place/?cx=-535&cy=336&px=20' onMouseOver='onTileHovered(34, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 280px; ' class='square' href='https://new.reddit.com/r/place/?cx=-534&cy=336&px=20' onMouseOver='onTileHovered(35, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 288px; ' class='square' href='https://new.reddit.com/r/place/?cx=-533&cy=336&px=20' onMouseOver='onTileHovered(36, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 296px; ' class='square' href='https://new.reddit.com/r/place/?cx=-532&cy=336&px=20' onMouseOver='onTileHovered(37, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 304px; ' class='square' href='https://new.reddit.com/r/place/?cx=-531&cy=336&px=20' onMouseOver='onTileHovered(38, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 312px; ' class='square' href='https://new.reddit.com/r/place/?cx=-530&cy=336&px=20' onMouseOver='onTileHovered(39, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 320px; ' class='square' href='https://new.reddit.com/r/place/?cx=-529&cy=336&px=20' onMouseOver='onTileHovered(40, 9)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 328px; ' class='square' href='https://new.reddit.com/r/place/?cx=-528&cy=336&px=20' onMouseOver='onTileHovered(41, 9)'></a>
</div><div class='row' style='top: 80px;'><a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=337&px=20' onMouseOver='onTileHovered(0, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=337&px=20' onMouseOver='onTileHovered(1, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=337&px=20' onMouseOver='onTileHovered(2, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=337&px=20' onMouseOver='onTileHovered(3, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=337&px=20' onMouseOver='onTileHovered(4, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=337&px=20' onMouseOver='onTileHovered(5, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=337&px=20' onMouseOver='onTileHovered(6, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=337&px=20' onMouseOver='onTileHovered(7, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=337&px=20' onMouseOver='onTileHovered(8, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=337&px=20' onMouseOver='onTileHovered(9, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=337&px=20' onMouseOver='onTileHovered(10, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=337&px=20' onMouseOver='onTileHovered(11, 10)'></a>
<a style='background-color: rgba(216.00000232458115,215.0000023841858,201.00000321865082,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=337&px=20' onMouseOver='onTileHovered(12, 10)'></a>
<a style='background-color: rgba(248.0000004172325,248.0000004172325,248.0000004172325,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=337&px=20' onMouseOver='onTileHovered(13, 10)'></a>
<a style='background-color: rgba(244.0000006556511,245.00000059604645,246.0000005364418,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=337&px=20' onMouseOver='onTileHovered(14, 10)'></a>
<a style='background-color: rgba(248.0000004172325,248.0000004172325,249.00000035762787,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=337&px=20' onMouseOver='onTileHovered(15, 10)'></a>
<a style='background-color: rgba(242.00000077486038,243.00000071525574,243.00000071525574,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=337&px=20' onMouseOver='onTileHovered(16, 10)'></a>
<a style='background-color: rgba(247.00000047683716,248.0000004172325,248.0000004172325,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=337&px=20' onMouseOver='onTileHovered(17, 10)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=337&px=20' onMouseOver='onTileHovered(18, 10)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=337&px=20' onMouseOver='onTileHovered(19, 10)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=337&px=20' onMouseOver='onTileHovered(20, 10)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=337&px=20' onMouseOver='onTileHovered(21, 10)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=337&px=20' onMouseOver='onTileHovered(22, 10)'></a>
<a style='background-color: rgba(252.00000017881393,252.00000017881393,252.00000017881393,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=337&px=20' onMouseOver='onTileHovered(23, 10)'></a>
<a style='background-color: rgba(246.0000005364418,247.00000047683716,247.00000047683716,1.0);left: 192px; ' class='square' href='https://new.reddit.com/r/place/?cx=-545&cy=337&px=20' onMouseOver='onTileHovered(24, 10)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 200px; ' class='square' href='https://new.reddit.com/r/place/?cx=-544&cy=337&px=20' onMouseOver='onTileHovered(25, 10)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 208px; ' class='square' href='https://new.reddit.com/r/place/?cx=-543&cy=337&px=20' onMouseOver='onTileHovered(26, 10)'></a>
<a style='background-color: rgba(251.00000023841858,252.00000017881393,252.00000017881393,1.0);left: 216px; ' class='square' href='https://new.reddit.com/r/place/?cx=-542&cy=337&px=20' onMouseOver='onTileHovered(27, 10)'></a>
<a style='background-color: rgba(246.0000005364418,247.00000047683716,247.00000047683716,1.0);left: 224px; ' class='square' href='https://new.reddit.com/r/place/?cx=-541&cy=337&px=20' onMouseOver='onTileHovered(28, 10)'></a>
<a style='background-color: rgba(255.0,208.0000028014183,47.0000009983778,1.0);left: 232px; ' class='square' href='https://new.reddit.com/r/place/?cx=-540&cy=337&px=20' onMouseOver='onTileHovered(29, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 240px; ' class='square' href='https://new.reddit.com/r/place/?cx=-539&cy=337&px=20' onMouseOver='onTileHovered(30, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 248px; ' class='square' href='https://new.reddit.com/r/place/?cx=-538&cy=337&px=20' onMouseOver='onTileHovered(31, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 256px; ' class='square' href='https://new.reddit.com/r/place/?cx=-537&cy=337&px=20' onMouseOver='onTileHovered(32, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 264px; ' class='square' href='https://new.reddit.com/r/place/?cx=-536&cy=337&px=20' onMouseOver='onTileHovered(33, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 272px; ' class='square' href='https://new.reddit.com/r/place/?cx=-535&cy=337&px=20' onMouseOver='onTileHovered(34, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 280px; ' class='square' href='https://new.reddit.com/r/place/?cx=-534&cy=337&px=20' onMouseOver='onTileHovered(35, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 288px; ' class='square' href='https://new.reddit.com/r/place/?cx=-533&cy=337&px=20' onMouseOver='onTileHovered(36, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 296px; ' class='square' href='https://new.reddit.com/r/place/?cx=-532&cy=337&px=20' onMouseOver='onTileHovered(37, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 304px; ' class='square' href='https://new.reddit.com/r/place/?cx=-531&cy=337&px=20' onMouseOver='onTileHovered(38, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 312px; ' class='square' href='https://new.reddit.com/r/place/?cx=-530&cy=337&px=20' onMouseOver='onTileHovered(39, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 320px; ' class='square' href='https://new.reddit.com/r/place/?cx=-529&cy=337&px=20' onMouseOver='onTileHovered(40, 10)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 328px; ' class='square' href='https://new.reddit.com/r/place/?cx=-528&cy=337&px=20' onMouseOver='onTileHovered(41, 10)'></a>
</div><div class='row' style='top: 88px;'><a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=338&px=20' onMouseOver='onTileHovered(0, 11)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=338&px=20' onMouseOver='onTileHovered(1, 11)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=338&px=20' onMouseOver='onTileHovered(2, 11)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=338&px=20' onMouseOver='onTileHovered(3, 11)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=338&px=20' onMouseOver='onTileHovered(4, 11)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=338&px=20' onMouseOver='onTileHovered(5, 11)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=338&px=20' onMouseOver='onTileHovered(6, 11)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=338&px=20' onMouseOver='onTileHovered(7, 11)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=338&px=20' onMouseOver='onTileHovered(8, 11)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=338&px=20' onMouseOver='onTileHovered(9, 11)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=338&px=20' onMouseOver='onTileHovered(10, 11)'></a>
<a style='background-color: rgba(255.0,199.0000033378601,36.00000165402889,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=338&px=20' onMouseOver='onTileHovered(11, 11)'></a>
<a style='background-color: rgba(216.00000232458115,215.0000023841858,201.00000321865082,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=338&px=20' onMouseOver='onTileHovered(12, 11)'></a>
<a style='background-color: rgba(222.00000196695328,215.0000023841858,180.00000447034836,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=338&px=20' onMouseOver='onTileHovered(13, 11)'></a>
<a style='background-color: rgba(212.00000256299973,215.0000023841858,216.00000232458115,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=338&px=20' onMouseOver='onTileHovered(14, 11)'></a>
<a style='background-color: rgba(243.00000071525574,244.0000006556511,245.00000059604645,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=338&px=20' onMouseOver='onTileHovered(15, 11)'></a>
<a style='background-color: rgba(248.0000004172325,248.0000004172325,248.0000004172325,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=338&px=20' onMouseOver='onTileHovered(16, 11)'></a>
<a style='background-color: rgba(236.00000113248825,237.0000010728836,238.00000101327896,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=338&px=20' onMouseOver='onTileHovered(17, 11)'></a>
<a style='background-color: rgba(245.00000059604645,246.0000005364418,246.0000005364418,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=338&px=20' onMouseOver='onTileHovered(18, 11)'></a>
<a style='background-color: rgba(252.00000017881393,252.00000017881393,252.00000017881393,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=338&px=20' onMouseOver='onTileHovered(19, 11)'></a>
<a style='background-color: rgba(252.00000017881393,253.0000001192093,253.0000001192093,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=338&px=20' onMouseOver='onTileHovered(20, 11)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=338&px=20' onMouseOver='onTileHovered(21, 11)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=338&px=20' onMouseOver='onTileHovered(22, 11)'></a>
<a style='background-color: rgba(249.00000035762787,250.00000029802322,250.00000029802322,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=338&px=20' onMouseOver='onTileHovered(23, 11)'></a>
<a style='background-color: rgba(246.0000005364418,247.00000047683716,247.00000047683716,1.0);left: 192px; ' class='square' href='https://new.reddit.com/r/place/?cx=-545&cy=338&px=20' onMouseOver='onTileHovered(24, 11)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 200px; ' class='square' href='https://new.reddit.com/r/place/?cx=-544&cy=338&px=20' onMouseOver='onTileHovered(25, 11)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 208px; ' class='square' href='https://new.reddit.com/r/place/?cx=-543&cy=338&px=20' onMouseOver='onTileHovered(26, 11)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 216px; ' class='square' href='https://new.reddit.com/r/place/?cx=-542&cy=338&px=20' onMouseOver='onTileHovered(27, 11)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 224px; ' class='square' href='https://new.reddit.com/r/place/?cx=-541&cy=338&px=20' onMouseOver='onTileHovered(28, 11)'></a>
<a style='background-color: rgba(245.00000059604645,214.00000244379044,93.00000205636024,1.0);left: 232px; ' class='square' href='https://new.reddit.com/r/place/?cx=-540&cy=338&px=20' onMouseOver='onTileHovered(29, 11)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 240px; ' class='square' href='https://new.reddit.com/r/place/?cx=-539&cy=338&px=20' onMouseOver='onTileHovered(30, 11)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 248px; ' class='square' href='https://new.reddit.com/r/place/?cx=-538&cy=338&px=20' onMouseOver='onTileHovered(31, 11)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 256px; ' class='square' href='https://new.reddit.com/r/place/?cx=-537&cy=338&px=20' onMouseOver='onTileHovered(32, 11)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 264px; ' class='square' href='https://new.reddit.com/r/place/?cx=-536&cy=338&px=20' onMouseOver='onTileHovered(33, 11)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 272px; ' class='square' href='https://new.reddit.com/r/place/?cx=-535&cy=338&px=20' onMouseOver='onTileHovered(34, 11)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 280px; ' class='square' href='https://new.reddit.com/r/place/?cx=-534&cy=338&px=20' onMouseOver='onTileHovered(35, 11)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 288px; ' class='square' href='https://new.reddit.com/r/place/?cx=-533&cy=338&px=20' onMouseOver='onTileHovered(36, 11)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 296px; ' class='square' href='https://new.reddit.com/r/place/?cx=-532&cy=338&px=20' onMouseOver='onTileHovered(37, 11)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 304px; ' class='square' href='https://new.reddit.com/r/place/?cx=-531&cy=338&px=20' onMouseOver='onTileHovered(38, 11)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 312px; ' class='square' href='https://new.reddit.com/r/place/?cx=-530&cy=338&px=20' onMouseOver='onTileHovered(39, 11)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 320px; ' class='square' href='https://new.reddit.com/r/place/?cx=-529&cy=338&px=20' onMouseOver='onTileHovered(40, 11)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 328px; ' class='square' href='https://new.reddit.com/r/place/?cx=-528&cy=338&px=20' onMouseOver='onTileHovered(41, 11)'></a>
</div><div class='row' style='top: 96px;'><a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=339&px=20' onMouseOver='onTileHovered(0, 12)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=339&px=20' onMouseOver='onTileHovered(1, 12)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=339&px=20' onMouseOver='onTileHovered(2, 12)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=339&px=20' onMouseOver='onTileHovered(3, 12)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=339&px=20' onMouseOver='onTileHovered(4, 12)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=339&px=20' onMouseOver='onTileHovered(5, 12)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=339&px=20' onMouseOver='onTileHovered(6, 12)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=339&px=20' onMouseOver='onTileHovered(7, 12)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=339&px=20' onMouseOver='onTileHovered(8, 12)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=339&px=20' onMouseOver='onTileHovered(9, 12)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=339&px=20' onMouseOver='onTileHovered(10, 12)'></a>
<a style='background-color: rgba(250.00000029802322,214.00000244379044,73.00000324845314,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=339&px=20' onMouseOver='onTileHovered(11, 12)'></a>
<a style='background-color: rgba(218.00000220537186,215.0000023841858,196.00000351667404,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=339&px=20' onMouseOver='onTileHovered(12, 12)'></a>
<a style='background-color: rgba(255.0,212.00000256299973,51.00000075995922,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=339&px=20' onMouseOver='onTileHovered(13, 12)'></a>
<a style='background-color: rgba(137.00000703334808,141.0000067949295,144.00000661611557,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=339&px=20' onMouseOver='onTileHovered(14, 12)'></a>
<a style='background-color: rgba(137.00000703334808,141.0000067949295,144.00000661611557,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=339&px=20' onMouseOver='onTileHovered(15, 12)'></a>
<a style='background-color: rgba(236.00000113248825,214.00000244379044,126.00000008940697,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=339&px=20' onMouseOver='onTileHovered(16, 12)'></a>
<a style='background-color: rgba(214.00000244379044,215.0000023841858,211.00000262260437,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=339&px=20' onMouseOver='onTileHovered(17, 12)'></a>
<a style='background-color: rgba(222.00000196695328,215.0000023841858,179.000004529953,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=339&px=20' onMouseOver='onTileHovered(18, 12)'></a>
<a style='background-color: rgba(242.00000077486038,243.00000071525574,244.0000006556511,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=339&px=20' onMouseOver='onTileHovered(19, 12)'></a>
<a style='background-color: rgba(251.00000023841858,251.00000023841858,251.00000023841858,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=339&px=20' onMouseOver='onTileHovered(20, 12)'></a>
<a style='background-color: rgba(221.00000202655792,215.0000023841858,182.00000435113907,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=339&px=20' onMouseOver='onTileHovered(21, 12)'></a>
<a style='background-color: rgba(240.00000089406967,241.00000083446503,242.00000077486038,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=339&px=20' onMouseOver='onTileHovered(22, 12)'></a>
<a style='background-color: rgba(236.00000113248825,237.0000010728836,238.00000101327896,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=339&px=20' onMouseOver='onTileHovered(23, 12)'></a>
<a style='background-color: rgba(217.0000022649765,215.0000023841858,200.00000327825546,1.0);left: 192px; ' class='square' href='https://new.reddit.com/r/place/?cx=-545&cy=339&px=20' onMouseOver='onTileHovered(24, 12)'></a>
<a style='background-color: rgba(232.00000137090683,215.0000023841858,141.0000067949295,1.0);left: 200px; ' class='square' href='https://new.reddit.com/r/place/?cx=-544&cy=339&px=20' onMouseOver='onTileHovered(25, 12)'></a>
<a style='background-color: rgba(229.00000154972076,215.0000023841858,154.00000602006912,1.0);left: 208px; ' class='square' href='https://new.reddit.com/r/place/?cx=-543&cy=339&px=20' onMouseOver='onTileHovered(26, 12)'></a>
<a style='background-color: rgba(224.000001847744,215.0000023841858,169.00000512599945,1.0);left: 216px; ' class='square' href='https://new.reddit.com/r/place/?cx=-542&cy=339&px=20' onMouseOver='onTileHovered(27, 12)'></a>
<a style='background-color: rgba(234.00000125169754,235.0000011920929,236.00000113248825,1.0);left: 224px; ' class='square' href='https://new.reddit.com/r/place/?cx=-541&cy=339&px=20' onMouseOver='onTileHovered(28, 12)'></a>
<a style='background-color: rgba(222.00000196695328,215.0000023841858,178.00000458955765,1.0);left: 232px; ' class='square' href='https://new.reddit.com/r/place/?cx=-540&cy=339&px=20' onMouseOver='onTileHovered(29, 12)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 240px; ' class='square' href='https://new.reddit.com/r/place/?cx=-539&cy=339&px=20' onMouseOver='onTileHovered(30, 12)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 248px; ' class='square' href='https://new.reddit.com/r/place/?cx=-538&cy=339&px=20' onMouseOver='onTileHovered(31, 12)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 256px; ' class='square' href='https://new.reddit.com/r/place/?cx=-537&cy=339&px=20' onMouseOver='onTileHovered(32, 12)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 264px; ' class='square' href='https://new.reddit.com/r/place/?cx=-536&cy=339&px=20' onMouseOver='onTileHovered(33, 12)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 272px; ' class='square' href='https://new.reddit.com/r/place/?cx=-535&cy=339&px=20' onMouseOver='onTileHovered(34, 12)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 280px; ' class='square' href='https://new.reddit.com/r/place/?cx=-534&cy=339&px=20' onMouseOver='onTileHovered(35, 12)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 288px; ' class='square' href='https://new.reddit.com/r/place/?cx=-533&cy=339&px=20' onMouseOver='onTileHovered(36, 12)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 296px; ' class='square' href='https://new.reddit.com/r/place/?cx=-532&cy=339&px=20' onMouseOver='onTileHovered(37, 12)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 304px; ' class='square' href='https://new.reddit.com/r/place/?cx=-531&cy=339&px=20' onMouseOver='onTileHovered(38, 12)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 312px; ' class='square' href='https://new.reddit.com/r/place/?cx=-530&cy=339&px=20' onMouseOver='onTileHovered(39, 12)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 320px; ' class='square' href='https://new.reddit.com/r/place/?cx=-529&cy=339&px=20' onMouseOver='onTileHovered(40, 12)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 328px; ' class='square' href='https://new.reddit.com/r/place/?cx=-528&cy=339&px=20' onMouseOver='onTileHovered(41, 12)'></a>
</div><div class='row' style='top: 104px;'><a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=340&px=20' onMouseOver='onTileHovered(0, 13)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=340&px=20' onMouseOver='onTileHovered(1, 13)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=340&px=20' onMouseOver='onTileHovered(2, 13)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=340&px=20' onMouseOver='onTileHovered(3, 13)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=340&px=20' onMouseOver='onTileHovered(4, 13)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=340&px=20' onMouseOver='onTileHovered(5, 13)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=340&px=20' onMouseOver='onTileHovered(6, 13)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=340&px=20' onMouseOver='onTileHovered(7, 13)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=340&px=20' onMouseOver='onTileHovered(8, 13)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=340&px=20' onMouseOver='onTileHovered(9, 13)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=340&px=20' onMouseOver='onTileHovered(10, 13)'></a>
<a style='background-color: rgba(228.0000016093254,215.0000023841858,154.00000602006912,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=340&px=20' onMouseOver='onTileHovered(11, 13)'></a>
<a style='background-color: rgba(243.00000071525574,214.00000244379044,100.00000163912773,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=340&px=20' onMouseOver='onTileHovered(12, 13)'></a>
<a style='background-color: rgba(137.00000703334808,141.0000067949295,144.00000661611557,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=340&px=20' onMouseOver='onTileHovered(13, 13)'></a>
<a style='background-color: rgba(137.00000703334808,141.0000067949295,144.00000661611557,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=340&px=20' onMouseOver='onTileHovered(14, 13)'></a>
<a style='background-color: rgba(212.00000256299973,215.0000023841858,217.0000022649765,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=340&px=20' onMouseOver='onTileHovered(15, 13)'></a>
<a style='background-color: rgba(244.0000006556511,244.0000006556511,245.00000059604645,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=340&px=20' onMouseOver='onTileHovered(16, 13)'></a>
<a style='background-color: rgba(214.00000244379044,215.0000023841858,209.00000274181366,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=340&px=20' onMouseOver='onTileHovered(17, 13)'></a>
<a style='background-color: rgba(219.0000021457672,215.0000023841858,192.00000375509262,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=340&px=20' onMouseOver='onTileHovered(18, 13)'></a>
<a style='background-color: rgba(242.00000077486038,243.00000071525574,244.0000006556511,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=340&px=20' onMouseOver='onTileHovered(19, 13)'></a>
<a style='background-color: rgba(249.00000035762787,249.00000035762787,250.00000029802322,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=340&px=20' onMouseOver='onTileHovered(20, 13)'></a>
<a style='background-color: rgba(223.00000190734863,215.0000023841858,175.00000476837158,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=340&px=20' onMouseOver='onTileHovered(21, 13)'></a>
<a style='background-color: rgba(235.0000011920929,236.00000113248825,237.0000010728836,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=340&px=20' onMouseOver='onTileHovered(22, 13)'></a>
<a style='background-color: rgba(215.0000023841858,215.0000023841858,205.00000298023224,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=340&px=20' onMouseOver='onTileHovered(23, 13)'></a>
<a style='background-color: rgba(242.00000077486038,243.00000071525574,244.0000006556511,1.0);left: 192px; ' class='square' href='https://new.reddit.com/r/place/?cx=-545&cy=340&px=20' onMouseOver='onTileHovered(24, 13)'></a>
<a style='background-color: rgba(255.0,202.00000315904617,39.00000147521496,1.0);left: 200px; ' class='square' href='https://new.reddit.com/r/place/?cx=-544&cy=340&px=20' onMouseOver='onTileHovered(25, 13)'></a>
<a style='background-color: rgba(137.00000703334808,141.0000067949295,144.00000661611557,1.0);left: 208px; ' class='square' href='https://new.reddit.com/r/place/?cx=-543&cy=340&px=20' onMouseOver='onTileHovered(26, 13)'></a>
<a style='background-color: rgba(255.0,211.00000262260437,50.000000819563866,1.0);left: 216px; ' class='square' href='https://new.reddit.com/r/place/?cx=-542&cy=340&px=20' onMouseOver='onTileHovered(27, 13)'></a>
<a style='background-color: rgba(221.00000202655792,215.0000023841858,184.00000423192978,1.0);left: 224px; ' class='square' href='https://new.reddit.com/r/place/?cx=-541&cy=340&px=20' onMouseOver='onTileHovered(28, 13)'></a>
<a style='background-color: rgba(216.00000232458115,215.0000023841858,200.00000327825546,1.0);left: 232px; ' class='square' href='https://new.reddit.com/r/place/?cx=-540&cy=340&px=20' onMouseOver='onTileHovered(29, 13)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 240px; ' class='square' href='https://new.reddit.com/r/place/?cx=-539&cy=340&px=20' onMouseOver='onTileHovered(30, 13)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 248px; ' class='square' href='https://new.reddit.com/r/place/?cx=-538&cy=340&px=20' onMouseOver='onTileHovered(31, 13)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 256px; ' class='square' href='https://new.reddit.com/r/place/?cx=-537&cy=340&px=20' onMouseOver='onTileHovered(32, 13)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 264px; ' class='square' href='https://new.reddit.com/r/place/?cx=-536&cy=340&px=20' onMouseOver='onTileHovered(33, 13)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 272px; ' class='square' href='https://new.reddit.com/r/place/?cx=-535&cy=340&px=20' onMouseOver='onTileHovered(34, 13)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 280px; ' class='square' href='https://new.reddit.com/r/place/?cx=-534&cy=340&px=20' onMouseOver='onTileHovered(35, 13)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 288px; ' class='square' href='https://new.reddit.com/r/place/?cx=-533&cy=340&px=20' onMouseOver='onTileHovered(36, 13)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 296px; ' class='square' href='https://new.reddit.com/r/place/?cx=-532&cy=340&px=20' onMouseOver='onTileHovered(37, 13)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 304px; ' class='square' href='https://new.reddit.com/r/place/?cx=-531&cy=340&px=20' onMouseOver='onTileHovered(38, 13)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 312px; ' class='square' href='https://new.reddit.com/r/place/?cx=-530&cy=340&px=20' onMouseOver='onTileHovered(39, 13)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 320px; ' class='square' href='https://new.reddit.com/r/place/?cx=-529&cy=340&px=20' onMouseOver='onTileHovered(40, 13)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 328px; ' class='square' href='https://new.reddit.com/r/place/?cx=-528&cy=340&px=20' onMouseOver='onTileHovered(41, 13)'></a>
</div><div class='row' style='top: 112px;'><a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=341&px=20' onMouseOver='onTileHovered(0, 14)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=341&px=20' onMouseOver='onTileHovered(1, 14)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=341&px=20' onMouseOver='onTileHovered(2, 14)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=341&px=20' onMouseOver='onTileHovered(3, 14)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=341&px=20' onMouseOver='onTileHovered(4, 14)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=341&px=20' onMouseOver='onTileHovered(5, 14)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=341&px=20' onMouseOver='onTileHovered(6, 14)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=341&px=20' onMouseOver='onTileHovered(7, 14)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=341&px=20' onMouseOver='onTileHovered(8, 14)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=341&px=20' onMouseOver='onTileHovered(9, 14)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=341&px=20' onMouseOver='onTileHovered(10, 14)'></a>
<a style='background-color: rgba(243.00000071525574,214.00000244379044,100.00000163912773,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=341&px=20' onMouseOver='onTileHovered(11, 14)'></a>
<a style='background-color: rgba(228.0000016093254,215.0000023841858,156.00000590085983,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=341&px=20' onMouseOver='onTileHovered(12, 14)'></a>
<a style='background-color: rgba(236.00000113248825,237.0000010728836,238.00000101327896,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=341&px=20' onMouseOver='onTileHovered(13, 14)'></a>
<a style='background-color: rgba(248.0000004172325,248.0000004172325,249.00000035762787,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=341&px=20' onMouseOver='onTileHovered(14, 14)'></a>
<a style='background-color: rgba(246.0000005364418,246.0000005364418,247.00000047683716,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=341&px=20' onMouseOver='onTileHovered(15, 14)'></a>
<a style='background-color: rgba(240.00000089406967,241.00000083446503,242.00000077486038,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=341&px=20' onMouseOver='onTileHovered(16, 14)'></a>
<a style='background-color: rgba(227.00000166893005,215.0000023841858,158.00000578165054,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=341&px=20' onMouseOver='onTileHovered(17, 14)'></a>
<a style='background-color: rgba(213.00000250339508,215.0000023841858,213.00000250339508,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=341&px=20' onMouseOver='onTileHovered(18, 14)'></a>
<a style='background-color: rgba(250.00000029802322,251.00000023841858,251.00000023841858,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=341&px=20' onMouseOver='onTileHovered(19, 14)'></a>
<a style='background-color: rgba(251.00000023841858,251.00000023841858,251.00000023841858,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=341&px=20' onMouseOver='onTileHovered(20, 14)'></a>
<a style='background-color: rgba(219.0000021457672,215.0000023841858,192.00000375509262,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=341&px=20' onMouseOver='onTileHovered(21, 14)'></a>
<a style='background-color: rgba(218.00000220537186,215.0000023841858,196.00000351667404,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=341&px=20' onMouseOver='onTileHovered(22, 14)'></a>
<a style='background-color: rgba(243.00000071525574,244.0000006556511,245.00000059604645,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=341&px=20' onMouseOver='onTileHovered(23, 14)'></a>
<a style='background-color: rgba(250.00000029802322,251.00000023841858,251.00000023841858,1.0);left: 192px; ' class='square' href='https://new.reddit.com/r/place/?cx=-545&cy=341&px=20' onMouseOver='onTileHovered(24, 14)'></a>
<a style='background-color: rgba(219.0000021457672,215.0000023841858,192.00000375509262,1.0);left: 200px; ' class='square' href='https://new.reddit.com/r/place/?cx=-544&cy=341&px=20' onMouseOver='onTileHovered(25, 14)'></a>
<a style='background-color: rgba(212.00000256299973,215.0000023841858,217.0000022649765,1.0);left: 208px; ' class='square' href='https://new.reddit.com/r/place/?cx=-543&cy=341&px=20' onMouseOver='onTileHovered(26, 14)'></a>
<a style='background-color: rgba(137.00000703334808,141.0000067949295,144.00000661611557,1.0);left: 216px; ' class='square' href='https://new.reddit.com/r/place/?cx=-542&cy=341&px=20' onMouseOver='onTileHovered(27, 14)'></a>
<a style='background-color: rgba(232.00000137090683,215.0000023841858,139.0000069141388,1.0);left: 224px; ' class='square' href='https://new.reddit.com/r/place/?cx=-541&cy=341&px=20' onMouseOver='onTileHovered(28, 14)'></a>
<a style='background-color: rgba(229.00000154972076,231.00000143051147,232.00000137090683,1.0);left: 232px; ' class='square' href='https://new.reddit.com/r/place/?cx=-540&cy=341&px=20' onMouseOver='onTileHovered(29, 14)'></a>
<a style='background-color: rgba(255.0,210.00000268220901,48.000000938773155,1.0);left: 240px; ' class='square' href='https://new.reddit.com/r/place/?cx=-539&cy=341&px=20' onMouseOver='onTileHovered(30, 14)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 248px; ' class='square' href='https://new.reddit.com/r/place/?cx=-538&cy=341&px=20' onMouseOver='onTileHovered(31, 14)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 256px; ' class='square' href='https://new.reddit.com/r/place/?cx=-537&cy=341&px=20' onMouseOver='onTileHovered(32, 14)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 264px; ' class='square' href='https://new.reddit.com/r/place/?cx=-536&cy=341&px=20' onMouseOver='onTileHovered(33, 14)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 272px; ' class='square' href='https://new.reddit.com/r/place/?cx=-535&cy=341&px=20' onMouseOver='onTileHovered(34, 14)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 280px; ' class='square' href='https://new.reddit.com/r/place/?cx=-534&cy=341&px=20' onMouseOver='onTileHovered(35, 14)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 288px; ' class='square' href='https://new.reddit.com/r/place/?cx=-533&cy=341&px=20' onMouseOver='onTileHovered(36, 14)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 296px; ' class='square' href='https://new.reddit.com/r/place/?cx=-532&cy=341&px=20' onMouseOver='onTileHovered(37, 14)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 304px; ' class='square' href='https://new.reddit.com/r/place/?cx=-531&cy=341&px=20' onMouseOver='onTileHovered(38, 14)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 312px; ' class='square' href='https://new.reddit.com/r/place/?cx=-530&cy=341&px=20' onMouseOver='onTileHovered(39, 14)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 320px; ' class='square' href='https://new.reddit.com/r/place/?cx=-529&cy=341&px=20' onMouseOver='onTileHovered(40, 14)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 328px; ' class='square' href='https://new.reddit.com/r/place/?cx=-528&cy=341&px=20' onMouseOver='onTileHovered(41, 14)'></a>
</div><div class='row' style='top: 120px;'><a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=342&px=20' onMouseOver='onTileHovered(0, 15)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=342&px=20' onMouseOver='onTileHovered(1, 15)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=342&px=20' onMouseOver='onTileHovered(2, 15)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=342&px=20' onMouseOver='onTileHovered(3, 15)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=342&px=20' onMouseOver='onTileHovered(4, 15)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=342&px=20' onMouseOver='onTileHovered(5, 15)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=342&px=20' onMouseOver='onTileHovered(6, 15)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=342&px=20' onMouseOver='onTileHovered(7, 15)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=342&px=20' onMouseOver='onTileHovered(8, 15)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=342&px=20' onMouseOver='onTileHovered(9, 15)'></a>
<a style='background-color: rgba(255.0,200.00000327825546,37.00000159442425,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=342&px=20' onMouseOver='onTileHovered(10, 15)'></a>
<a style='background-color: rgba(233.00000131130219,215.0000023841858,137.00000703334808,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=342&px=20' onMouseOver='onTileHovered(11, 15)'></a>
<a style='background-color: rgba(225.00000178813934,215.0000023841858,167.00000524520874,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=342&px=20' onMouseOver='onTileHovered(12, 15)'></a>
<a style='background-color: rgba(236.00000113248825,237.0000010728836,238.00000101327896,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=342&px=20' onMouseOver='onTileHovered(13, 15)'></a>
<a style='background-color: rgba(243.00000071525574,244.0000006556511,245.00000059604645,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=342&px=20' onMouseOver='onTileHovered(14, 15)'></a>
<a style='background-color: rgba(240.00000089406967,241.00000083446503,242.00000077486038,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=342&px=20' onMouseOver='onTileHovered(15, 15)'></a>
<a style='background-color: rgba(215.0000023841858,215.0000023841858,206.0000029206276,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=342&px=20' onMouseOver='onTileHovered(16, 15)'></a>
<a style='background-color: rgba(217.0000022649765,215.0000023841858,198.00000339746475,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=342&px=20' onMouseOver='onTileHovered(17, 15)'></a>
<a style='background-color: rgba(250.00000029802322,250.00000029802322,250.00000029802322,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=342&px=20' onMouseOver='onTileHovered(18, 15)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=342&px=20' onMouseOver='onTileHovered(19, 15)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=342&px=20' onMouseOver='onTileHovered(20, 15)'></a>
<a style='background-color: rgba(223.00000190734863,215.0000023841858,173.00000488758087,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=342&px=20' onMouseOver='onTileHovered(21, 15)'></a>
<a style='background-color: rgba(223.00000190734863,215.0000023841858,177.0000046491623,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=342&px=20' onMouseOver='onTileHovered(22, 15)'></a>
<a style='background-color: rgba(212.00000256299973,215.0000023841858,217.0000022649765,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=342&px=20' onMouseOver='onTileHovered(23, 15)'></a>
<a style='background-color: rgba(241.00000083446503,242.00000077486038,242.00000077486038,1.0);left: 192px; ' class='square' href='https://new.reddit.com/r/place/?cx=-545&cy=342&px=20' onMouseOver='onTileHovered(24, 15)'></a>
<a style='background-color: rgba(254.00000005960464,254.00000005960464,254.00000005960464,1.0);left: 200px; ' class='square' href='https://new.reddit.com/r/place/?cx=-544&cy=342&px=20' onMouseOver='onTileHovered(25, 15)'></a>
<a style='background-color: rgba(245.00000059604645,246.0000005364418,246.0000005364418,1.0);left: 208px; ' class='square' href='https://new.reddit.com/r/place/?cx=-543&cy=342&px=20' onMouseOver='onTileHovered(26, 15)'></a>
<a style='background-color: rgba(218.00000220537186,215.0000023841858,195.0000035762787,1.0);left: 216px; ' class='square' href='https://new.reddit.com/r/place/?cx=-542&cy=342&px=20' onMouseOver='onTileHovered(27, 15)'></a>
<a style='background-color: rgba(222.00000196695328,215.0000023841858,180.00000447034836,1.0);left: 224px; ' class='square' href='https://new.reddit.com/r/place/?cx=-541&cy=342&px=20' onMouseOver='onTileHovered(28, 15)'></a>
<a style='background-color: rgba(235.0000011920929,237.0000010728836,237.0000010728836,1.0);left: 232px; ' class='square' href='https://new.reddit.com/r/place/?cx=-540&cy=342&px=20' onMouseOver='onTileHovered(29, 15)'></a>
<a style='background-color: rgba(232.00000137090683,215.0000023841858,140.00000685453415,1.0);left: 240px; ' class='square' href='https://new.reddit.com/r/place/?cx=-539&cy=342&px=20' onMouseOver='onTileHovered(30, 15)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 248px; ' class='square' href='https://new.reddit.com/r/place/?cx=-538&cy=342&px=20' onMouseOver='onTileHovered(31, 15)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 256px; ' class='square' href='https://new.reddit.com/r/place/?cx=-537&cy=342&px=20' onMouseOver='onTileHovered(32, 15)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 264px; ' class='square' href='https://new.reddit.com/r/place/?cx=-536&cy=342&px=20' onMouseOver='onTileHovered(33, 15)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 272px; ' class='square' href='https://new.reddit.com/r/place/?cx=-535&cy=342&px=20' onMouseOver='onTileHovered(34, 15)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 280px; ' class='square' href='https://new.reddit.com/r/place/?cx=-534&cy=342&px=20' onMouseOver='onTileHovered(35, 15)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 288px; ' class='square' href='https://new.reddit.com/r/place/?cx=-533&cy=342&px=20' onMouseOver='onTileHovered(36, 15)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 296px; ' class='square' href='https://new.reddit.com/r/place/?cx=-532&cy=342&px=20' onMouseOver='onTileHovered(37, 15)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 304px; ' class='square' href='https://new.reddit.com/r/place/?cx=-531&cy=342&px=20' onMouseOver='onTileHovered(38, 15)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 312px; ' class='square' href='https://new.reddit.com/r/place/?cx=-530&cy=342&px=20' onMouseOver='onTileHovered(39, 15)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 320px; ' class='square' href='https://new.reddit.com/r/place/?cx=-529&cy=342&px=20' onMouseOver='onTileHovered(40, 15)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 328px; ' class='square' href='https://new.reddit.com/r/place/?cx=-528&cy=342&px=20' onMouseOver='onTileHovered(41, 15)'></a>
</div><div class='row' style='top: 128px;'><a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=343&px=20' onMouseOver='onTileHovered(0, 16)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=343&px=20' onMouseOver='onTileHovered(1, 16)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=343&px=20' onMouseOver='onTileHovered(2, 16)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=343&px=20' onMouseOver='onTileHovered(3, 16)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=343&px=20' onMouseOver='onTileHovered(4, 16)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=343&px=20' onMouseOver='onTileHovered(5, 16)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=343&px=20' onMouseOver='onTileHovered(6, 16)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=343&px=20' onMouseOver='onTileHovered(7, 16)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=343&px=20' onMouseOver='onTileHovered(8, 16)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=343&px=20' onMouseOver='onTileHovered(9, 16)'></a>
<a style='background-color: rgba(232.00000137090683,215.0000023841858,141.0000067949295,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=343&px=20' onMouseOver='onTileHovered(10, 16)'></a>
<a style='background-color: rgba(217.0000022649765,215.0000023841858,198.00000339746475,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=343&px=20' onMouseOver='onTileHovered(11, 16)'></a>
<a style='background-color: rgba(219.0000021457672,221.00000202655792,223.00000190734863,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=343&px=20' onMouseOver='onTileHovered(12, 16)'></a>
<a style='background-color: rgba(213.00000250339508,215.0000023841858,212.00000256299973,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=343&px=20' onMouseOver='onTileHovered(13, 16)'></a>
<a style='background-color: rgba(237.0000010728836,238.00000101327896,239.00000095367432,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=343&px=20' onMouseOver='onTileHovered(14, 16)'></a>
<a style='background-color: rgba(251.00000023841858,251.00000023841858,252.00000017881393,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=343&px=20' onMouseOver='onTileHovered(15, 16)'></a>
<a style='background-color: rgba(249.00000035762787,250.00000029802322,250.00000029802322,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=343&px=20' onMouseOver='onTileHovered(16, 16)'></a>
<a style='background-color: rgba(252.00000017881393,253.0000001192093,253.0000001192093,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=343&px=20' onMouseOver='onTileHovered(17, 16)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=343&px=20' onMouseOver='onTileHovered(18, 16)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=343&px=20' onMouseOver='onTileHovered(19, 16)'></a>
<a style='background-color: rgba(254.00000005960464,254.00000005960464,254.00000005960464,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=343&px=20' onMouseOver='onTileHovered(20, 16)'></a>
<a style='background-color: rgba(248.0000004172325,248.0000004172325,249.00000035762787,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=343&px=20' onMouseOver='onTileHovered(21, 16)'></a>
<a style='background-color: rgba(229.00000154972076,231.00000143051147,232.00000137090683,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=343&px=20' onMouseOver='onTileHovered(22, 16)'></a>
<a style='background-color: rgba(251.00000023841858,252.00000017881393,252.00000017881393,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=343&px=20' onMouseOver='onTileHovered(23, 16)'></a>
<a style='background-color: rgba(245.00000059604645,246.0000005364418,247.00000047683716,1.0);left: 192px; ' class='square' href='https://new.reddit.com/r/place/?cx=-545&cy=343&px=20' onMouseOver='onTileHovered(24, 16)'></a>
<a style='background-color: rgba(212.00000256299973,215.0000023841858,217.0000022649765,1.0);left: 200px; ' class='square' href='https://new.reddit.com/r/place/?cx=-544&cy=343&px=20' onMouseOver='onTileHovered(25, 16)'></a>
<a style='background-color: rgba(247.00000047683716,248.0000004172325,248.0000004172325,1.0);left: 208px; ' class='square' href='https://new.reddit.com/r/place/?cx=-543&cy=343&px=20' onMouseOver='onTileHovered(26, 16)'></a>
<a style='background-color: rgba(236.00000113248825,237.0000010728836,238.00000101327896,1.0);left: 216px; ' class='square' href='https://new.reddit.com/r/place/?cx=-542&cy=343&px=20' onMouseOver='onTileHovered(27, 16)'></a>
<a style='background-color: rgba(213.00000250339508,215.0000023841858,215.0000023841858,1.0);left: 224px; ' class='square' href='https://new.reddit.com/r/place/?cx=-541&cy=343&px=20' onMouseOver='onTileHovered(28, 16)'></a>
<a style='background-color: rgba(228.0000016093254,215.0000023841858,158.00000578165054,1.0);left: 232px; ' class='square' href='https://new.reddit.com/r/place/?cx=-540&cy=343&px=20' onMouseOver='onTileHovered(29, 16)'></a>
<a style='background-color: rgba(255.0,213.00000250339508,52.000000700354576,1.0);left: 240px; ' class='square' href='https://new.reddit.com/r/place/?cx=-539&cy=343&px=20' onMouseOver='onTileHovered(30, 16)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 248px; ' class='square' href='https://new.reddit.com/r/place/?cx=-538&cy=343&px=20' onMouseOver='onTileHovered(31, 16)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 256px; ' class='square' href='https://new.reddit.com/r/place/?cx=-537&cy=343&px=20' onMouseOver='onTileHovered(32, 16)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 264px; ' class='square' href='https://new.reddit.com/r/place/?cx=-536&cy=343&px=20' onMouseOver='onTileHovered(33, 16)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 272px; ' class='square' href='https://new.reddit.com/r/place/?cx=-535&cy=343&px=20' onMouseOver='onTileHovered(34, 16)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 280px; ' class='square' href='https://new.reddit.com/r/place/?cx=-534&cy=343&px=20' onMouseOver='onTileHovered(35, 16)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 288px; ' class='square' href='https://new.reddit.com/r/place/?cx=-533&cy=343&px=20' onMouseOver='onTileHovered(36, 16)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 296px; ' class='square' href='https://new.reddit.com/r/place/?cx=-532&cy=343&px=20' onMouseOver='onTileHovered(37, 16)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 304px; ' class='square' href='https://new.reddit.com/r/place/?cx=-531&cy=343&px=20' onMouseOver='onTileHovered(38, 16)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 312px; ' class='square' href='https://new.reddit.com/r/place/?cx=-530&cy=343&px=20' onMouseOver='onTileHovered(39, 16)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 320px; ' class='square' href='https://new.reddit.com/r/place/?cx=-529&cy=343&px=20' onMouseOver='onTileHovered(40, 16)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 328px; ' class='square' href='https://new.reddit.com/r/place/?cx=-528&cy=343&px=20' onMouseOver='onTileHovered(41, 16)'></a>
</div><div class='row' style='top: 136px;'><a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=344&px=20' onMouseOver='onTileHovered(0, 17)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=344&px=20' onMouseOver='onTileHovered(1, 17)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=344&px=20' onMouseOver='onTileHovered(2, 17)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=344&px=20' onMouseOver='onTileHovered(3, 17)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=344&px=20' onMouseOver='onTileHovered(4, 17)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=344&px=20' onMouseOver='onTileHovered(5, 17)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=344&px=20' onMouseOver='onTileHovered(6, 17)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=344&px=20' onMouseOver='onTileHovered(7, 17)'></a>
<a style='background-color: rgba(169.00000512599945,113.00000086426735,33.00000183284283,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=344&px=20' onMouseOver='onTileHovered(8, 17)'></a>
<a style='background-color: rgba(255.0,203.00000309944153,40.00000141561031,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=344&px=20' onMouseOver='onTileHovered(9, 17)'></a>
<a style='background-color: rgba(225.00000178813934,215.0000023841858,167.00000524520874,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=344&px=20' onMouseOver='onTileHovered(10, 17)'></a>
<a style='background-color: rgba(215.0000023841858,215.0000023841858,204.00000303983688,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=344&px=20' onMouseOver='onTileHovered(11, 17)'></a>
<a style='background-color: rgba(237.0000010728836,238.00000101327896,239.00000095367432,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=344&px=20' onMouseOver='onTileHovered(12, 17)'></a>
<a style='background-color: rgba(245.00000059604645,246.0000005364418,246.0000005364418,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=344&px=20' onMouseOver='onTileHovered(13, 17)'></a>
<a style='background-color: rgba(251.00000023841858,251.00000023841858,252.00000017881393,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=344&px=20' onMouseOver='onTileHovered(14, 17)'></a>
<a style='background-color: rgba(251.00000023841858,251.00000023841858,251.00000023841858,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=344&px=20' onMouseOver='onTileHovered(15, 17)'></a>
<a style='background-color: rgba(246.0000005364418,247.00000047683716,247.00000047683716,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=344&px=20' onMouseOver='onTileHovered(16, 17)'></a>
<a style='background-color: rgba(237.0000010728836,238.00000101327896,239.00000095367432,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=344&px=20' onMouseOver='onTileHovered(17, 17)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=344&px=20' onMouseOver='onTileHovered(18, 17)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=344&px=20' onMouseOver='onTileHovered(19, 17)'></a>
<a style='background-color: rgba(252.00000017881393,252.00000017881393,252.00000017881393,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=344&px=20' onMouseOver='onTileHovered(20, 17)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=344&px=20' onMouseOver='onTileHovered(21, 17)'></a>
<a style='background-color: rgba(245.00000059604645,246.0000005364418,246.0000005364418,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=344&px=20' onMouseOver='onTileHovered(22, 17)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=344&px=20' onMouseOver='onTileHovered(23, 17)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 192px; ' class='square' href='https://new.reddit.com/r/place/?cx=-545&cy=344&px=20' onMouseOver='onTileHovered(24, 17)'></a>
<a style='background-color: rgba(236.00000113248825,238.00000101327896,239.00000095367432,1.0);left: 200px; ' class='square' href='https://new.reddit.com/r/place/?cx=-544&cy=344&px=20' onMouseOver='onTileHovered(25, 17)'></a>
<a style='background-color: rgba(212.00000256299973,215.0000023841858,217.0000022649765,1.0);left: 208px; ' class='square' href='https://new.reddit.com/r/place/?cx=-543&cy=344&px=20' onMouseOver='onTileHovered(26, 17)'></a>
<a style='background-color: rgba(241.00000083446503,242.00000077486038,243.00000071525574,1.0);left: 216px; ' class='square' href='https://new.reddit.com/r/place/?cx=-542&cy=344&px=20' onMouseOver='onTileHovered(27, 17)'></a>
<a style='background-color: rgba(239.00000095367432,240.00000089406967,241.00000083446503,1.0);left: 224px; ' class='square' href='https://new.reddit.com/r/place/?cx=-541&cy=344&px=20' onMouseOver='onTileHovered(28, 17)'></a>
<a style='background-color: rgba(225.00000178813934,215.0000023841858,167.00000524520874,1.0);left: 232px; ' class='square' href='https://new.reddit.com/r/place/?cx=-540&cy=344&px=20' onMouseOver='onTileHovered(29, 17)'></a>
<a style='background-color: rgba(255.0,211.00000262260437,50.000000819563866,1.0);left: 240px; ' class='square' href='https://new.reddit.com/r/place/?cx=-539&cy=344&px=20' onMouseOver='onTileHovered(30, 17)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 248px; ' class='square' href='https://new.reddit.com/r/place/?cx=-538&cy=344&px=20' onMouseOver='onTileHovered(31, 17)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 256px; ' class='square' href='https://new.reddit.com/r/place/?cx=-537&cy=344&px=20' onMouseOver='onTileHovered(32, 17)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 264px; ' class='square' href='https://new.reddit.com/r/place/?cx=-536&cy=344&px=20' onMouseOver='onTileHovered(33, 17)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 272px; ' class='square' href='https://new.reddit.com/r/place/?cx=-535&cy=344&px=20' onMouseOver='onTileHovered(34, 17)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 280px; ' class='square' href='https://new.reddit.com/r/place/?cx=-534&cy=344&px=20' onMouseOver='onTileHovered(35, 17)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 288px; ' class='square' href='https://new.reddit.com/r/place/?cx=-533&cy=344&px=20' onMouseOver='onTileHovered(36, 17)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 296px; ' class='square' href='https://new.reddit.com/r/place/?cx=-532&cy=344&px=20' onMouseOver='onTileHovered(37, 17)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 304px; ' class='square' href='https://new.reddit.com/r/place/?cx=-531&cy=344&px=20' onMouseOver='onTileHovered(38, 17)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 312px; ' class='square' href='https://new.reddit.com/r/place/?cx=-530&cy=344&px=20' onMouseOver='onTileHovered(39, 17)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 320px; ' class='square' href='https://new.reddit.com/r/place/?cx=-529&cy=344&px=20' onMouseOver='onTileHovered(40, 17)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 328px; ' class='square' href='https://new.reddit.com/r/place/?cx=-528&cy=344&px=20' onMouseOver='onTileHovered(41, 17)'></a>
</div><div class='row' style='top: 144px;'><a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=345&px=20' onMouseOver='onTileHovered(0, 18)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=345&px=20' onMouseOver='onTileHovered(1, 18)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=345&px=20' onMouseOver='onTileHovered(2, 18)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=345&px=20' onMouseOver='onTileHovered(3, 18)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=345&px=20' onMouseOver='onTileHovered(4, 18)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=345&px=20' onMouseOver='onTileHovered(5, 18)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=345&px=20' onMouseOver='onTileHovered(6, 18)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=345&px=20' onMouseOver='onTileHovered(7, 18)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=345&px=20' onMouseOver='onTileHovered(8, 18)'></a>
<a style='background-color: rgba(255.0,208.0000028014183,46.000001057982445,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=345&px=20' onMouseOver='onTileHovered(9, 18)'></a>
<a style='background-color: rgba(224.000001847744,215.0000023841858,172.00000494718552,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=345&px=20' onMouseOver='onTileHovered(10, 18)'></a>
<a style='background-color: rgba(212.00000256299973,215.0000023841858,216.00000232458115,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=345&px=20' onMouseOver='onTileHovered(11, 18)'></a>
<a style='background-color: rgba(243.00000071525574,244.0000006556511,244.0000006556511,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=345&px=20' onMouseOver='onTileHovered(12, 18)'></a>
<a style='background-color: rgba(252.00000017881393,252.00000017881393,253.0000001192093,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=345&px=20' onMouseOver='onTileHovered(13, 18)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=345&px=20' onMouseOver='onTileHovered(14, 18)'></a>
<a style='background-color: rgba(254.00000005960464,254.00000005960464,254.00000005960464,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=345&px=20' onMouseOver='onTileHovered(15, 18)'></a>
<a style='background-color: rgba(249.00000035762787,249.00000035762787,250.00000029802322,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=345&px=20' onMouseOver='onTileHovered(16, 18)'></a>
<a style='background-color: rgba(219.0000021457672,215.0000023841858,190.0000038743019,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=345&px=20' onMouseOver='onTileHovered(17, 18)'></a>
<a style='background-color: rgba(240.00000089406967,241.00000083446503,242.00000077486038,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=345&px=20' onMouseOver='onTileHovered(18, 18)'></a>
<a style='background-color: rgba(254.00000005960464,254.00000005960464,254.00000005960464,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=345&px=20' onMouseOver='onTileHovered(19, 18)'></a>
<a style='background-color: rgba(234.00000125169754,235.0000011920929,236.00000113248825,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=345&px=20' onMouseOver='onTileHovered(20, 18)'></a>
<a style='background-color: rgba(214.00000244379044,215.0000023841858,209.00000274181366,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=345&px=20' onMouseOver='onTileHovered(21, 18)'></a>
<a style='background-color: rgba(251.00000023841858,252.00000017881393,252.00000017881393,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=345&px=20' onMouseOver='onTileHovered(22, 18)'></a>
<a style='background-color: rgba(251.00000023841858,252.00000017881393,252.00000017881393,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=345&px=20' onMouseOver='onTileHovered(23, 18)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 192px; ' class='square' href='https://new.reddit.com/r/place/?cx=-545&cy=345&px=20' onMouseOver='onTileHovered(24, 18)'></a>
<a style='background-color: rgba(251.00000023841858,251.00000023841858,251.00000023841858,1.0);left: 200px; ' class='square' href='https://new.reddit.com/r/place/?cx=-544&cy=345&px=20' onMouseOver='onTileHovered(25, 18)'></a>
<a style='background-color: rgba(248.0000004172325,248.0000004172325,249.00000035762787,1.0);left: 208px; ' class='square' href='https://new.reddit.com/r/place/?cx=-543&cy=345&px=20' onMouseOver='onTileHovered(26, 18)'></a>
<a style='background-color: rgba(246.0000005364418,247.00000047683716,247.00000047683716,1.0);left: 216px; ' class='square' href='https://new.reddit.com/r/place/?cx=-542&cy=345&px=20' onMouseOver='onTileHovered(27, 18)'></a>
<a style='background-color: rgba(244.0000006556511,245.00000059604645,245.00000059604645,1.0);left: 224px; ' class='square' href='https://new.reddit.com/r/place/?cx=-541&cy=345&px=20' onMouseOver='onTileHovered(28, 18)'></a>
<a style='background-color: rgba(220.00000208616257,215.0000023841858,186.0000041127205,1.0);left: 232px; ' class='square' href='https://new.reddit.com/r/place/?cx=-540&cy=345&px=20' onMouseOver='onTileHovered(29, 18)'></a>
<a style='background-color: rgba(255.0,213.00000250339508,52.000000700354576,1.0);left: 240px; ' class='square' href='https://new.reddit.com/r/place/?cx=-539&cy=345&px=20' onMouseOver='onTileHovered(30, 18)'></a>
<a style='background-color: rgba(255.0,202.00000315904617,39.00000147521496,1.0);left: 248px; ' class='square' href='https://new.reddit.com/r/place/?cx=-538&cy=345&px=20' onMouseOver='onTileHovered(31, 18)'></a>
<a style='background-color: rgba(255.0,191.00000381469727,27.000000290572643,1.0);left: 256px; ' class='square' href='https://new.reddit.com/r/place/?cx=-537&cy=345&px=20' onMouseOver='onTileHovered(32, 18)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 264px; ' class='square' href='https://new.reddit.com/r/place/?cx=-536&cy=345&px=20' onMouseOver='onTileHovered(33, 18)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 272px; ' class='square' href='https://new.reddit.com/r/place/?cx=-535&cy=345&px=20' onMouseOver='onTileHovered(34, 18)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 280px; ' class='square' href='https://new.reddit.com/r/place/?cx=-534&cy=345&px=20' onMouseOver='onTileHovered(35, 18)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 288px; ' class='square' href='https://new.reddit.com/r/place/?cx=-533&cy=345&px=20' onMouseOver='onTileHovered(36, 18)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 296px; ' class='square' href='https://new.reddit.com/r/place/?cx=-532&cy=345&px=20' onMouseOver='onTileHovered(37, 18)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 304px; ' class='square' href='https://new.reddit.com/r/place/?cx=-531&cy=345&px=20' onMouseOver='onTileHovered(38, 18)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 312px; ' class='square' href='https://new.reddit.com/r/place/?cx=-530&cy=345&px=20' onMouseOver='onTileHovered(39, 18)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 320px; ' class='square' href='https://new.reddit.com/r/place/?cx=-529&cy=345&px=20' onMouseOver='onTileHovered(40, 18)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 328px; ' class='square' href='https://new.reddit.com/r/place/?cx=-528&cy=345&px=20' onMouseOver='onTileHovered(41, 18)'></a>
</div><div class='row' style='top: 152px;'><a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=346&px=20' onMouseOver='onTileHovered(0, 19)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=346&px=20' onMouseOver='onTileHovered(1, 19)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=346&px=20' onMouseOver='onTileHovered(2, 19)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=346&px=20' onMouseOver='onTileHovered(3, 19)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=346&px=20' onMouseOver='onTileHovered(4, 19)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=346&px=20' onMouseOver='onTileHovered(5, 19)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=346&px=20' onMouseOver='onTileHovered(6, 19)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=346&px=20' onMouseOver='onTileHovered(7, 19)'></a>
<a style='background-color: rgba(169.00000512599945,113.00000086426735,33.00000183284283,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=346&px=20' onMouseOver='onTileHovered(8, 19)'></a>
<a style='background-color: rgba(255.0,209.00000274181366,47.0000009983778,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=346&px=20' onMouseOver='onTileHovered(9, 19)'></a>
<a style='background-color: rgba(223.00000190734863,215.0000023841858,174.00000482797623,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=346&px=20' onMouseOver='onTileHovered(10, 19)'></a>
<a style='background-color: rgba(225.00000178813934,227.00000166893005,229.00000154972076,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=346&px=20' onMouseOver='onTileHovered(11, 19)'></a>
<a style='background-color: rgba(248.0000004172325,248.0000004172325,249.00000035762787,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=346&px=20' onMouseOver='onTileHovered(12, 19)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=346&px=20' onMouseOver='onTileHovered(13, 19)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=346&px=20' onMouseOver='onTileHovered(14, 19)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=346&px=20' onMouseOver='onTileHovered(15, 19)'></a>
<a style='background-color: rgba(248.0000004172325,248.0000004172325,249.00000035762787,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=346&px=20' onMouseOver='onTileHovered(16, 19)'></a>
<a style='background-color: rgba(243.00000071525574,244.0000006556511,244.0000006556511,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=346&px=20' onMouseOver='onTileHovered(17, 19)'></a>
<a style='background-color: rgba(246.0000005364418,246.0000005364418,247.00000047683716,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=346&px=20' onMouseOver='onTileHovered(18, 19)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=346&px=20' onMouseOver='onTileHovered(19, 19)'></a>
<a style='background-color: rgba(252.00000017881393,252.00000017881393,252.00000017881393,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=346&px=20' onMouseOver='onTileHovered(20, 19)'></a>
<a style='background-color: rgba(248.0000004172325,249.00000035762787,249.00000035762787,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=346&px=20' onMouseOver='onTileHovered(21, 19)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=346&px=20' onMouseOver='onTileHovered(22, 19)'></a>
<a style='background-color: rgba(252.00000017881393,252.00000017881393,253.0000001192093,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=346&px=20' onMouseOver='onTileHovered(23, 19)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 192px; ' class='square' href='https://new.reddit.com/r/place/?cx=-545&cy=346&px=20' onMouseOver='onTileHovered(24, 19)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 200px; ' class='square' href='https://new.reddit.com/r/place/?cx=-544&cy=346&px=20' onMouseOver='onTileHovered(25, 19)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 208px; ' class='square' href='https://new.reddit.com/r/place/?cx=-543&cy=346&px=20' onMouseOver='onTileHovered(26, 19)'></a>
<a style='background-color: rgba(250.00000029802322,250.00000029802322,251.00000023841858,1.0);left: 216px; ' class='square' href='https://new.reddit.com/r/place/?cx=-542&cy=346&px=20' onMouseOver='onTileHovered(27, 19)'></a>
<a style='background-color: rgba(247.00000047683716,247.00000047683716,247.00000047683716,1.0);left: 224px; ' class='square' href='https://new.reddit.com/r/place/?cx=-541&cy=346&px=20' onMouseOver='onTileHovered(28, 19)'></a>
<a style='background-color: rgba(219.0000021457672,215.0000023841858,190.0000038743019,1.0);left: 232px; ' class='square' href='https://new.reddit.com/r/place/?cx=-540&cy=346&px=20' onMouseOver='onTileHovered(29, 19)'></a>
<a style='background-color: rgba(233.00000131130219,215.0000023841858,137.00000703334808,1.0);left: 240px; ' class='square' href='https://new.reddit.com/r/place/?cx=-539&cy=346&px=20' onMouseOver='onTileHovered(30, 19)'></a>
<a style='background-color: rgba(231.00000143051147,215.0000023841858,143.00000667572021,1.0);left: 248px; ' class='square' href='https://new.reddit.com/r/place/?cx=-538&cy=346&px=20' onMouseOver='onTileHovered(31, 19)'></a>
<a style='background-color: rgba(231.00000143051147,215.0000023841858,143.00000667572021,1.0);left: 256px; ' class='square' href='https://new.reddit.com/r/place/?cx=-537&cy=346&px=20' onMouseOver='onTileHovered(32, 19)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 264px; ' class='square' href='https://new.reddit.com/r/place/?cx=-536&cy=346&px=20' onMouseOver='onTileHovered(33, 19)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 272px; ' class='square' href='https://new.reddit.com/r/place/?cx=-535&cy=346&px=20' onMouseOver='onTileHovered(34, 19)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 280px; ' class='square' href='https://new.reddit.com/r/place/?cx=-534&cy=346&px=20' onMouseOver='onTileHovered(35, 19)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 288px; ' class='square' href='https://new.reddit.com/r/place/?cx=-533&cy=346&px=20' onMouseOver='onTileHovered(36, 19)'></a>
<a style='background-color: rgba(200.00000327825546,133.00000727176666,21.000000648200512,1.0);left: 296px; ' class='square' href='https://new.reddit.com/r/place/?cx=-532&cy=346&px=20' onMouseOver='onTileHovered(37, 19)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 304px; ' class='square' href='https://new.reddit.com/r/place/?cx=-531&cy=346&px=20' onMouseOver='onTileHovered(38, 19)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 312px; ' class='square' href='https://new.reddit.com/r/place/?cx=-530&cy=346&px=20' onMouseOver='onTileHovered(39, 19)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 320px; ' class='square' href='https://new.reddit.com/r/place/?cx=-529&cy=346&px=20' onMouseOver='onTileHovered(40, 19)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 328px; ' class='square' href='https://new.reddit.com/r/place/?cx=-528&cy=346&px=20' onMouseOver='onTileHovered(41, 19)'></a>
</div><div class='row' style='top: 160px;'><a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=347&px=20' onMouseOver='onTileHovered(0, 20)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=347&px=20' onMouseOver='onTileHovered(1, 20)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=347&px=20' onMouseOver='onTileHovered(2, 20)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=347&px=20' onMouseOver='onTileHovered(3, 20)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=347&px=20' onMouseOver='onTileHovered(4, 20)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=347&px=20' onMouseOver='onTileHovered(5, 20)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=347&px=20' onMouseOver='onTileHovered(6, 20)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=347&px=20' onMouseOver='onTileHovered(7, 20)'></a>
<a style='background-color: rgba(169.00000512599945,113.00000086426735,33.00000183284283,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=347&px=20' onMouseOver='onTileHovered(8, 20)'></a>
<a style='background-color: rgba(255.0,202.00000315904617,39.00000147521496,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=347&px=20' onMouseOver='onTileHovered(9, 20)'></a>
<a style='background-color: rgba(226.0000017285347,215.0000023841858,165.00000536441803,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=347&px=20' onMouseOver='onTileHovered(10, 20)'></a>
<a style='background-color: rgba(236.00000113248825,237.0000010728836,238.00000101327896,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=347&px=20' onMouseOver='onTileHovered(11, 20)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=347&px=20' onMouseOver='onTileHovered(12, 20)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=347&px=20' onMouseOver='onTileHovered(13, 20)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=347&px=20' onMouseOver='onTileHovered(14, 20)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=347&px=20' onMouseOver='onTileHovered(15, 20)'></a>
<a style='background-color: rgba(251.00000023841858,251.00000023841858,251.00000023841858,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=347&px=20' onMouseOver='onTileHovered(16, 20)'></a>
<a style='background-color: rgba(212.00000256299973,215.0000023841858,217.0000022649765,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=347&px=20' onMouseOver='onTileHovered(17, 20)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=347&px=20' onMouseOver='onTileHovered(18, 20)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=347&px=20' onMouseOver='onTileHovered(19, 20)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=347&px=20' onMouseOver='onTileHovered(20, 20)'></a>
<a style='background-color: rgba(212.00000256299973,215.0000023841858,217.0000022649765,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=347&px=20' onMouseOver='onTileHovered(21, 20)'></a>
<a style='background-color: rgba(248.0000004172325,249.00000035762787,249.00000035762787,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=347&px=20' onMouseOver='onTileHovered(22, 20)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=347&px=20' onMouseOver='onTileHovered(23, 20)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 192px; ' class='square' href='https://new.reddit.com/r/place/?cx=-545&cy=347&px=20' onMouseOver='onTileHovered(24, 20)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 200px; ' class='square' href='https://new.reddit.com/r/place/?cx=-544&cy=347&px=20' onMouseOver='onTileHovered(25, 20)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 208px; ' class='square' href='https://new.reddit.com/r/place/?cx=-543&cy=347&px=20' onMouseOver='onTileHovered(26, 20)'></a>
<a style='background-color: rgba(252.00000017881393,252.00000017881393,252.00000017881393,1.0);left: 216px; ' class='square' href='https://new.reddit.com/r/place/?cx=-542&cy=347&px=20' onMouseOver='onTileHovered(27, 20)'></a>
<a style='background-color: rgba(248.0000004172325,248.0000004172325,249.00000035762787,1.0);left: 224px; ' class='square' href='https://new.reddit.com/r/place/?cx=-541&cy=347&px=20' onMouseOver='onTileHovered(28, 20)'></a>
<a style='background-color: rgba(215.0000023841858,215.0000023841858,205.00000298023224,1.0);left: 232px; ' class='square' href='https://new.reddit.com/r/place/?cx=-540&cy=347&px=20' onMouseOver='onTileHovered(29, 20)'></a>
<a style='background-color: rgba(232.00000137090683,215.0000023841858,141.0000067949295,1.0);left: 240px; ' class='square' href='https://new.reddit.com/r/place/?cx=-539&cy=347&px=20' onMouseOver='onTileHovered(30, 20)'></a>
<a style='background-color: rgba(227.00000166893005,215.0000023841858,160.00000566244125,1.0);left: 248px; ' class='square' href='https://new.reddit.com/r/place/?cx=-538&cy=347&px=20' onMouseOver='onTileHovered(31, 20)'></a>
<a style='background-color: rgba(225.00000178813934,215.0000023841858,166.00000530481339,1.0);left: 256px; ' class='square' href='https://new.reddit.com/r/place/?cx=-537&cy=347&px=20' onMouseOver='onTileHovered(32, 20)'></a>
<a style='background-color: rgba(255.0,194.00000363588333,30.00000011175871,1.0);left: 264px; ' class='square' href='https://new.reddit.com/r/place/?cx=-536&cy=347&px=20' onMouseOver='onTileHovered(33, 20)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 272px; ' class='square' href='https://new.reddit.com/r/place/?cx=-535&cy=347&px=20' onMouseOver='onTileHovered(34, 20)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 280px; ' class='square' href='https://new.reddit.com/r/place/?cx=-534&cy=347&px=20' onMouseOver='onTileHovered(35, 20)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 288px; ' class='square' href='https://new.reddit.com/r/place/?cx=-533&cy=347&px=20' onMouseOver='onTileHovered(36, 20)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 296px; ' class='square' href='https://new.reddit.com/r/place/?cx=-532&cy=347&px=20' onMouseOver='onTileHovered(37, 20)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 304px; ' class='square' href='https://new.reddit.com/r/place/?cx=-531&cy=347&px=20' onMouseOver='onTileHovered(38, 20)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 312px; ' class='square' href='https://new.reddit.com/r/place/?cx=-530&cy=347&px=20' onMouseOver='onTileHovered(39, 20)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 320px; ' class='square' href='https://new.reddit.com/r/place/?cx=-529&cy=347&px=20' onMouseOver='onTileHovered(40, 20)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 328px; ' class='square' href='https://new.reddit.com/r/place/?cx=-528&cy=347&px=20' onMouseOver='onTileHovered(41, 20)'></a>
</div><div class='row' style='top: 168px;'><a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=348&px=20' onMouseOver='onTileHovered(0, 21)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=348&px=20' onMouseOver='onTileHovered(1, 21)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=348&px=20' onMouseOver='onTileHovered(2, 21)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=348&px=20' onMouseOver='onTileHovered(3, 21)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=348&px=20' onMouseOver='onTileHovered(4, 21)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=348&px=20' onMouseOver='onTileHovered(5, 21)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=348&px=20' onMouseOver='onTileHovered(6, 21)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=348&px=20' onMouseOver='onTileHovered(7, 21)'></a>
<a style='background-color: rgba(176.00000470876694,118.00000056624413,30.00000011175871,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=348&px=20' onMouseOver='onTileHovered(8, 21)'></a>
<a style='background-color: rgba(255.0,198.00000339746475,34.00000177323818,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=348&px=20' onMouseOver='onTileHovered(9, 21)'></a>
<a style='background-color: rgba(226.0000017285347,215.0000023841858,163.00000548362732,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=348&px=20' onMouseOver='onTileHovered(10, 21)'></a>
<a style='background-color: rgba(237.0000010728836,238.00000101327896,239.00000095367432,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=348&px=20' onMouseOver='onTileHovered(11, 21)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=348&px=20' onMouseOver='onTileHovered(12, 21)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=348&px=20' onMouseOver='onTileHovered(13, 21)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=348&px=20' onMouseOver='onTileHovered(14, 21)'></a>
<a style='background-color: rgba(251.00000023841858,252.00000017881393,252.00000017881393,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=348&px=20' onMouseOver='onTileHovered(15, 21)'></a>
<a style='background-color: rgba(212.00000256299973,215.0000023841858,217.0000022649765,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=348&px=20' onMouseOver='onTileHovered(16, 21)'></a>
<a style='background-color: rgba(251.00000023841858,251.00000023841858,251.00000023841858,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=348&px=20' onMouseOver='onTileHovered(17, 21)'></a>
<a style='background-color: rgba(252.00000017881393,253.0000001192093,253.0000001192093,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=348&px=20' onMouseOver='onTileHovered(18, 21)'></a>
<a style='background-color: rgba(252.00000017881393,253.0000001192093,253.0000001192093,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=348&px=20' onMouseOver='onTileHovered(19, 21)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=348&px=20' onMouseOver='onTileHovered(20, 21)'></a>
<a style='background-color: rgba(212.00000256299973,215.0000023841858,217.0000022649765,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=348&px=20' onMouseOver='onTileHovered(21, 21)'></a>
<a style='background-color: rgba(246.0000005364418,246.0000005364418,247.00000047683716,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=348&px=20' onMouseOver='onTileHovered(22, 21)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=348&px=20' onMouseOver='onTileHovered(23, 21)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 192px; ' class='square' href='https://new.reddit.com/r/place/?cx=-545&cy=348&px=20' onMouseOver='onTileHovered(24, 21)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 200px; ' class='square' href='https://new.reddit.com/r/place/?cx=-544&cy=348&px=20' onMouseOver='onTileHovered(25, 21)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 208px; ' class='square' href='https://new.reddit.com/r/place/?cx=-543&cy=348&px=20' onMouseOver='onTileHovered(26, 21)'></a>
<a style='background-color: rgba(251.00000023841858,251.00000023841858,251.00000023841858,1.0);left: 216px; ' class='square' href='https://new.reddit.com/r/place/?cx=-542&cy=348&px=20' onMouseOver='onTileHovered(27, 21)'></a>
<a style='background-color: rgba(247.00000047683716,248.0000004172325,248.0000004172325,1.0);left: 224px; ' class='square' href='https://new.reddit.com/r/place/?cx=-541&cy=348&px=20' onMouseOver='onTileHovered(28, 21)'></a>
<a style='background-color: rgba(218.00000220537186,215.0000023841858,192.00000375509262,1.0);left: 232px; ' class='square' href='https://new.reddit.com/r/place/?cx=-540&cy=348&px=20' onMouseOver='onTileHovered(29, 21)'></a>
<a style='background-color: rgba(255.0,213.00000250339508,52.000000700354576,1.0);left: 240px; ' class='square' href='https://new.reddit.com/r/place/?cx=-539&cy=348&px=20' onMouseOver='onTileHovered(30, 21)'></a>
<a style='background-color: rgba(220.00000208616257,215.0000023841858,186.0000041127205,1.0);left: 248px; ' class='square' href='https://new.reddit.com/r/place/?cx=-538&cy=348&px=20' onMouseOver='onTileHovered(31, 21)'></a>
<a style='background-color: rgba(218.00000220537186,215.0000023841858,196.00000351667404,1.0);left: 256px; ' class='square' href='https://new.reddit.com/r/place/?cx=-537&cy=348&px=20' onMouseOver='onTileHovered(32, 21)'></a>
<a style='background-color: rgba(255.0,192.00000375509262,27.000000290572643,1.0);left: 264px; ' class='square' href='https://new.reddit.com/r/place/?cx=-536&cy=348&px=20' onMouseOver='onTileHovered(33, 21)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 272px; ' class='square' href='https://new.reddit.com/r/place/?cx=-535&cy=348&px=20' onMouseOver='onTileHovered(34, 21)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 280px; ' class='square' href='https://new.reddit.com/r/place/?cx=-534&cy=348&px=20' onMouseOver='onTileHovered(35, 21)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 288px; ' class='square' href='https://new.reddit.com/r/place/?cx=-533&cy=348&px=20' onMouseOver='onTileHovered(36, 21)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 296px; ' class='square' href='https://new.reddit.com/r/place/?cx=-532&cy=348&px=20' onMouseOver='onTileHovered(37, 21)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 304px; ' class='square' href='https://new.reddit.com/r/place/?cx=-531&cy=348&px=20' onMouseOver='onTileHovered(38, 21)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 312px; ' class='square' href='https://new.reddit.com/r/place/?cx=-530&cy=348&px=20' onMouseOver='onTileHovered(39, 21)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 320px; ' class='square' href='https://new.reddit.com/r/place/?cx=-529&cy=348&px=20' onMouseOver='onTileHovered(40, 21)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 328px; ' class='square' href='https://new.reddit.com/r/place/?cx=-528&cy=348&px=20' onMouseOver='onTileHovered(41, 21)'></a>
</div><div class='row' style='top: 176px;'><a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 0px; ' class='square' href='https://new.reddit.com/r/place/?cx=-569&cy=349&px=20' onMouseOver='onTileHovered(0, 22)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 8px; ' class='square' href='https://new.reddit.com/r/place/?cx=-568&cy=349&px=20' onMouseOver='onTileHovered(1, 22)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 16px; ' class='square' href='https://new.reddit.com/r/place/?cx=-567&cy=349&px=20' onMouseOver='onTileHovered(2, 22)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 24px; ' class='square' href='https://new.reddit.com/r/place/?cx=-566&cy=349&px=20' onMouseOver='onTileHovered(3, 22)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 32px; ' class='square' href='https://new.reddit.com/r/place/?cx=-565&cy=349&px=20' onMouseOver='onTileHovered(4, 22)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 40px; ' class='square' href='https://new.reddit.com/r/place/?cx=-564&cy=349&px=20' onMouseOver='onTileHovered(5, 22)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 48px; ' class='square' href='https://new.reddit.com/r/place/?cx=-563&cy=349&px=20' onMouseOver='onTileHovered(6, 22)'></a>
<a style='background-color: rgba(156.00000590085983,105.00000134110451,38.0000015348196,1.0);left: 56px; ' class='square' href='https://new.reddit.com/r/place/?cx=-562&cy=349&px=20' onMouseOver='onTileHovered(7, 22)'></a>
<a style='background-color: rgba(255.0,168.0000051856041,0.0,1.0);left: 64px; ' class='square' href='https://new.reddit.com/r/place/?cx=-561&cy=349&px=20' onMouseOver='onTileHovered(8, 22)'></a>
<a style='background-color: rgba(255.0,201.00000321865082,38.0000015348196,1.0);left: 72px; ' class='square' href='https://new.reddit.com/r/place/?cx=-560&cy=349&px=20' onMouseOver='onTileHovered(9, 22)'></a>
<a style='background-color: rgba(230.00000149011612,215.0000023841858,150.0000062584877,1.0);left: 80px; ' class='square' href='https://new.reddit.com/r/place/?cx=-559&cy=349&px=20' onMouseOver='onTileHovered(10, 22)'></a>
<a style='background-color: rgba(238.00000101327896,239.00000095367432,240.00000089406967,1.0);left: 88px; ' class='square' href='https://new.reddit.com/r/place/?cx=-558&cy=349&px=20' onMouseOver='onTileHovered(11, 22)'></a>
<a style='background-color: rgba(253.0000001192093,253.0000001192093,253.0000001192093,1.0);left: 96px; ' class='square' href='https://new.reddit.com/r/place/?cx=-557&cy=349&px=20' onMouseOver='onTileHovered(12, 22)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 104px; ' class='square' href='https://new.reddit.com/r/place/?cx=-556&cy=349&px=20' onMouseOver='onTileHovered(13, 22)'></a>
<a style='background-color: rgba(252.00000017881393,252.00000017881393,253.0000001192093,1.0);left: 112px; ' class='square' href='https://new.reddit.com/r/place/?cx=-555&cy=349&px=20' onMouseOver='onTileHovered(14, 22)'></a>
<a style='background-color: rgba(212.00000256299973,215.0000023841858,217.0000022649765,1.0);left: 120px; ' class='square' href='https://new.reddit.com/r/place/?cx=-554&cy=349&px=20' onMouseOver='onTileHovered(15, 22)'></a>
<a style='background-color: rgba(243.00000071525574,244.0000006556511,244.0000006556511,1.0);left: 128px; ' class='square' href='https://new.reddit.com/r/place/?cx=-553&cy=349&px=20' onMouseOver='onTileHovered(16, 22)'></a>
<a style='background-color: rgba(248.0000004172325,248.0000004172325,249.00000035762787,1.0);left: 136px; ' class='square' href='https://new.reddit.com/r/place/?cx=-552&cy=349&px=20' onMouseOver='onTileHovered(17, 22)'></a>
<a style='background-color: rgba(247.00000047683716,248.0000004172325,248.0000004172325,1.0);left: 144px; ' class='square' href='https://new.reddit.com/r/place/?cx=-551&cy=349&px=20' onMouseOver='onTileHovered(18, 22)'></a>
<a style='background-color: rgba(248.0000004172325,248.0000004172325,249.00000035762787,1.0);left: 152px; ' class='square' href='https://new.reddit.com/r/place/?cx=-550&cy=349&px=20' onMouseOver='onTileHovered(19, 22)'></a>
<a style='background-color: rgba(249.00000035762787,249.00000035762787,250.00000029802322,1.0);left: 160px; ' class='square' href='https://new.reddit.com/r/place/?cx=-549&cy=349&px=20' onMouseOver='onTileHovered(20, 22)'></a>
<a style='background-color: rgba(248.0000004172325,248.0000004172325,249.00000035762787,1.0);left: 168px; ' class='square' href='https://new.reddit.com/r/place/?cx=-548&cy=349&px=20' onMouseOver='onTileHovered(21, 22)'></a>
<a style='background-color: rgba(212.00000256299973,215.0000023841858,217.0000022649765,1.0);left: 176px; ' class='square' href='https://new.reddit.com/r/place/?cx=-547&cy=349&px=20' onMouseOver='onTileHovered(22, 22)'></a>
<a style='background-color: rgba(253.0000001192093,254.00000005960464,254.00000005960464,1.0);left: 184px; ' class='square' href='https://new.reddit.com/r/place/?cx=-546&cy=349&px=20' onMouseOver='onTileHovered(23, 22)'></a>