-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathinteriors.lua
2561 lines (2499 loc) · 80.7 KB
/
interiors.lua
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
--------- ### Problem IPLs ###
-- RequestImap(174727090) -- Unknown, possibly causing CTDs
--
local interiorsActive = false
Citizen.CreateThread(function()
while true do
Citizen.Wait(5000)
local interior = GetInteriorAtCoords(-308.88, 777.37, 118.77)
local isValid = IsValidInterior(interior)
if interiorsActive == false then
if IsInteriorReady(interior) then
if IsInteriorEntitySetActive(interior, "val_bank_front_windows") then
interiorsActive = true
print('Interiors are already active.')
else
getValJail()
getValBank()
getValSaloon()
getValGenstore()
getKorrigan()
getBeechers()
getBraManor()
getBronte()
interiorsActive = true
print('Interiors are now active!')
end
end
else
print('Interiors are already active.')
break
end
end
end)
function getValBank()
local interior = GetInteriorAtCoords(-308.88, 777.37, 118.77)
local isValid = IsValidInterior(interior)
if isValid then
if IsInteriorReady(interior) then
if IsInteriorEntitySetActive(interior, "val_bank_front_windows") then
print("Valentine Bank Interior Already Active")
else
ActivateInteriorEntitySet(interior, "val_bank_int_curtainsopen")
-- ActivateInteriorEntitySet(interior, "val_bank_mud5_windowblock")
ActivateInteriorEntitySet(interior, "val_bank_front_windows")
print("Valentine Bank Interior Activated")
end
end
end
end
function getValSaloon()
local interior = GetInteriorAtCoords(-310.0119, 802.9316, 117.9846)
local isValid = IsValidInterior(interior)
if isValid then
if IsInteriorReady(interior) then
if IsInteriorEntitySetActive(interior, "front_windows") then
print("Valentine Saloon Interior Already Active")
else
ActivateInteriorEntitySet(interior, "front_windows")
ActivateInteriorEntitySet(interior, "val_saloon_br03_bed")
ActivateInteriorEntitySet(interior, "6_chair_poker_set")
print("Valentine Saloon Interior Activated")
end
end
end
end
function getValJail()
local interior = GetInteriorAtCoords(-273.4513, 811.3408, 118.38)
local isValid = IsValidInterior(interior)
if isValid then
if IsInteriorReady(interior) then
if IsInteriorEntitySetActive(interior, "val_jail_int_walla") then
print("Valentine Jail Interior Already Active")
else
ActivateInteriorEntitySet(interior, "val_jail_int_walla")
ActivateInteriorEntitySet(interior, "val_jail_int_wallb")
print("Valentine Jail Interior Activated")
end
end
end
end
function getValGenstore()
local interior = GetInteriorAtCoords(323.0087, 801.0296, 116.8817)
local isValid = IsValidInterior(interior)
if isValid then
if IsInteriorReady(interior) then
if IsInteriorEntitySetActive(interior, "val_genstore_night_light") then
print("Valentine Jail Interior Already Active")
else
ActivateInteriorEntitySet(interior, "val_genstore_night_light")
print("Valentine General Store Nightlight Activated")
end
end
end
end
function getKorrigan()
local interior = GetInteriorAtCoords(3285.792, -1325.603, 43.08399)
local isValid = IsValidInterior(interior)
if isValid then
if IsInteriorReady(interior) then
if IsInteriorEntitySetActive(interior, "korrigan_props_default") then
print("Riverboat Interior Already Active")
else
ActivateInteriorEntitySet(interior, "korrigan_props_poker")
ActivateInteriorEntitySet(interior, "korrigan_props_default")
print("Riverboat Interior Activated")
end
end
end
end
function getBeechers()
local interior = GetInteriorAtCoords(-1643.893, -1358.232, 86.4541)
local isValid = IsValidInterior(interior)
if isValid then
if IsInteriorReady(interior) then
if IsInteriorEntitySetActive(interior, "bee_01_house_fireplace_on") then
print("Beechers Interior Already Active")
else
ActivateInteriorEntitySet(interior, "bee_01_masterBR_bed01")
ActivateInteriorEntitySet(interior, "Beechers_decorated_after_Abigail3")
ActivateInteriorEntitySet(interior, "IntGrp_livingrm_furniture_basic")
ActivateInteriorEntitySet(interior, "bee_01_house_fireplace_on")
print("Beechers Interior Activated")
end
end
end
end
function getBronte()
local interior = GetInteriorAtCoords(2385.548, -1221.158, 46.1729)
local isValid = IsValidInterior(interior)
if isValid then
if not IsInteriorEntitySetActive(interior, "bronte_shutters_open") then
ActivateInteriorEntitySet(interior, "bronte_shutters_open")
ActivateInteriorEntitySet(interior, "bronte_glass_unbreakable")
end
end
end
function getBraManor()
local interior = GetInteriorAtCoords(1006.364, -1766.812, 46.5922)
local isValid = IsValidInterior(interior)
if isValid then
if not IsInteriorEntitySetActive(interior, "bra_mansion_WindowsStatic") then
ActivateInteriorEntitySet(interior, "bra_mansion_WindowsStatic")
ActivateInteriorEntitySet(interior, "bra_int_bedroom_clean")
end
end
end
-------------------------------- ############# -- Valentine Investigate -- ############### ----------------------
RequestImap(-661560211) -- Barrels Everywhere?
RequestImap(-1933617196) -- Structure in front of gunsmith?
-- RequestImap(1202020135) -- Blank Banners across mainstreet
RequestImap(-892659042) -- Leatherworker on west side of encampment
RequestImap(-1588793465) -- Structure in front of motel?
RequestImap(1186533019) -- Chair in front of Law Offices
RequestImap(-156313117) -- Structure in front of Law Offices
RequestImap(56708243) -- Green Building and General Store Boarded up?
RequestImap(1136898294) -- Saloon Boarded Up??
RequestImap(30201771) -- Water Trough?
RequestImap(-1475403379) -- Fencing at farm
RequestImap(696143352) -- Prison Break?
RequestImap(897455211) -- something regarding the saloon and store?
RequestImap(1285430299) -- Crates outside saloon and gen store?
RequestImap(1573766063) -- General Store - Fruit in front?
RequestImap(-554932707) -- Something regarding the general store
-------------------------------- ############# -- Valentine Multiplayer (Online) Components -- ############### ----------------------
-- RequestImap(731209239) -- Fast Travel Marker Valentine Train Station
-- RequestImap(824748066) -- Event Marker Western side of town along path ( -229.93, 946.05, 138.33 )
-------------------------------- ############# -- Valentine Necessities -- ############### ----------------------
RemoveImap(774477221) -- Valentine Sheriff's Office Crumbled Wall parts...
RequestImap(1097534152) -- Valentine Sheriffs Office Outer wall
-- RequestImap(2095116685) -- supplies/boxes in mainstreet front of General Store, Saloon, Green building
RequestImap(192173299) -- Valentine -- Support Beams and signs -- Mainstreet Saloon
-- RequestImap(1081087978) -- Valentine -- Green Building and Restaurant mainstreet - Pre-paint, almost completed stage. (Help wanted sign) -- https://gyazo.com/b4d1f0b57d17c470e7db030f050db1c0 (Do Not Load Both(1/2))
RequestImap(903666582) -- Valentine -- Green Building and Restaurant mainstreet - Painted, completed stage. Keane's Rooms for Rent -- https://gyazo.com/b8f9f77bb52aeb37aac6dd21463a2133 (Do Not Load Both(2/2))
-- RequestImap(282485265) -- Valentine Green building boarded up
RequestImap(637874199) -- Valentine -- Green Building Lamp
RequestImap(-1521525254) --Green House Valentine -- Exterior Trees and Flowers 1(Run 1 and 2 together)
RequestImap(-761186147) --Green House Valentine -- Exterior Trees and Flowers 2(Run 1 and 2 together)
-- RequestImap(2040843256) -- Valentine -- Construction supplies outside of Smithfields Saloon / Green Building -- https://gyazo.com/c5b67926f2c4304b74061ca62b345a1b
-- RequestImap(999248445) -- Valentine -- Yellow Wagon with Blue Barrels outside Smithfields Saloon -- https://gyazo.com/467e15f5cd1de68bad5e2d414fa330d4
-- RequestImap(-713587740) -- Valentine -- Construction Material in Roadway -- https://gyazo.com/665f85e9e2b00ec78c5fd6b2b0dd2332
-- RequestImap(-1217078386) -- Valentine -- Wagons blocking road through Valentine -- https://gyazo.com/c6758dd8f86601eaeefef2b6ef69f38c -- https://gyazo.com/83e1fb7bb26402e6d6329777e7a766a9
-- RequestImap(-1579403437) -- Valentine -- Wagon Parked in front of bank -- https://gyazo.com/5b08f55828e867f872552bb8881dc293
-- RequestImap(517553365) -- Valentine -- 2 Wagons, 1 in front of and behind of blue house across from Keane's Saloon. -- https://gyazo.com/4444709e3cc069fddd8d4003d5f0caa3
-- RequestImap(805009584) -- Valentine -- Western Barricades -- https://gyazo.com/631b61e44cae28d4c7c4391d1d7830a7
-- RequestImap(-560409108) -- Valentine -- Eastern Barricades -- https://gyazo.com/45304e29a207805e373bcd921af6a668
-- RequestImap(-518785376) -- Valentine -- Southern Barricades -- https://gyazo.com/2fa60fa4d76205783907e2eec98253ec
-------------------------------- ############# -- Valentine Mainstreet Sheriffs Office -- ############### ----------------------
-- RequestImap(-1301569116) -- Valentine -- Sheriffs Office boarded up
-------------------------------- ############# -- Valentine Mainstreet Law Offices -- ############### ----------------------
-- RequestImap(-52140817) -- Valentine -- Law Office Boarded Up
RequestImap(924412185) -- Law offices (REMOVE FOR structural damage)
-------------------------------- ############# -- Valentine Mainstreet Hotel -- ############### ----------------------
-- RequestImap(-780819048) -- Valentine -- Hotel Boarded Up
-------------------------------- ############# -- Valentine Mainstreet Bank -- ############### ----------------------
-- RequestImap(-1989899190) -- Valentine -- Bank Boarded Up
-------------------------------- ############# -- Valentine Mainstreet Doctors Office -- ############### ----------------------
-- RequestImap(-981203673) -- Valentine -- Doctors Office boarded up
-------------------------------- ############# -- Valentine Mainstreet Saloon -- ############### ----------------------
-- RequestImap(-776975047) -- Valentine -- Main Street Saloon Front Doors locked
-- RequestImap(1385025009) -- Valentine -- Closed sign on main street Saloon
-- RequestImap(199047531) -- Valentine -- Mainstreet Saloon boarded windows
-- RequestImap(-1158072415) -- Valentine -- Main Street Saloon Sign in front
-------------------------------- ############# -- Valentine Mainstreet General Store -- ############### ----------------------
-- RequestImap(406334892) -- Valentine -- General Store Closed Sign on door --
-- RequestImap(1228600352) -- Valentine General Store boarded up
-- RequestImap(135886022) -- Valentine -- Sign in front of General Store
-------------------------------- ############# -- Valentine Cemetery -- ############### ----------------------
RemoveImap(-391187090) -- Grass on grave Valentine cemetery
RemoveImap(-1902184438) -- dirt pile from grave dug Valentine cemetery
RemoveImap(1886602884) -- pre-grave dug grass over
RemoveImap(740012805) -- dirt pile from grave dug Valentine cemetery
RemoveImap(1236921921) -- dirt pile from grave dug Valentine cemetery
RemoveImap(1963724330) -- pre-grave grass... if graves present, remove
RemoveImap(-1871745961) -- Coffin in left grave, Valentine
RemoveImap(2125514970) -- Coffin in center grave, Valentine
RemoveImap(267578156) -- Coffin in right grave, Valentine
-------------------------------- ############# -- Valentine --- -- ############### ----------------------
------------------------------------- Railroad Stuff
-- RequestImap(-794503195) -- Broken Bridge and Pieces Pieces -- 520 1754 187
------------------------------------- Central Union Train Mission
RequestImap(2077623691) -- Track Bed - Full Legnth
RequestImap(-555736180) -- Crossing 1818
RequestImap(-693812694) --Section 1 1875
RequestImap(-1386614896) --Section 2 Track at 2070
RequestImap(2080640229) --Section 3 2156
RequestImap(-805522215) --Section 4 2177
RequestImap(499044444) --Section 5
RequestImap(-196117122) --Section 6 2184
RequestImap(-1022518533) --Section 7 2201
RequestImap(691955519) --Section 8 with bridge 2203
RequestImap(-142900294) --Section 9 2229.82
------------------------------------- #### END OF RAILWAY STUFF ####
------------------------------------- Heartland Oil Station
RemoveImap(-84516711) --Run Down Closed Station
RequestImap(-657241692) --Oil Pipe
RequestImap(-1112373128) --Oil Tower
------------------------------------- #### Heartland Oil Station ####
------------------------------------- Hole Near Rhodes - Woman's Rights Mission Start
RequestImap(1277540472) -- 1433 -1591 69
------------------------------------- #### END OF WOMAN'S RIGHTS ####
------------------------------------- #### BEECHERS ####
RequestImap(1353861354) -- Beechers - Barn interior, lanterns and doors
RemoveImap(611701601) -- Beechers Barn - Work supplies
RemoveImap(901412334) -- Beechers Barn - Work supplies
RemoveImap(703356498) -- Beechers Barn - Work supplies
RemoveImap(-650822431) -- Beechers Barn - Work supplies
RequestImap(-956131204) -- Beechers Barn exterior and fencing
RemoveImap(2006257967)
RemoveImap(-2008632686)
RemoveImap(-1615103170)
RequestImap(578474998) -- Beechers border fencing
RequestImap(-1860722801) -- Gazebo
RemoveImap(-692583342)
RemoveImap(-669282002)
RemoveImap(-1355464862)
RemoveImap(-1141450523)
RemoveImap(-252820785)
RemoveImap(258899919)
RemoveImap(-767883927)
RemoveImap(-535715562) -- Scaffolding // remove when completed
RequestImap(931647489) -- Beechers interior
RequestImap(1467774743) -- Beechers Interior
RemoveImap(2030594491) -- Construction materials
RemoveImap(-790660125)
RemoveImap(33260939) -- Beechers construction supplies
RemoveImap(780653384) -- Beechers construction supplies
RemoveImap(180676027) -- Beechers construction supplies
RemoveImap(-270212770) -- Beechers construction supplies
RemoveImap(-211623797) -- Beechers construction supplies
RemoveImap(862349416) -- Beechers construction supplies
RemoveImap(699225334) -- Beechers construction supplies -- Roof going on
RequestImap(411742897) -- Completed exterior
RequestImap(349494711) -- clothes line, wagon wheel,
RemoveImap(-706105482) -- crate on deck by window
RemoveImap(176369335) -- old windows from previous shack
RequestImap(2087181890)
RemoveImap(637627640)
RemoveImap(44077654) -- support beam - construction
RemoveImap(839872819) -- support beam - construction
RemoveImap(-1656895602) -- support beam - construction
RemoveImap(-583969090)
RemoveImap(-364121869)
RemoveImap(-1073832871)
RemoveImap(-1786558629)
RemoveImap(-1548753996)
RemoveImap(-1784133719)
RemoveImap(-1667461262)
RequestImap(1757739778)
RequestImap(-2029237844)
RequestImap(-2000794023)
RequestImap(-531137142)
RequestImap(5422464)
RemoveImap(203845253) -- Silo construction materials
RemoveImap(-1658679165) -- Silo construction base and materials
RemoveImap(258733332) -- Silo construction base and materials
RemoveImap(79028136) -- Silo construction base and materials
RequestImap(-218940381) -- Silo completed
RemoveImap(634752926) -- chairs and construction supplies
RemoveImap(984271748) -- chairs and construction supplies
RemoveImap(43335376)
RemoveImap(1444950942) -- green wagon side of house/clipping -- full of bricks
RemoveImap(910783469) -- green wagon side of house/clipping -- full of bricks
RemoveImap(727408145) -- green wagon front of house/clipping -- full of bricks
RemoveImap(429636242) -- pile of wood north side of house -- construction materials
RemoveImap(-19364596) -- pile of wood north side of house -- construction materials
RemoveImap(2131035495) -- green wagon side of house/clipping -- full of bricks
RequestImap(1236917971) -- Outhouse
RemoveImap(-316448350) -- construction materials
RemoveImap(-496874464) -- construction materials
RemoveImap(-794515291) -- construction materials
RemoveImap(275588949) -- construction materials
RemoveImap(-52330434) -- construction materials
RemoveImap(-2131457946) -- construction materials
RemoveImap(1819926822) -- interior framing -- construction
RemoveImap(1529593482) -- interior framing -- construction
RemoveImap(-668911501) -- framing, remove when exterior is up.
RemoveImap(-1012618146) -- old structure
RemoveImap(2111816145) -- old structure rubble
RemoveImap(-722030448) -- old structure
RemoveImap(-974480336) -- canvas gazebos
RemoveImap(197447134) -- canvas gazebo north, wagon, and supplies
RequestImap(-918785150) -- firepit seating
RemoveImap(1256771838) -- wagon wreckage in cropfield
RemoveImap(1205945639) -- lumber pile main driveway in
RemoveImap(1532774697) -- lumber pile main driveway in
RemoveImap(-114633341) -- saw horse main driveway in
RemoveImap(-90646166) -- floating saddle, hat, and rope in corral
RemoveImap(1681117196) --pile of old lumber
RemoveImap(-803019223) -- fire behind house
RemoveImap(449426161) -- lantern
RemoveImap(-999913940) -- lantern
RemoveImap(-30541382) -- lantern
RemoveImap(-960328988) -- lantern
-- GRASS and GROUND
-- RequestImap(-1496619689) -- Green Ground 670 -1236 44
RequestImap(-61896664) -- Worn Brown Ground 670 -1236 44
RequestImap(-648893593) -- Version 1 of Grass and Ferns
RequestImap(1534006738) -- Version 2 of Grass and Ferns
RequestImap(-376056363) -- Version 3 of Grass and Ferns
RequestImap(519091847) -- Version 4 of Grass and Ferns
RequestImap(-1225606266) -- Adds bush to 692 -1263 44
RequestImap(-1874720370) -- Lots of ferns, weeds and tall grass
RequestImap(-1936937394) -- Grass, Flowers and weeds]]
-- German Guys Wagon
-- RequestImap(-1123811713) -- Wagon v1 657 -1231 44
-- RequestImap(1679038623) -- Wagon v2 657 -1231 44
-- RequestImap(-546137515) -- Wagon v3 657 -1231 44 3 Boxes in Back Canopy
-- RequestImap(-462274808) -- Small Box in wgaon
-- RequestImap(-1284301817) -- Antlers on German Wagon
-- RequestImap(1169958167) -- Red Table Cloth German Wagon
--Arthurs Wagon
-- RequestImap(2072112547) -- Wagon v1 with Canopy
-- RequestImap(-2016771661) -- Wagon v2
-- RequestImap(202127432) -- Wagon v3 with Shevles Tools
-- RequestImap(1601820048) -- Hide Rug
-- RequestImap(2025485344) -- Table Top
-- RequestImap(901520480) -- Table
-- RequestImap(-1999465365) -- Right Skull Wagon
-- RequestImap(853723410) -- Left Alligator Skull Wagon
-- RequestImap(-1774140220) -- Chest v1
-- RequestImap(-262271608) -- Chest v2 Striped Shirt
-- RequestImap(102652153) -- Shaving Kit
-- RequestImap(-1434077648) -- Small Containers
-- RequestImap(-1728638189) -- Bigger boxes v1
-- RequestImap(93121605) -- Bigger Boxes v2
-- RequestImap(-205043526) -- Bigger Boxes v3
-- RequestImap(1027586707) -- Bigger Boxes v4
-- RequestImap(-1570232590) -- Open Flipped Small Box
-- RequestImap(648514907) -- Open Box Flipped
-- RequestImap(1351016737) -- Little Box inside Flipped Box
-- RequestImap(721720861) -- Small Box on Ground
-- RequestImap(1620317782) -- v1 Mixture of Boxes
-- RequestImap(1952267752) -- v2 Mixture of Boxes
-- RequestImap(-1739164071) -- Book on Small Table
-- RequestImap(-1331617405) -- Book
-- RequestImap(-959814975) -- Box by Book v1
-- RequestImap(-1676997321) -- Box by book v2
-- RequestImap(1096093290) -- Quiver on Ground
-- RequestImap(626928579) -- Picktures on Ground
-- RequestImap(313722477) -- Tools no wagon
-- RequestImap(976082270) -- Tools, painting, guns
-- RequestImap(153759048) -- Chair
-- RequestImap(-1147256587) -- Map
-- RequestImap(1676971154) -- Photo
-- Pearsons Wagon
-- RequestImap(764763647) -- Provisions Wagon v1
-- RequestImap(1742990618) Provisions Wagon v2
-- RequestImap(-751959361) -- Provisons Wagon v3
-- RequestImap(-1279618207) -- Provisions Wagon v4 Empty
-- RequestImap(-492479795) -- Skull Provisions Wagon
-- RequestImap(-320577790) -- Barrel with Lantern
-- RequestImap(1246210400) -- Provision Boxes Large
-- RequestImap(-172246728) --Table - Cutting Board - Barrel of Salt v1
-- RequestImap(-850189983) --Table - Cutting Board - Barrel of Salt v2
-- RequestImap(126970802) -- Two Boxes Provisions
-- RequestImap(715730031) -- Pans and Blue Table Cloth for Table v1
-- RequestImap(349896400) -- Pans and Table Cloth for Table v2
-- RequestImap(110400393) -- Provisions, keg, rope for Table v1 (will work with v2 as well but clips)
-- RequestImap(482931525) -- Provisions, Fruits, Milk, red cloth
-- RequestImap(-1291679096) -- Potato Bags for Wagon v3
-- RequestImap(-387018143) -- Two Barrels
-- RequestImap(5585502) -- Red Cloth v2 watermelons, pumpkins flour
-- RequestImap(1309652195) -- Water and Dishes
-- RequestImap(-112364237) --Ammo Tools
-- RequestImap(-1983416665) -- Spilled Flour
-- RequestImap(438624963) -- Supplies
-- RequestImap(82769080) -- Plate and Spilled Flour
-- RequestImap(1125807846) -- Bag of Flour
-- RequestImap(-1894946791) -- Plate
-- RequestImap(-1362716862) -- red cloth v3 provisions
-- RequestImap(-624219879) -- Pans open can ammo for v1 table
-- RequestImap(977061573) -- Pans open can ammo for v2 table
-- RequestImap(1729014506) -- Provisions for table v1
-- RequestImap(-916538063) -- Provisions for table v2
-- RequestImap(1886481528) -- Spilled flour
-- RequestImap(-1507376753) -- Bag of Flour
-- RequestImap(-1370620659) -- Pans for table v1
-- RequestImap(1074130180) -- Pans for table v2
-- RequestImap(652735549) -- Provisions for table v1
-- Javiers Tent
-- RequestImap(-347518940) -- Skull near Banjo
-- RequestImap(-1887167048) -- Banjo
-- RequestImap(530288130) -- Cushion Top near log
-- RequestImap(1538837441) -- Fur seat for Log near Banjo
-- RequestImap(-1999825729) -- Brown Cow Hide near Banjo
-- Hosea
-- RequestImap(2728487) -- Tent v1 Supplies 660 -1256 43
-- RequestImap(1674800958) -- Tent v2 Empty 660 -1256 43
-- RequestImap(-782359587) -- Tent v3 Patches
-- RequestImap(510052409) -- Tent v4 Opened at front only
-- RequestImap(291770965) -- Tent v5 closed
-- RequestImap(-2143243848) -- Tent v6 Open on front
-- RequestImap(1209017192) -- Tent v7 open front
-- RequestImap(-644575724) -- Tevt v8 closed
-- RequestImap(1700661865) -- Tent v9 Closed
-- RequestImap(-2001921071) -- Square Rug near round table top
-- RequestImap(1210820782) -- Barrel with Latntern
-- Bills Sleeping Area
-- RequestImap(-1292493167) -- Rope and Boxes near Dream Catcher
-- RequestImap(-1451784475) -- v1 Canopy inbetween bucket and blue chairs
-- RequestImap(1028224932) -- v2 Canopy inbetween bucket and blue chairs
-- RequestImap(1128417383) -- v3 Canopy with Candle
-- RequestImap(292845400) -- Skull and bucket Near Rope and Boxes
-- RequestImap(1609975546) -- Crates and Gun Table
-- RequestImap(-948006506) -- Blue Towel Dynamite
-- RequestImap(1700045179) -- Dynamite
-- RequestImap(-1045678888) -- Small Tables
-- RequestImap(-1663177928) --Lure Kit
-- Back Wagons
-- RequestImap(1084869405) -- Two Wagons v1 Supplies 674 -1267 43
-- RequestImap(1636281938) -- Two Wagons v2 Empty 674 -1267 43
-- RequestImap(-1642249622) -- Two wagons v3 empty Canopy
-- Dutchs tent
-- RequestImap(-109425099) -- Tent v1 Empty Open Both ends
-- RequestImap(539843907) -- Tent v2 Empty Right Side Opened
-- RequestImap(180356041) -- Tent v3 Opened Both Ends
-- RequestImap(-71508135) -- Tent v4 Flaps Closed
-- RequestImap(40009123) -- Tent v5 Flaps Closed
-- RequestImap(1070723367) -- Tent v6 Flaps Closed
-- RequestImap(-146943962) -- Tent v7 Open both ends
-- RequestImap(1261237250) -- Tent v8 open front
-- RequestImap(-692521236) -- Tent v9 open on back
-- RequestImap(1049842342) -- Inside Tent Bear Rug Stove Books Barrels and Canopy
-- RequestImap(1034009086) -- Inside Tent Boxes, Stove Lanturn, Canopy
-- RequestImap(-160392273) -- Tent Inside Music Box Canopy
-- RequestImap(2119205605) -- Cash Box behind Dutchs Tent 1
-- RequestImap(-619637948) -- Cash box behind Dutchs tent 2
-- RequestImap(-1639921686) -- Tent Flap
-- Base
-- RequestImap(1802272784) -- Camp Extras (MUST LOAD FOR NORMAL SETUP)
-- RequestImap(2108368013) -- Tent frames for Dutch, Hosea and Arthurs Bed (Must Load for Normal Setup)
-- RequestImap(1402472902) -- Setting Up Camp v1
-- RequestImap(-1458944281) -- Setting Up Camp v2
-- RequestImap(1691578074) -- Log Fire Pit Trash Broken Barrels
-- RequestImap(810684093) -- Blue Trash Barrels on Beach
-- RequestImap(321594819) -- Broken Table on Beach
-- RequestImap(-385999832) -- Blue Trash Barrels on Beach
-- RequestImap(-1656481590) -- Target Shooting on Beach (Missing what hanging targets are tied to)
-- RequestImap(1706275010) -- Round Table
-- RequestImap(-792944828) -- Round Table Top
-- RequestImap(-1836870707) -- Round Table Seats no light
-- RequestImap(1290371072) -- Seats and light for round table
-- RequestImap(-1880340209) -- Camp Fire, 3 stools, 2 sleeping bags beside Arthurs site
-- RequestImap(-2000080725) -- Chicken Coop
-- RequestImap(719147410) -- Blue Chair and Stool for gaming table
-- RequestImap(-989202374) -- Antlers on Big Center Tree
-- RequestImap(-1010466481) -- Supplies in Lean Tos
-- RequestImap(-1247551347) -- Broken Chest
-- RequestImap(1717489303) -- Three Lean Tos
-- RequestImap(1692451176) -- Lantern Game Table on a Post
-- RequestImap(220566669) --Lantern Game Table
-- RequestImap(-1045282549) -- White Animal Skin Rugs near sitting rock
-- RequestImap(2123887232) -- Fire pit near white skins
-- RequestImap(-809371454) -- Small barrel and table to Banjo
-- RequestImap(-436009554) -- Piece of Paper near Banjo
-- RequestImap(1997423854) -- Map near Paper
-- RequestImap(157361403) -- Large Dream Catcher
-- RequestImap(-814821283) -- Fishing Stuff
------------------------------------- #### END OF RHODES STORY CAMP ####
------------------------------------- Rhodes Camp
-- RequestImap(-159557995) -- Two Tents, Wagon, Chairs
------------------------------------- #### END OF RHODES CAMP ####
------------------------------------- Boat and Supplies Near Rhodes Camp
-- RequestImap(1733394134) -- Boat and Supplies 807 -1235 41
------------------------------------- #### END OF RHODES BOAT ####
------------------------------------- Rhodes Camp
-- RequestImap(1313890873) -- Small Camp in the Woods Just North of Dutch's Rhodes Base
------------------------------------- #### END OF RHODES CAMP ####
------------------------------------- Rhodes Cemetery
RequestImap(-1366431554) -- Covers Large hole with grass patch
RequestImap(-2144587490) -- Covers small plot hole with mound of dirt
-- RequestImap(-158824350) -- Dirt in Small Plot (visually can't see it)
------------------------------------- #### END OF RHODES CEMETERY ####
------------------------------------- Braithwaite Mansion
--Mansion Interior
RequestImap(1149195254) --Brathwaite House Shell
-- RequestImap(-1643869063) -- House Burnt Down
RequestImap(58066174) -- Interior
-- RequestImap(1601599776) -- House on fire Smoke (Smoke and Burning Sounds Only)
-- RequestImap(-437251660) -- House of Fire Flames
-- Mansion Exterior
-- RequestImap(-1220264217) -- Shurbs and Bushes
-- RequestImap(-1508467572) -- Ferns Bushes Weeds Overgrown (Use with Burned Down Version of House)
-- RequestImap(-990258606) -- Small Trees
RequestImap(1944013855) -- Add Open Shudders Upstairs Bed Room and Downstairs Library
-- RequestImap(-2137633069) -- Shudders Close Upstairs Bedroom and Downstairs Library
RequestImap(-880373663) -- Front Balcony Lantern Added
RequestImap(-70021332) -- Adds Working tools and supplies to upper balcony
------------------------------------- #### END OF BRAITHWAITE MANSION ####
------------------------------------- Grey Estates
RequestImap(-677977650) -- Normal Barn Frame
RequestImap(702350293) -- Barn Interior
-- RequestImap(419559004) -- Burnt Barn Frame 1
RequestImap(1426715569) -- Adds Field Props
-- RequestImap(1284656212) -- Burning Structure
-- RequestImap(-1162161651) -- Fields on fire
-- RequestImap(557212279) -- Burnt Plants
-- RequestImap(1786931635) -- Burnt out fields
RequestImap(26815048) -- Normal Fields
RequestImap(-1229109520) -- Green Plants
------------------------------------- #### END OF GREY ESTATES ####
------------------------------------- Blackwater Town Hall
RequestImap(-2082201137) --Blackwater Ground Town Hall
RequestImap(1343343014) --Blackwater Town Hall Addons Construction
RequestImap(739412171) -- Two Boards in front of city hall (Goes with Town Hall Construction)
RequestImap(-5339556) --Bank Under Construction
-- RequestImap(1173561253) -- Tents Beside City Hall Near Trech
-- RequestImap(1470738186) -- Adds Pre-Construcion Ground (Ground does not mesh well with contrustion IPLs)
-- RequestImap(-1632348233) -- Adds Trees and Grass (DO NOT USE WITH CONSTRUCTION IPL, WILL MERGE VISUALS)
------------------------------------- #### END OF BLACKWATER TOWN HALL ####
------------------------------------- First Camp - Winter Area -1346 2407 311
-- RequestImap(867231253) -- Ground Spring Melt
-- RequestImap(1248111234) -- Ground Early Spring Melt
-- RequestImap(474287981) -- Ground Standard Winter
RequestImap(-1331012521) -- Ground After Snowfall Winter
-- RequestImap(-2119625926) -- Barrels and Crates
-- RequestImap(1113693078) -- Snow on Two Crates
-- RequestImap(660686456) -- Crates for use with Snow Cover Crates (FOR USE WITH Snow on Crates)
-- RequestImap(-8749224) -- Torches Boxes and Crates (DO NOT USE SNOW ON CRATES WITH THIS)
RequestImap(-1991237877) -- Boxes
RequestImap(-1670453688) -- Broken Wagons
RequestImap(-743781837) -- Fire in Pit
RequestImap(2114706334) -- Fire Pit
RequestImap(-1306375743) -- Forge Fire
------------------------------------- #### END OF FIRST CAMP ####
------------------------------------- Farm House near Mining Town - -559 2686 319
RequestImap(-338553155) -- Exterior House
RequestImap(-1636879249) -- Normal Looking Interior
-- RequestImap(-323126593) -- Burned Out Interior
-- RequestImap(-889869458) -- Debris
-- RequestImap(1590561203) -- Flames
RequestImap(-1106668087) -- Adds Wagon Wheel near Front Door
RequestImap(2028590076) -- Cash Box Interior
------------------------------------- #### END OF FARM HOUSE ####
------------------------------------- Strawberry
-- RequestImap(-134556459) -- Doctors House Locked Door (No Interior) -1799 -428 158
RequestImap(131323483) -- Doctors House Interior and Unlocked Front Door
-- RequestImap(270920361) -- Crates on Doctors Porch
-- RequestImap(1892122519)-- Locked Door Micahs Gun House (No Interior) -1773 -431 154
RequestImap(-130638369) -- Micahs Gun House Interior with Unlocked Front Door (Upstairs does not work, other doors are locked)
RequestImap(2137790641) -- Jail Cell Window Fixed
RequestImap(1934919499) -- Jail Cell Window Fixed
RequestImap(-515396642) -- Jail Cell Window Fixed
-- RequestImap(993595204) -- Window Debris
-- RequestImap(1291083725) -- Window Debris
------------------------------------- #### END OF STRAWBERRY ####
----------------------- Saint Denis Doctor office
-- RequestImap(-473077489) -- Doors (fixes hole) no interior
RequestImap(619024057) -- full interior with doors
------------------------------------- #### END OF SAINT DENIS DOCTOR OFFICE ####
----------------------- Casino boat
RequestImap(-614421509) -- boat shell
RequestImap(604920544) -- upstairs interior
RequestImap(1382135686) -- main room interior
RequestImap(-1968130469) -- railings
RequestImap(-276259505) -- railings
------------------------------------- #### END OF CASINO ####
----------------------- ferry boat
RequestImap(-723094901)
------------------------------------- #### END OF FERRY BOAT ####
----------------------- Beechers field
-- RequestImap(1929454697) -- beechers field side rows of some medium crop
-- RequestImap(1649902358) -- beechers field side rows of some small crop
-- RequestImap(1864768904) -- beechers field crops in middle
-- RequestImap(938290967) -- beechers field crops in middle
-- RequestImap(1169279648) -- beechers field crops in middle
-- RequestImap(-284612948) -- beechers field tilled field
RequestImap(-1765152778) -- beechers field logs laying in
RequestImap(-2072231077) -- beechers field plants over area
RequestImap(-1253110600) -- beechers field hole in ground fix
------------------------------------- #### END OF BEECHERS FIELD ####
----------------------- hole at -1627.81, 224.5, 106.45
RequestImap(1861460906)
------------------------------------- #### END OF HOLE AT -1627.81, 224.5, 106.45 ####
----------------------- farm with hole in ground next to W in West Elizabeth
RequestImap(-928367655)
RequestImap(890107948)
RequestImap(1153046408)
RequestImap(1634621556)
RequestImap(-243627670)
RequestImap(38567760)
RequestImap(-1954278106)
RequestImap(-947200121)
RequestImap(629362551)
RequestImap(-786579336)
RequestImap(-1305545118)
RequestImap(-825836321) -- ground
RequestImap(446554495) -- ground
RequestImap(-262959893) -- ground
RequestImap(-735136865) -- ground
RequestImap(-868830916)
RequestImap(764025611)
-- RequestImap(1802934313) --trees
-- RequestImap(607468222) --shrubs
-- RequestImap(2108112010) --trees
-- RequestImap(1208537422) --trees
-- RequestImap(361734047) -- trees
-- RequestImap(-1552951782) --trees
-- RequestImap(1391886974) -- plants
-- RequestImap(-1142569437) -- plants
-- RequestImap(474113610) -- plants
-- RequestImap(1298607560)
-- RequestImap(-297340751) -- small pines
RequestImap(-1079295176)
RequestImap(1271713904)
RequestImap(1423681694)
RequestImap(1293624693)
RequestImap(-1305406402)
RequestImap(1983816160)
RequestImap(-602816690)
RequestImap(636278554)
RequestImap(-285245562)
RequestImap(1031662866)
RequestImap(-1041976064)
RequestImap(1221694281)
RequestImap(1036815507)
RequestImap(775893260)
RequestImap(-329355129)
-- RequestImap(2117211184) --fence
-- RequestImap(-1042390616) -- barn interior
-- RequestImap(-118700196) --props outside
RequestImap(991016631)
RequestImap(57105576)
RequestImap(238757788)
RequestImap(927020127)
RequestImap(1388161943)
RequestImap(-7594117)
RequestImap(-1680050035)
RequestImap(41398635)
RequestImap(462263849)
RequestImap(1422134667)
RequestImap(1263244828)
RequestImap(-1813544782)
RequestImap(1008375999)
RequestImap(117485200)
RequestImap(-188216801)
RequestImap(-2047539266)
RequestImap(1053919002)
------------------------------------- #### end farm with hole in ground next to W in West Elizabeth ####
----------------------- Fantana Theatre Saint Denis
RequestImap(-1667265438) -- signs on building 1
--RequestImap(175578406) -- signs on building 2
--RequestImap(1137646647) -- fantana doors (fills hole)
RequestImap(-898081380) -- fantana theatre interior
-- RequestImap(-468635897) -- sign option 1 out front (advertisement)
-- RequestImap(-771786794) -- sign option 2 picture
-- RequestImap(-626641013) -- sign option 3 scull
-- RequestImap(1088045886) -- sign option 4 (advertisement)
-- RequestImap(-1678761663) -- sign option 5 (advertisement)
-- RequestImap(535384482) -- sign option 6 (advertisement)
-- RequestImap(1724413302) -- sign option 7 (advertisement)
RequestImap(-1267247536) -- sign option 8 (advertisement)
------------------------------------- #### END Fantana Theatre Saint Denis ####
----------------------- Prison
RequestImap(350100475) --Cellar doors
------------------------------------- #### END Prison ####
----------------------- Hotel Chevalier
-- RequestImap(481139295) -- scaffolding and grand opening soon sing
RequestImap(-274080837) -- fixed hole in wall
------------------------------------- #### END Hotel Chevalier ####
----------------------- House interior 1119 481.74 96
RequestImap(-787042507)
------------------------------------- #### END House interior ####
----------------------- Patch hole in building -1860, -1722, 109.25
RequestImap(-1696865897)
------------------------------------- #### END Patch hole in building ####
----------------------- Missing cabin -2376.0, -1590.96, 156.0
RequestImap(-1387511711) -- shell
RequestImap(1901132483) -- interior
-- RequestImap(-2082345587) -- onfire
-- RequestImap(-715865581) -- fallen tree
------------------------------------- #### END Missing cabin ####
-- RequestImap(1879779330) -- sign outside tent version 1
-- RequestImap(1104143966) -- sign outside tent version 2
-- RequestImap(1027093524) -- sign outside tent version 3
RequestImap(-1617847332) -- sign outside tent version 4
-- RequestImap(-763477089) -- partial door flap open
-- RequestImap(317070801) -- full closed flap
------------------------------------- #### END Traveling Magic Lantern Show -- Valentine --####
----------------------------------------- ### Armadillo Fires ### Southwest
-- RequestImap(-1745210725) -- SW add debris
-- RequestImap(-1096712211) -- SW add debris
-- RequestImap(-1941005496) -- SW add debris
-- RequestImap(1898267848) -- SW add ember
-- RequestImap(974280355) -- SW add ember
-- RequestImap(1756181464) -- SW add ember
-- RequestImap(-816857367) -- SW add ember
-- RequestImap(-72482077) -- SW add flame
-- RequestImap(-1122265410) -- SW add flame
-- RequestImap(-935952905) -- SW add flame
-- RequestImap(1309948033) -- SW add flame
-- RequestImap(1941336822) -- SW add flame
-- RequestImap(712371053) -- SW add flame
-- RequestImap(1710282603) -- SW add flame
-- RequestImap(574303518) -- SW add charred ground
-- RequestImap(-752772715) -- SW add smoke
-- RequestImap(503623514) -- SW add smoke
-- RequestImap(-407026996) -- SW add smoke
----------------------------------------- ### Armadillo Fires ### Northeast
-- RequestImap(-1029093195) -- NE add debris
-- RequestImap(-1325390493) -- NE add debris
-- RequestImap(-1622834706) -- NE add debris?
-- RequestImap(257582350) -- NE add ember
-- RequestImap(-39730787) -- NE add ember
-- RequestImap(-1438901569) -- NE add ember
-- RequestImap(-772691681) -- NE add flame
-- RequestImap(-2110850686) -- NE add flame
-- RequestImap(-1142062162) -- NE add Flame
-- RequestImap(32078073) -- NE add flame
-- RequestImap(1011350990) -- NE add flame
-- RequestImap(1007204499) -- NE add flame
-- RequestImap(705321299) -- NE add flame
-- RequestImap(34346755) -- NE smoke
-- RequestImap(482102371) -- NE smoke
-- RequestImap(-502343927) -- NE smoke
-- RequestImap(112916013) -- NE add charred ground
----------------------------------------- ### Armadillo Fires ### Southeast
-- RequestImap(-1725439174) -- SE add ember
-- RequestImap(-1443390498) -- SE add debris
-- RequestImap(689576469) -- SE add debris
-- RequestImap(-1750010031) -- SE add debris
-- RequestImap(1857654366) -- SE add ember
-- RequestImap(2095655613) -- SE add ember
-- RequestImap(1049317994) -- SE add flame
-- RequestImap(-820561187) -- SE add flame
-- RequestImap(-280121448) -- SE add flame
-- RequestImap(-1268841107) -- SE add flame
-- RequestImap(-279038963) -- SE add flame
-- RequestImap(2087785010) -- SE add flame
-- RequestImap(161441935) -- SE add flame
-- RequestImap(-1603458673) -- SE add charred ground
-- RequestImap(1065585604) -- SE smoke
-- RequestImap(-175048740) -- SE smoke
-- RequestImap(-482127039) -- SE smoke
----------------------------------------- ### END ARMADILLO FIRES ###
--------------------- Hole/cabin east of emerald station
RequestImap(-574996782) -- house shell/front enterence
RequestImap(1169511062) -- house interior
RequestImap(-1266106154) -- fence border and wood pile outside house
RequestImap(-1377975054) -- ground trail to house
-- RequestImap(-165202905) -- green over hole (no trail)
-- RequestImap(897624424) -- grass over hole
-- RequestImap(-1327148782) -- grass over hole
-- RequestImap(-1965378386) -- grass over hole
------------------------------------- #### END Hole/cabin east of emerald station --####
--------------------- Valentine extras
RequestImap(886997475) -- bounty board
RequestImap(325677491) -- white sign gunshop
RequestImap(1936501508) -- big old sign gunshop
RequestImap(-2083943324) -- debris infront of liqour
RequestImap(610256856) -- debris and remodle next to liqour
RequestImap(1804593020) -- barrels on sheriff step
RequestImap(-1905652203) -- bench infront of gunshop
RequestImap(2470511) -- box and stool next to gun shop
------------------------------------- #### END Valentine extras --####
RequestImap(666617953)
RequestImap(-1892595931)
RequestImap(-784156210)
RequestImap(-2097346584)
RequestImap(-1000738568)
RequestImap(-991619789)
RequestImap(-799526632)
RequestImap(1003623269)
RequestImap(1325716092)
RequestImap(-1049500949)
RequestImap(951314072)
RequestImap(-1878882174)
RequestImap(724436573)
RequestImap(-1744253204)
RequestImap(-2009766528)
RequestImap(-1781246069)
RequestImap(-159723514)
RequestImap(-1801047945)
RequestImap(-590227673)
RequestImap(1823159188)
RequestImap(-407068688)
RequestImap(1552753100)
RequestImap(1548242606)
RequestImap(-555917871)
RequestImap(1777348822)
RequestImap(-1824080033)
RequestImap(1460466036)
RequestImap(-1279036865)
RequestImap(-1818498296)
RequestImap(116162819)
RequestImap(588746212)
RequestImap(-1593160175)
RequestImap(-2040493861)
RequestImap(-1382265257)
RequestImap(-508205317)
RequestImap(-232598845)
RequestImap(1497923922)
RequestImap(-1069586228)
RequestImap(-1816233372)
RequestImap(-1773409329)
RequestImap(-688744902)
RequestImap(1987335384)
RequestImap(-1149736196)
RequestImap(-983957271)
RequestImap(427220750)
RequestImap(-1926787493)
RequestImap(1840600379)
RequestImap(2136811572)
RequestImap(1332067900)
RequestImap(-1118337851)
RequestImap(1236490949)
RequestImap(-1701626270)
RequestImap(-557964826)
RequestImap(603871447)
RequestImap(-1569624057)
RequestImap(-378395191)
RequestImap(273551835)
RequestImap(-961488528)
RequestImap(1936009597)
RequestImap(-425834853)
RequestImap(-1055748784)
RequestImap(-694809996)
RequestImap(-279703229)
RequestImap(-2053475031)
RequestImap(-623091266)
RequestImap(-217646849)
RequestImap(-313831898)
RequestImap(1694736240)
RequestImap(634920011)
RequestImap(2035758463)
RequestImap(425205960)
RequestImap(54402003)
RequestImap(-481093102)
RequestImap(-1923021027)
RequestImap(-1721168110)
RequestImap(937192284)
RequestImap(706203603)
RequestImap(579021239)
RequestImap(272490690)
RequestImap(263152228)
RequestImap(996571604)
RequestImap(301693437)
RequestImap(846337294)
RequestImap(-512601161)
RequestImap(765343099)
RequestImap(-909306169)
RequestImap(-879315604)
RequestImap(1503442953)
RequestImap(31909846)
RequestImap(-1227807056)
RequestImap(1234648758)
RequestImap(1616712776)
RequestImap(1049849921)
RequestImap(1252084553)
RequestImap(-995906750)
RequestImap(-2112989134)
RequestImap(722810050)
RequestImap(-1710969071)
RequestImap(1499112197)
RequestImap(929504930)
RequestImap(37622013)
RequestImap(808313916)
RequestImap(276427301)
RequestImap(539464064)
RequestImap(-1501864740)
RequestImap(-1070814495)
RequestImap(1713296185)
RequestImap(506519174)
RequestImap(1903066940)
RequestImap(-563006151)
RequestImap(-792399058)
RequestImap(2123794495)
RequestImap(-248246131)
RequestImap(-1435884039)
RequestImap(-108299713)
RequestImap(-2009032789)
RequestImap(-822172378)
RequestImap(-340009312)
RequestImap(1122045165)
RequestImap(1352837232)
RequestImap(-1740687448)
RequestImap(-1508256931)
RequestImap(1739445890)
RequestImap(-817060178)
RequestImap(-737812908)
RequestImap(389213738)
RequestImap(2126897368)
RequestImap(1314976319)
RequestImap(-780302065)
RequestImap(-1226654727)
RequestImap(1849913721)
RequestImap(573576705)
RequestImap(-173548630)
RequestImap(262039053)
RequestImap(-456215895)
RequestImap(-792369764)
RequestImap(-170108806)
RequestImap(-1967848432)
RequestImap(1647812004)
RequestImap(-856826868)
RequestImap(-1928361302)
RequestImap(-315113250)
RequestImap(-1850873053)