-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhotel_list.py
1400 lines (1396 loc) · 238 KB
/
hotel_list.py
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
#extracting_review_data('Komaneka_at_Monkey_Forest-Ubud_Bali',"https://www.tripadvisor.com.sg/ShowUserReviews-g297701-d307569-Reviews-Komaneka_at_Monkey_Forest-Ubud_Bali.html",3000);
#extracting_review_data('Hotel214','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-#Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
#extracting_review_data('Hotel1','http://www.tripadvisor.com/ShowUserReviews-g297701-d1136203-r408201833-Gajah_Biru_Bungalows-Ubud_Bali.html#review_408201833',3000);
#extracting_review_data('Hotel2','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
#extracting_review_data('Hotel3','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
#extracting_review_data('Hotel4','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
#extracting_review_data('Hotel5','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
#extracting_review_data('Hotel6','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel7','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel8','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel9','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel10','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel11','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel12','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel13','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel14','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel15','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel16','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel17','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel18','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel19','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel20','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel21','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel22','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel23','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel24','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel25','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel26','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel27','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel28','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel29','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel30','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel31','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel32','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel33','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel34','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel35','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel36','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel37','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel38','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel39','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel40','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel41','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel42','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel43','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel44','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel45','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel46','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel47','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel48','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel49','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel50','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel51','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel52','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel53','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel54','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel55','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel56','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel57','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel58','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel59','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel60','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel61','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel62','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel63','http://www.tripadvisor.com/ShowUserReviews-g297701-d5279694-r410119271-Sankara_Resort-Ubud_Bali.html#review_410119271',3000);
extracting_review_data('Hotel64','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel65','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel66','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel67','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel68','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel69','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel70','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel71','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel72','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel73','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel74','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel75','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel76','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel77','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel78','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel79','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel80','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel81','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel82','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel83','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel84','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel85','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel86','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel87','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel88','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel89','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel90','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel91','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel92','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel93','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel94','http://www.tripadvisor.com/ShowUserReviews-g1137831-d7733886-r407333181-The_Ocean_Sunset_Villas_Ceningan-Nusa_Lembongan_Bali.html#review_407333181',3000);
extracting_review_data('Hotel95','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel96','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel97','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel98','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel99','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel100','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel101','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel102','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel103','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel104','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel105','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel106','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel107','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel108','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel109','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel110','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel111','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel112','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel113','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel114','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel115','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel116','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel117','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel118','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel119','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel120','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel121','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel122','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel123','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel124','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel125','http://www.tripadvisor.com/ShowUserReviews-g469404-d3683062-r412308047-PING_Hotel_Seminyak_Bali-Seminyak_Bali.html#review_412308047',3000);
extracting_review_data('Hotel126','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel127','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel128','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel129','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel130','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel131','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel132','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel133','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel134','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel135','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel136','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel137','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel138','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel139','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel140','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel141','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel142','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel143','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel144','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel145','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel146','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel147','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel148','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel149','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel150','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel151','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel152','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel153','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel154','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel155','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel156','http://www.tripadvisor.com/ShowUserReviews-g469404-d6635852-r412532984-Courtyard_Bali_Seminyak_Resort-Seminyak_Bali.html#review_412532984',3000);
extracting_review_data('Hotel157','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel158','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel159','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel160','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel161','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel162','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel163','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel164','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel165','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel166','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel167','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel168','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel169','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel170','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel171','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel172','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel173','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel174','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel175','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel176','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel177','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel178','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel179','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel180','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel181','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel182','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel183','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel184','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel185','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel186','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel187','http://www.tripadvisor.com/ShowUserReviews-g1137831-d1234550-r387985129-Oka7_Bungalow-Nusa_Lembongan_Bali.html#review_387985129',3000);
extracting_review_data('Hotel188','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel189','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel190','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel191','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel192','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel193','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel194','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel195','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel196','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel197','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel198','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel199','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel200','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel201','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel202','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel203','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel204','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel205','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel206','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel207','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel208','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel209','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel210','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel211','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel212','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel213','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel215','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel216','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel217','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel218','http://www.tripadvisor.com/ShowUserReviews-g297701-d1136203-r408201833-Gajah_Biru_Bungalows-Ubud_Bali.html#review_408201833',3000);
extracting_review_data('Hotel219','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel220','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel221','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel222','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel223','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel224','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel225','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel226','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel227','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel228','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel229','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel230','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel231','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel232','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel233','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel234','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel235','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel236','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel237','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel238','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel239','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel240','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel241','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel242','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel243','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel244','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel245','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel246','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel247','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel248','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel249','http://www.tripadvisor.com/ShowUserReviews-g297701-d6938623-r410491106-Puri_Sebali_Resort-Ubud_Bali.html#review_410491106',3000);
extracting_review_data('Hotel250','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel251','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel252','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel253','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel254','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel255','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel256','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel257','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel258','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel259','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel260','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel261','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel262','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel263','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel264','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel265','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel266','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel267','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel268','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel269','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel270','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel271','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel272','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel273','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel274','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel275','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel276','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel277','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel278','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel279','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel280','http://www.tripadvisor.com/ShowUserReviews-g1137831-d1234550-r387985129-Oka7_Bungalow-Nusa_Lembongan_Bali.html#review_387985129',3000);
extracting_review_data('Hotel281','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel282','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel283','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel284','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel285','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel286','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel287','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel288','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel289','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel290','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel291','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel292','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel293','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel294','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel295','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel296','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel297','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel298','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel299','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel300','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel301','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel302','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel303','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel304','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel305','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel306','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel307','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel308','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel309','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel310','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel311','http://www.tripadvisor.com/ShowUserReviews-g469404-d6635852-r412532984-Courtyard_Bali_Seminyak_Resort-Seminyak_Bali.html#review_412532984',3000);
extracting_review_data('Hotel312','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel313','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel314','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel315','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel316','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel317','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel318','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel319','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel320','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel321','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel322','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel323','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel324','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel325','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel326','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel327','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel328','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel329','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel330','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel331','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel332','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel333','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel334','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel335','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel336','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel337','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel338','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel339','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel340','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel341','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel342','http://www.tripadvisor.com/ShowUserReviews-g608487-d307581-r408992925-Legian_Beach_Hotel-Legian_Bali.html#review_408992925',3000);
extracting_review_data('Hotel343','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel344','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel345','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel346','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel347','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel348','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel349','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel350','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel351','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel352','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel353','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel354','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel355','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel356','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel357','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel358','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel359','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel360','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel361','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel362','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel363','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel364','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel365','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel366','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel367','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel368','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel369','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel370','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel371','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel372','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel373','http://www.tripadvisor.com/ShowUserReviews-g469404-d6635852-r412532984-Courtyard_Bali_Seminyak_Resort-Seminyak_Bali.html#review_412532984',3000);
extracting_review_data('Hotel374','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel375','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel376','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel377','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel378','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel379','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel380','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel381','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel382','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel383','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel384','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel385','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel386','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel387','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel388','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel389','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel390','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel391','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel392','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel393','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel394','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel395','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel396','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel397','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel398','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel399','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel400','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel401','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel402','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel403','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel404','http://www.tripadvisor.com/ShowUserReviews-g469404-d7368654-r412570693-The_Trans_Resort_Bali-Seminyak_Bali.html#review_412570693',3000);
extracting_review_data('Hotel405','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel406','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel407','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel408','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel409','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel410','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel411','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel412','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel413','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel414','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel415','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel416','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel417','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel418','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel419','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel420','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel421','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel422','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel423','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel424','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel425','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel426','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel427','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel428','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel429','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel430','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel431','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel432','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel433','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel434','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel435','http://www.tripadvisor.com/ShowUserReviews-g297697-d3947950-r408174578-The_Kuta_Beach_Heritage_Hotel_Bali_Managed_by_Accor-Kuta_Bali.html#review_408174578',3000);
extracting_review_data('Hotel436','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel437','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel438','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel439','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel440','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel441','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel442','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel443','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel444','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel445','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel446','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel447','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel448','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel449','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel450','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel451','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel452','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel453','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel454','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel455','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel456','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel457','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel458','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel459','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel460','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel461','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel462','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel463','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel464','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel465','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel466','http://www.tripadvisor.com/ShowUserReviews-g297701-d2648944-r401570104-Sunset_Hill-Ubud_Bali.html#review_401570104',3000);
extracting_review_data('Hotel467','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel468','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel469','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel470','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel471','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel472','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel473','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel474','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel475','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel476','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel477','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel478','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel479','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel480','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel481','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel482','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel483','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel484','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel485','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel486','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel487','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel488','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel489','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel490','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel491','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel492','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel493','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel494','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel495','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel496','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel497','http://www.tripadvisor.com/ShowUserReviews-g297697-d3947950-r408174578-The_Kuta_Beach_Heritage_Hotel_Bali_Managed_by_Accor-Kuta_Bali.html#review_408174578',3000);
extracting_review_data('Hotel498','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel499','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel500','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel501','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel502','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel503','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel504','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel505','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel506','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel507','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel508','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel509','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel510','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel511','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel512','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel513','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel514','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel515','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel516','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel517','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel518','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel519','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel520','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel521','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel522','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel523','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel524','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel525','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel526','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel527','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel528','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel529','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel530','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel531','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel532','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel533','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel534','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel535','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel536','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel537','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel538','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel539','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel540','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel541','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel542','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel543','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel544','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel545','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel546','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel547','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel548','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel549','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel550','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel551','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel552','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel553','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel554','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel555','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel556','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel557','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel558','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel559','http://www.tripadvisor.com/ShowUserReviews-g297696-d6476817-r408507298-The_Open_House-Jimbaran_Bali.html#review_408507298',3000);
extracting_review_data('Hotel560','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel561','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel562','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel563','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel564','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel565','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel566','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel567','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel568','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel569','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel570','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel571','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel572','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel573','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel574','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel575','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel576','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel577','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel578','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel579','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel580','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel581','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel582','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel583','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel584','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel585','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel586','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel587','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel588','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel589','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel590','http://www.tripadvisor.com/ShowUserReviews-g297701-d2648944-r401570104-Sunset_Hill-Ubud_Bali.html#review_401570104',3000);
extracting_review_data('Hotel591','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel592','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel593','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel594','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel595','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel596','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel597','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel598','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel599','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel600','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel601','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel602','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel603','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel604','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel605','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel606','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel607','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel608','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel609','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel610','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel611','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel612','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel613','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel614','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel615','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel616','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel617','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel618','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel619','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel620','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel621','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel622','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel623','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel624','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel625','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel626','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel627','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel628','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel629','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel630','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel631','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel632','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel633','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel634','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel635','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel636','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel637','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel638','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel639','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel640','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel641','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel642','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel643','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel644','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel645','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel646','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel647','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel648','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel649','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel650','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel651','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel652','http://www.tripadvisor.com/ShowUserReviews-g297701-d639773-r391907358-Ketut_s_Place-Ubud_Bali.html#review_391907358',3000);
extracting_review_data('Hotel653','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel654','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel655','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel656','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel657','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel658','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel659','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel660','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel661','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel662','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel663','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel664','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel665','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel666','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel667','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel668','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel669','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel670','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel671','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel672','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel673','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel674','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel675','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel676','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel677','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel678','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel679','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel680','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel681','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel682','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel683','http://www.tripadvisor.com/ShowUserReviews-g608487-d307581-r408992925-Legian_Beach_Hotel-Legian_Bali.html#review_408992925',3000);
extracting_review_data('Hotel684','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel685','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel686','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel687','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel688','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel689','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel690','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel691','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel692','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel693','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel694','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel695','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel696','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel697','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel698','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel699','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel700','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel701','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel702','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel703','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel704','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel705','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel706','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel707','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel708','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel709','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel710','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel711','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel712','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel713','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel714','http://www.tripadvisor.com/ShowUserReviews-g297701-d639773-r391907358-Ketut_s_Place-Ubud_Bali.html#review_391907358',3000);
extracting_review_data('Hotel715','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel716','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel717','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel718','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel719','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel720','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel721','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel722','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel723','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel724','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel725','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel726','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel727','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel728','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel729','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel730','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel731','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel732','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel733','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel734','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel735','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel736','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel737','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel738','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel739','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel740','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel741','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel742','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel743','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel744','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel745','http://www.tripadvisor.com/ShowUserReviews-g469404-d534638-r411024159-The_Royal_Beach_Seminyak_Bali_MGallery_Collection-Seminyak_Bali.html#review_411024159',3000);
extracting_review_data('Hotel746','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel747','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel748','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel749','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel750','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel751','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel752','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel753','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel754','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel755','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel756','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel757','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel758','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel759','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel760','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel761','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel762','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel763','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel764','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel765','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel766','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel767','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel768','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel769','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel770','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel771','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel772','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel773','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel774','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel775','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel776','http://www.tripadvisor.com/ShowUserReviews-g1137831-d7733886-r407333181-The_Ocean_Sunset_Villas_Ceningan-Nusa_Lembongan_Bali.html#review_407333181',3000);
extracting_review_data('Hotel777','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel778','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel779','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel780','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel781','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel782','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel783','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel784','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel785','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel786','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel787','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel788','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel789','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel790','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel791','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel792','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel793','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel794','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel795','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel796','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel797','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel798','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel799','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel800','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel801','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel802','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel803','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel804','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel805','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel806','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel807','http://www.tripadvisor.com/ShowUserReviews-g297701-d309357-r404732982-Hotel_Tjampuhan_Spa-Ubud_Bali.html#review_404732982',3000);
extracting_review_data('Hotel808','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel809','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel810','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel811','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel812','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel813','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel814','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel815','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel816','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel817','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel818','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel819','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel820','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel821','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel822','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel823','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel824','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel825','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel826','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel827','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel828','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel829','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel830','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel831','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel832','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel833','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel834','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel835','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel836','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel837','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel838','http://www.tripadvisor.com/ShowUserReviews-g469404-d2515034-r412046407-Centra_Taum_Seminyak_Bali-Seminyak_Bali.html#review_412046407',3000);
extracting_review_data('Hotel839','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel840','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel841','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel842','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel843','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel844','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel845','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel846','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel847','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel848','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel849','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel850','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel851','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel852','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel853','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel854','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel855','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel856','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel857','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel858','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel859','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel860','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel861','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel862','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel863','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel864','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel865','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel866','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel867','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel868','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel869','http://www.tripadvisor.com/ShowUserReviews-g297701-d639773-r391907358-Ketut_s_Place-Ubud_Bali.html#review_391907358',3000);
extracting_review_data('Hotel870','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel871','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel872','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel873','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel874','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel875','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel876','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel877','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel878','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel879','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel880','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel881','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel882','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel883','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel884','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel885','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel886','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel887','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel888','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel889','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel890','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel891','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel892','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel893','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel894','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel895','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel896','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel897','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel898','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel899','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel900','http://www.tripadvisor.com/ShowUserReviews-g608487-d1391615-r412040315-Pullman_Bali_Legian_Nirwana-Legian_Bali.html#review_412040315',3000);
extracting_review_data('Hotel901','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel902','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel903','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel904','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel905','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel906','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel907','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel908','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel909','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel910','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel911','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel912','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel913','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel914','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel915','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel916','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel917','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel918','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel919','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel920','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel921','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel922','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel923','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel924','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel925','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel926','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel927','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel928','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel929','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel930','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel931','http://www.tripadvisor.com/ShowUserReviews-g469404-d534638-r411024159-The_Royal_Beach_Seminyak_Bali_MGallery_Collection-Seminyak_Bali.html#review_411024159',3000);
extracting_review_data('Hotel932','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel933','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel934','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel935','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel936','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel937','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel938','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel939','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel940','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel941','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel942','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel943','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel944','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel945','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel946','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel947','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel948','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel949','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel950','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel951','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel952','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel953','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel954','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel955','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel956','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel957','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel958','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel959','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel960','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel961','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel962','http://www.tripadvisor.com/ShowUserReviews-g297701-d2648944-r401570104-Sunset_Hill-Ubud_Bali.html#review_401570104',3000);
extracting_review_data('Hotel963','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel964','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel965','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel966','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);
extracting_review_data('Hotel967','http://www.tripadvisor.com/ShowUserReviews-g469404-d627082-r411193058-The_Kunja_Villas_Spa-Seminyak_Bali.html#review_411193058',3000);
extracting_review_data('Hotel968','http://www.tripadvisor.com/ShowUserReviews-g469404-d4549522-r405465938-Luna2_Studiotel-Seminyak_Bali.html#review_405465938',3000);
extracting_review_data('Hotel969','http://www.tripadvisor.com/ShowUserReviews-g469404-d607687-r410938415-Dusun_Villas_Bali-Seminyak_Bali.html#review_410938415',3000);
extracting_review_data('Hotel970','http://www.tripadvisor.com/ShowUserReviews-g297696-d609918-r404196493-Jamahal_Private_Resort_SPA-Jimbaran_Bali.html#review_404196493',3000);
extracting_review_data('Hotel971','http://www.tripadvisor.com/ShowUserReviews-g297701-d1810099-r406161294-The_Samaya_Bali_Ubud-Ubud_Bali.html#review_406161294',3000);
extracting_review_data('Hotel972','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel973','http://www.tripadvisor.com/ShowUserReviews-g297701-d1168205-r411839925-Komaneka_at_Bisma-Ubud_Bali.html#review_411839925',3000);
extracting_review_data('Hotel974','http://www.tripadvisor.com/ShowUserReviews-g297698-d572368-r409332818-Kayumanis_Nusa_Dua_Private_Villa_Spa-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_409332818',3000);
extracting_review_data('Hotel975','http://www.tripadvisor.com/ShowUserReviews-g297701-d506292-r410423954-Uma_by_COMO_Ubud-Ubud_Bali.html#review_410423954',3000);
extracting_review_data('Hotel976','http://www.tripadvisor.com/ShowUserReviews-g297701-d626311-r411641144-Komaneka_at_Tanggayuda-Ubud_Bali.html#review_411641144',3000);
extracting_review_data('Hotel977','http://www.tripadvisor.com/ShowUserReviews-g2646686-d6478989-r408495141-Floating_Leaf_Eco_Luxury_Retreat-Sukawati_Bali.html#review_408495141',3000);
extracting_review_data('Hotel978','http://www.tripadvisor.com/ShowUserReviews-g297696-d651426-r411667389-Kayumanis_Jimbaran_Private_Estate_Spa-Jimbaran_Bali.html#review_411667389',3000);
extracting_review_data('Hotel979','http://www.tripadvisor.com/ShowUserReviews-g469404-d603376-r409315991-The_Samaya_Bali_Seminyak-Seminyak_Bali.html#review_409315991',3000);
extracting_review_data('Hotel980','http://www.tripadvisor.com/ShowUserReviews-g297701-d609896-r404289302-Junjungan_Ubud_Hotel_and_Spa-Ubud_Bali.html#review_404289302',3000);
extracting_review_data('Hotel981','http://www.tripadvisor.com/ShowUserReviews-g1599559-d309351-r407922928-The_Damai-Lovina_Beach_Bali.html#review_407922928',3000);
extracting_review_data('Hotel982','http://www.tripadvisor.com/ShowUserReviews-g297696-d7311692-r409121746-The_Villas_at_AYANA_Resort-Jimbaran_Bali.html#review_409121746',3000);
extracting_review_data('Hotel983','http://www.tripadvisor.com/ShowUserReviews-g297701-d2314151-r411243414-Komaneka_at_Rasa_Sayang-Ubud_Bali.html#review_411243414',3000);
extracting_review_data('Hotel984','http://www.tripadvisor.com/ShowUserReviews-g608487-d7289453-r410335559-Seaside_Suites_Bali-Legian_Bali.html#review_410335559',3000);
extracting_review_data('Hotel985','http://www.tripadvisor.com/ShowUserReviews-g297701-d309331-r412025519-Wapa_di_Ume_Resort_and_Spa-Ubud_Bali.html#review_412025519',3000);
extracting_review_data('Hotel986','http://www.tripadvisor.com/ShowUserReviews-g469404-d594928-r412125123-The_Elysian-Seminyak_Bali.html#review_412125123',3000);
extracting_review_data('Hotel987','http://www.tripadvisor.com/ShowUserReviews-g469404-d301649-r411750462-The_Legian_Bali-Seminyak_Bali.html#review_411750462',3000);
extracting_review_data('Hotel988','http://www.tripadvisor.com/ShowUserReviews-g297701-d518441-r406856871-The_Chedi_Club_Tanah_Gajah_Ubud_Bali_a_GHM_hotel-Ubud_Bali.html#review_406856871',3000);
extracting_review_data('Hotel989','http://www.tripadvisor.com/ShowUserReviews-g1465999-d1581596-r410816252-The_Royal_Santrian_Luxury_Beach_Villas-Tanjung_Benoa_Nusa_Dua_Peninsula_Bali.html#review_410816252',3000);
extracting_review_data('Hotel990','http://www.tripadvisor.com/ShowUserReviews-g297698-d3633238-r410834574-Mulia_Villas-Nusa_Dua_Nusa_Dua_Peninsula_Bali.html#review_410834574',3000);
extracting_review_data('Hotel991','http://www.tripadvisor.com/ShowUserReviews-g1629368-d1082544-r411689255-Zen_Resort_Bali-Seririt_Bali.html#review_411689255',3000);
extracting_review_data('Hotel992','http://www.tripadvisor.com/ShowUserReviews-g469404-d302392-r412145833-The_Oberoi_Bali-Seminyak_Bali.html#review_412145833',3000);
extracting_review_data('Hotel993','http://www.tripadvisor.com/ShowUserReviews-g297701-d307569-r411531124-Komaneka_at_Monkey_Forest-Ubud_Bali.html#review_411531124',3000);
extracting_review_data('Hotel994','http://www.tripadvisor.com/ShowUserReviews-g297701-d7022088-r412080002-The_Kayon_Resort-Ubud_Bali.html#review_412080002',3000);
extracting_review_data('Hotel995','http://www.tripadvisor.com/ShowUserReviews-g297701-d1482678-r409090596-Amori_Villas-Ubud_Bali.html#review_409090596',3000);
extracting_review_data('Hotel996','http://www.tripadvisor.com/ShowUserReviews-g297701-d603335-r411463313-Viceroy_Bali-Ubud_Bali.html#review_411463313',3000);
extracting_review_data('Hotel997','http://www.tripadvisor.com/ShowUserReviews-g297701-d8293999-r411340990-Mandapa_A_Ritz_Carlton_Reserve-Ubud_Bali.html#review_411340990',3000);