-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatepicker_daily_visitors_3_CLEAN.csv
More file actions
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
999 lines (999 loc) · 45.3 KB
/
datepicker_daily_visitors_3_CLEAN.csv
File metadata and controls
999 lines (999 loc) · 45.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
date;utm_source_and_medium;utm_campaign;user_count;session_count
2024-09-18;google / cpc;(organic);75;80
2024-09-18;(direct) / (none);(direct);73;76
2024-09-18;google / cpc;HU | GSN | PERF I Brand;45;52
2024-09-18;google / organic;(organic);37;42
2024-09-18;google / cpc;HU | pMAX | PERF I Brand;34;36
2024-09-18;google / cpc;(not set);16;17
2024-09-18;facebook / cpc;campaign_19;16;16
2024-09-18;facebook / cpc;campaign_20;12;12
2024-09-18;facebook / cpc;campaign_21;11;11
2024-09-18;redir.d-edgeconnect.media / referral;(referral);8;9
2024-09-18;google / cpc;campaign_22;8;9
2024-09-18;(not set);(not set);7;7
2024-09-18;m.facebook.com / referral;(referral);5;6
2024-09-18;bing / organic;(organic);4;5
2024-09-18;google / cpc;campaign_26;3;4
2024-09-18;l.instagram.com / referral;(referral);3;3
2024-09-18;google / cpc;campaign_25;3;3
2024-09-18;google / cpc;campaign_28;3;3
2024-09-18;hirlevel_s1;hirlevel_c1;3;3
2024-09-18;l.facebook.com / referral;(referral);2;2
2024-09-18;mail.google.com / referral;(referral);1;2
2024-09-18;google / cpc;campaign_24;2;2
2024-09-18;google / cpc;DE | pMAX | PERF I Brand;2;2
2024-09-18;google / organic;(not set);1;1
2024-09-18;email.seznam.cz / referral;(referral);1;1
2024-09-18;google / cpc;(referral);1;1
2024-09-18;hotelcms.hu / referral;(referral);1;1
2024-09-18;kereso.startlap.hu / referral;(referral);1;1
2024-09-18;source_1;(referral);1;1
2024-09-18;lm.facebook.com / referral;(referral);1;1
2024-09-18;otpbankdirekt.hu / referral;(referral);1;1
2024-09-18;google / cpc;campaign_27;1;1
2024-09-18;google / cpc;campaign_23;1;1
2024-09-18;google / cpc;campaign_29;1;1
2024-09-18;bing / cpc;campaign_5;1;1
2024-09-18;bing / cpc;campaign_2;1;1
2024-09-18;google / cpc;HU | GDN | ENGM I Programok '24;1;1
2024-09-18;bing / cpc;HU | PERF | Lokáció - All;1;1
2024-09-18;hirlevel_s5;hirlevel_c4;1;1
2024-09-18;loyalty / email;loyalty-email;1;1
2024-09-18;ajanlat / offline;proposal-by-phone;1;1
2024-09-19;(direct) / (none);(direct);105;114
2024-09-19;google / cpc;(organic);78;91
2024-09-19;google / cpc;HU | GSN | PERF I Brand;41;47
2024-09-19;google / organic;(organic);34;37
2024-09-19;google / cpc;HU | pMAX | PERF I Brand;37;37
2024-09-19;google / cpc;campaign_22;16;20
2024-09-19;hirlevel_s1;hirlevel_c1;10;12
2024-09-19;google / cpc;(not set);9;10
2024-09-19;(not set);(not set);5;9
2024-09-19;facebook / cpc;campaign_21;9;9
2024-09-19;facebook / cpc;campaign_20;9;9
2024-09-19;l.instagram.com / referral;(referral);8;8
2024-09-19;google / cpc;campaign_23;8;8
2024-09-19;facebook / cpc;campaign_19;7;8
2024-09-19;bing / organic;(organic);5;5
2024-09-19;l.facebook.com / referral;(referral);4;4
2024-09-19;redir.d-edgeconnect.media / referral;(referral);4;4
2024-09-19;hirlevel_s5;hirlevel_c4;3;4
2024-09-19;instagram.com / referral;(referral);3;3
2024-09-19;m.facebook.com / referral;(referral);3;3
2024-09-19;webmail.telekom.hu / referral;(referral);2;3
2024-09-19;google / cpc;campaign_25;2;3
2024-09-19;phone / offline;proposal-by-phone;2;3
2024-09-19;source_4;(referral);2;2
2024-09-19;hotelcms.hu / referral;(referral);1;2
2024-09-19;youtube.com / referral;(referral);1;2
2024-09-19;bing / cpc;campaign_2;2;2
2024-09-19;app.zoomsphere.com / referral;(referral);1;1
2024-09-19;google / cpc;(referral);1;1
2024-09-19;otpbankdirekt.hu / referral;(referral);1;1
2024-09-19;google / cpc;campaign_27;1;1
2024-09-19;google / cpc;campaign_26;1;1
2024-09-19;google / cpc;campaign_24;1;1
2024-09-19;google / cpc;DE | pMAX | PERF I Brand;1;1
2024-09-19;bing / cpc;campaign_5;1;1
2024-09-19;bing / cpc;HU | GSN | Brand;1;1
2024-09-19;google / cpc;campaign_28;1;1
2024-09-19;google / cpc;campaign_37;1;1
2024-09-19;hirlevel_s3;hirlevel_c2;1;1
2024-09-19;loyalty / email;loyalty-email;1;1
2024-09-20;wellcard.de / referral;(referral);1;1
2024-09-20;hirlevel_s5;hirlevel_c4;1;1
2024-09-20;google / cpc;HU | GSN | PERF I Brand;35;39
2024-09-20;google / organic;(organic);27;28
2024-09-20;google / cpc;HU | pMAX | PERF I Brand;22;22
2024-09-20;google / cpc;(not set);16;16
2024-09-20;facebook / cpc;campaign_19;15;15
2024-09-20;facebook / cpc;campaign_20;11;12
2024-09-20;bing / organic;(organic);9;10
2024-09-20;redir.d-edgeconnect.media / referral;(referral);9;10
2024-09-20;l.instagram.com / referral;(referral);7;7
2024-09-20;google / cpc;campaign_22;7;7
2024-09-20;google / cpc;campaign_23;4;4
2024-09-20;facebook / cpc;campaign_21;4;4
2024-09-20;l.facebook.com / referral;(referral);3;3
2024-09-20;m.facebook.com / referral;(referral);3;3
2024-09-20;google / cpc;campaign_27;1;3
2024-09-20;hirlevel_s1;hirlevel_c1;3;3
2024-09-20;loyalty / email;loyalty-email;1;3
2024-09-20;(not set);(not set);1;2
2024-09-20;instagram.com / referral;(referral);2;2
2024-09-20;google / cpc;campaign_24;2;2
2024-09-20;deref-gmx.net / referral;(not set);1;1
2024-09-20;lightmailer-bs.gmx.net / referral;(referral);1;1
2024-09-20;mail.google.com / referral;(referral);1;1
2024-09-20;wellcard.at / referral;(referral);1;1
2024-09-20;google / cpc;(organic);59;64
2024-09-20;fb / paid;campaign_7;1;1
2024-09-20;bing / cpc;AT | PERF | Brand;1;1
2024-09-20;google / cpc;DE | pMAX | PERF I Brand;1;1
2024-09-20;bing / cpc;HU | PERF | Desztináció;1;1
2024-09-20;(direct) / (none);(direct);50;51
2024-09-21;google / cpc;(organic);66;75
2024-09-21;google / cpc;HU | GSN | PERF I Brand;45;53
2024-09-21;(direct) / (none);(direct);42;43
2024-09-21;google / organic;(organic);29;33
2024-09-21;google / cpc;HU | pMAX | PERF I Brand;25;31
2024-09-21;google / cpc;(not set);28;28
2024-09-21;facebook / cpc;campaign_21;12;14
2024-09-21;google / cpc;campaign_22;7;11
2024-09-21;facebook / cpc;campaign_19;6;6
2024-09-21;facebook / cpc;campaign_20;6;6
2024-09-21;m.facebook.com / referral;(referral);5;5
2024-09-21;redir.d-edgeconnect.media / referral;(referral);5;5
2024-09-21;(not set);(not set);4;4
2024-09-21;bing / organic;(organic);4;4
2024-09-21;google / cpc;campaign_27;4;4
2024-09-21;google / cpc;campaign_25;4;4
2024-09-21;loyalty / email;loyalty-email;1;4
2024-09-21;google / cpc;campaign_23;3;3
2024-09-21;google / cpc;campaign_30;3;3
2024-09-21;bing / cpc;campaign_2;3;3
2024-09-21;l.facebook.com / referral;(referral);2;2
2024-09-21;mail.google.com / referral;(referral);1;2
2024-09-21;thermengutscheine.at / referral;(referral);1;2
2024-09-21;instagram.com / referral;(referral);1;1
2024-09-21;lm.facebook.com / referral;(referral);1;1
2024-09-21;wellcard.at / referral;(referral);1;1
2024-09-21;google / cpc;campaign_33;1;1
2024-09-21;hirlevel_s1;hirlevel_c1;1;1
2024-09-21;hirlevel_s5;hirlevel_c4;1;1
2024-09-22;facebook / cpc;campaign_21;20;20
2024-09-22;phone / offline;proposal-by-phone;1;1
2024-09-22;google / cpc;HU | GSN | PERF I Brand;48;53
2024-09-22;google / organic;(organic);27;30
2024-09-22;google / cpc;HU | pMAX | PERF I Brand;30;30
2024-09-22;google / cpc;(not set);25;25
2024-09-22;google / cpc;(organic);85;92
2024-09-22;facebook / cpc;campaign_19;11;11
2024-09-22;l.facebook.com / referral;(referral);9;9
2024-09-22;redir.d-edgeconnect.media / referral;(referral);9;9
2024-09-22;google / cpc;campaign_22;9;9
2024-09-22;facebook / cpc;campaign_20;6;7
2024-09-22;(not set);(not set);3;5
2024-09-22;m.facebook.com / referral;(referral);5;5
2024-09-22;google / cpc;campaign_23;4;4
2024-09-22;bing / cpc;campaign_2;4;4
2024-09-22;google / cpc;campaign_28;3;3
2024-09-22;google / cpc;(referral);2;2
2024-09-22;kereso.startlap.hu / referral;(referral);2;2
2024-09-22;google / cpc;campaign_24;2;2
2024-09-22;google / cpc;DE | pMAX | PERF I Brand;2;2
2024-09-22;google / cpc;HU | GDN | ENGM I Programok '24;2;2
2024-09-22;hirlevel_s1;hirlevel_c1;2;2
2024-09-22;bing / organic;(organic);1;1
2024-09-22;l.instagram.com / referral;(referral);1;1
2024-09-22;lm.facebook.com / referral;(referral);1;1
2024-09-22;mail.google.com / referral;(referral);1;1
2024-09-22;google / cpc;campaign_27;1;1
2024-09-22;google / cpc;campaign_33;1;1
2024-09-22;google / cpc;campaign_25;1;1
2024-09-22;hirlevel_s3;hirlevel_c2;1;1
2024-09-22;(direct) / (none);(direct);53;56
2024-09-23;google / cpc;(not set);23;24
2024-09-23;ajanlat / email;campaign_15;1;1
2024-09-23;google / organic;(organic);60;67
2024-09-23;google / cpc;HU | GSN | PERF I Brand;46;49
2024-09-23;facebook / cpc;campaign_21;43;43
2024-09-23;google / cpc;(organic);82;87
2024-09-23;google / cpc;HU | pMAX | PERF I Brand;22;23
2024-09-23;(not set);(not set);8;10
2024-09-23;m.facebook.com / referral;(referral);9;10
2024-09-23;facebook / cpc;campaign_19;8;8
2024-09-23;l.facebook.com / referral;(referral);7;7
2024-09-23;google / cpc;campaign_22;5;7
2024-09-23;redir.d-edgeconnect.media / referral;(referral);6;6
2024-09-23;google / cpc;campaign_23;3;6
2024-09-23;google / cpc;DE | pMAX | PERF I Brand;5;5
2024-09-23;ajanlat / offline;campaign_10;3;5
2024-09-23;bing / organic;(organic);4;4
2024-09-23;l.instagram.com / referral;(referral);3;4
2024-09-23;google / cpc;campaign_25;4;4
2024-09-23;google / cpc;campaign_27;3;3
2024-09-23;facebook / cpc;campaign_20;3;3
2024-09-23;google / organic;(not set);1;1
2024-09-23;ecosia.org / organic;(organic);1;1
2024-09-23;director-web.ro / referral;(referral);1;1
2024-09-23;hotelcms.hu / referral;(referral);1;1
2024-09-23;instagram.com / referral;(referral);1;1
2024-09-23;lightmailer-bs.gmx.net / referral;(referral);1;1
2024-09-23;mail.google.com / referral;(referral);1;1
2024-09-23;source_17;(referral);1;1
2024-09-23;zadirweb.com / referral;(referral);1;1
2024-09-23;ig / paid;campaign_12;1;1
2024-09-23;google / cpc;campaign_26;1;1
2024-09-23;google / cpc;campaign_33;1;1
2024-09-23;google / cpc;campaign_24;1;1
2024-09-23;google / cpc;campaign_30;1;1
2024-09-23;bing / cpc;campaign_5;1;1
2024-09-23;bing / cpc;campaign_2;1;1
2024-09-23;bing / cpc;HU | PERF | Lokáció - All;1;1
2024-09-23;google / cpc;campaign_28;1;1
2024-09-23;bing / cpc;campaign_39;1;1
2024-09-23;(direct) / (none);(direct);70;81
2024-09-24;thermengutscheine.at / referral;(referral);1;1
2024-09-24;loyalty / email;loyalty-email;1;1
2024-09-24;google / organic;(organic);45;47
2024-09-24;facebook / cpc;campaign_21;45;47
2024-09-24;google / cpc;HU | GSN | PERF I Brand;41;46
2024-09-24;google / cpc;HU | pMAX | PERF I Brand;32;33
2024-09-24;google / cpc;(not set);23;26
2024-09-24;l.facebook.com / referral;(referral);13;13
2024-09-24;facebook / cpc;campaign_19;11;11
2024-09-24;google / cpc;campaign_22;10;10
2024-09-24;m.facebook.com / referral;(referral);9;9
2024-09-24;bing / organic;(organic);7;7
2024-09-24;l.instagram.com / referral;(referral);5;6
2024-09-24;google / cpc;campaign_24;6;6
2024-09-24;google / cpc;campaign_23;5;5
2024-09-24;google / cpc;DE | pMAX | PERF I Brand;5;5
2024-09-24;google / cpc;campaign_25;4;5
2024-09-24;facebook / cpc;campaign_20;5;5
2024-09-24;bing / cpc;campaign_2;4;4
2024-09-24;(not set);(not set);3;3
2024-09-24;redir.d-edgeconnect.media / referral;(referral);3;3
2024-09-24;google / cpc;campaign_27;3;3
2024-09-24;google / cpc;HU | GDN | ENGM I Programok '24;3;3
2024-09-24;google / cpc;(referral);2;2
2024-09-24;youtube.com / referral;(referral);2;2
2024-09-24;bing / cpc;campaign_14;2;2
2024-09-24;ecosia.org / organic;(organic);1;1
2024-09-24;qwant.com / organic;(organic);1;1
2024-09-24;kereso.startlap.hu / referral;(referral);1;1
2024-09-24;mail.google.com / referral;(referral);1;1
2024-09-24;source_9;(referral);1;1
2024-09-24;google / cpc;(organic);81;86
2024-09-24;google / cpc;campaign_26;1;1
2024-09-24;google / cpc;campaign_30;1;1
2024-09-24;bing / cpc;campaign_5;1;1
2024-09-24;bing / cpc;HU | PERF | Brand;1;1
2024-09-24;facebook / cpc;campaign_1;1;1
2024-09-24;google / cpc;campaign_28;1;1
2024-09-24;bing / cpc;campaign_39;1;1
2024-09-24;hirlevel_s3;hirlevel_c2;1;1
2024-09-24;(direct) / (none);(direct);63;72
2024-09-25;bing / cpc;HU | PERF | Brand;1;1
2024-09-25;(not set);(not set);74;80
2024-09-25;google / cpc;HU | GSN | PERF I Brand;55;60
2024-09-25;(direct) / (none);(direct);42;45
2024-09-25;facebook / cpc;campaign_21;41;42
2024-09-25;google / organic;(organic);27;30
2024-09-25;google / cpc;(not set);23;23
2024-09-25;google / cpc;HU | pMAX | PERF I Brand;23;23
2024-09-25;bing / cpc;campaign_2;7;8
2024-09-25;l.facebook.com / referral;(referral);7;7
2024-09-25;bing / organic;(organic);3;6
2024-09-25;google / cpc;DE | pMAX | PERF I Brand;5;6
2024-09-25;m.facebook.com / referral;(referral);5;5
2024-09-25;google / cpc;campaign_22;5;5
2024-09-25;google / cpc;campaign_27;4;4
2024-09-25;facebook / cpc;campaign_19;4;4
2024-09-25;google / cpc;campaign_23;3;3
2024-09-25;google / cpc;campaign_24;2;2
2024-09-25;facebook / cpc;campaign_20;2;2
2024-09-25;hotelcms.hu / referral;(referral);1;1
2024-09-25;instagram.com / referral;(referral);1;1
2024-09-25;l.instagram.com / referral;(referral);1;1
2024-09-25;redir.d-edgeconnect.media / referral;(referral);1;1
2024-09-25;bing / cpc;campaign_14;1;1
2024-09-25;google / cpc;campaign_25;1;1
2024-09-25;google / cpc;(organic);74;78
2024-09-26;google / cpc;campaign_25;2;2
2024-09-26;facebook / cpc;campaign_21;55;58
2024-09-26;google / cpc;HU | GSN | PERF I Brand;42;49
2024-09-26;google / organic;(organic);45;45
2024-09-26;(direct) / (none);(direct);43;44
2024-09-26;google / cpc;HU | pMAX | PERF I Brand;34;34
2024-09-26;google / cpc;(not set);26;26
2024-09-26;l.facebook.com / referral;(referral);13;13
2024-09-26;google / cpc;campaign_22;11;12
2024-09-26;bing / organic;(organic);9;9
2024-09-26;m.facebook.com / referral;(referral);9;9
2024-09-26;google / cpc;campaign_23;9;9
2024-09-26;google / cpc;DE | pMAX | PERF I Brand;5;6
2024-09-26;redir.d-edgeconnect.media / referral;(referral);5;5
2024-09-26;google / cpc;campaign_24;5;5
2024-09-26;google / cpc;campaign_27;3;3
2024-09-26;facebook / cpc;campaign_19;2;3
2024-09-26;lm.facebook.com / referral;(referral);2;2
2024-09-26;bing / cpc;campaign_2;2;2
2024-09-26;google / cpc;(organic);79;87
2024-09-26;google / cpc;campaign_28;2;2
2024-09-26;(not set);(not set);1;1
2024-09-26;google / cpc;(referral);1;1
2024-09-26;instagram.com / referral;(referral);1;1
2024-09-26;kapu.hu / referral;(referral);1;1
2024-09-26;l.instagram.com / referral;(referral);1;1
2024-09-26;lightmailer-bs.gmx.net / referral;(referral);1;1
2024-09-26;mail.google.com / referral;(referral);1;1
2024-09-26;bing / cpc;campaign_14;1;1
2024-09-26;bing / cpc;AT | PERF | Brand;1;1
2024-09-26;hirlevel_s3;hirlevel_c2;0;1
2024-09-26;ajanlat / email;campaign_15;1;1
2024-09-27;google / cpc;(organic);66;70
2024-09-27;(direct) / (none);(direct);52;57
2024-09-27;google / cpc;HU | GSN | PERF I Brand;40;47
2024-09-27;google / organic;(organic);44;46
2024-09-27;facebook / cpc;campaign_21;41;41
2024-09-27;google / cpc;HU | pMAX | PERF I Brand;32;32
2024-09-27;google / cpc;(not set);14;15
2024-09-27;facebook / cpc;campaign_19;10;10
2024-09-27;google / cpc;campaign_24;9;9
2024-09-27;google / cpc;campaign_22;7;9
2024-09-27;l.facebook.com / referral;(referral);5;6
2024-09-27;redir.d-edgeconnect.media / referral;(referral);6;6
2024-09-27;google / cpc;DE | pMAX | PERF I Brand;2;4
2024-09-27;instagram.com / referral;(referral);3;3
2024-09-27;m.facebook.com / referral;(referral);3;3
2024-09-27;google / cpc;campaign_25;3;3
2024-09-27;(not set);(not set);2;2
2024-09-27;google / cpc;campaign_27;2;2
2024-09-27;google / cpc;campaign_23;2;2
2024-09-27;facebook / cpc;campaign_20;2;2
2024-09-27;google / cpc;campaign_28;2;2
2024-09-27;bing / organic;(organic);1;1
2024-09-27;glamour.hu / referral;(referral);1;1
2024-09-27;source_11;(referral);1;1
2024-09-27;lm.facebook.com / referral;(referral);1;1
2024-09-27;mail.google.com / referral;(referral);1;1
2024-09-27;wellcard.at / referral;(referral);1;1
2024-09-27;google / cpc;campaign_30;1;1
2024-09-27;bing / cpc;campaign_2;1;1
2024-09-27;google / cpc;HU | GDN | ENGM I Programok '24;1;1
2024-09-27;ajanlat / offline;campaign_10;1;1
2024-09-27;ajanlat / offline;proposal-by-phone;1;1
2024-09-28;m.facebook.com / referral;(referral);7;7
2024-09-28;google / cpc;campaign_28;1;1
2024-09-28;google / cpc;HU | GSN | PERF I Brand;46;52
2024-09-28;facebook / cpc;campaign_21;35;35
2024-09-28;google / cpc;HU | pMAX | PERF I Brand;32;33
2024-09-28;google / organic;(organic);29;30
2024-09-28;google / cpc;(not set);26;26
2024-09-28;l.facebook.com / referral;(referral);12;12
2024-09-28;google / cpc;(organic);70;88
2024-09-28;google / cpc;campaign_22;7;7
2024-09-28;facebook / cpc;campaign_19;6;6
2024-09-28;instagram.com / referral;(referral);5;5
2024-09-28;google / cpc;campaign_24;5;5
2024-09-28;(not set);(not set);4;4
2024-09-28;redir.d-edgeconnect.media / referral;(referral);4;4
2024-09-28;bing / organic;(organic);2;3
2024-09-28;google / cpc;DE | pMAX | PERF I Brand;3;3
2024-09-28;bing / cpc;campaign_2;3;3
2024-09-28;google / cpc;campaign_25;2;2
2024-09-28;gmail.hu / referral;(referral);1;1
2024-09-28;google / cpc;(referral);1;1
2024-09-28;kapu.hu / referral;(referral);1;1
2024-09-28;kereso.startlap.hu / referral;(referral);1;1
2024-09-28;l.instagram.com / referral;(referral);1;1
2024-09-28;lm.facebook.com / referral;(referral);1;1
2024-09-28;mail.google.com / referral;(referral);1;1
2024-09-28;otpbankdirekt.hu / referral;(referral);1;1
2024-09-28;bing / cpc;campaign_14;1;1
2024-09-28;google / cpc;campaign_27;1;1
2024-09-28;google / cpc;campaign_33;1;1
2024-09-28;google / cpc;campaign_30;1;1
2024-09-28;facebook / cpc;campaign_20;1;1
2024-09-28;(direct) / (none);(direct);53;58
2024-09-29;google / cpc;(organic);81;87
2024-09-29;google / cpc;HU | GSN | PERF I Brand;65;71
2024-09-29;(direct) / (none);(direct);45;45
2024-09-29;google / organic;(organic);35;38
2024-09-29;facebook / cpc;campaign_21;36;38
2024-09-29;google / cpc;HU | pMAX | PERF I Brand;30;30
2024-09-29;google / cpc;(not set);22;22
2024-09-29;google / cpc;campaign_22;19;20
2024-09-29;m.facebook.com / referral;(referral);12;12
2024-09-29;google / cpc;campaign_23;9;11
2024-09-29;facebook / cpc;campaign_19;8;9
2024-09-29;l.facebook.com / referral;(referral);7;7
2024-09-29;google / cpc;campaign_24;6;6
2024-09-29;(not set);(not set);4;4
2024-09-29;google / cpc;DE | pMAX | PERF I Brand;3;3
2024-09-29;bing / organic;(organic);2;2
2024-09-29;lm.facebook.com / referral;(referral);2;2
2024-09-29;redir.d-edgeconnect.media / referral;(referral);2;2
2024-09-29;wellcard.at / referral;(referral);2;2
2024-09-29;bing / cpc;campaign_14;1;2
2024-09-29;google / cpc;campaign_27;2;2
2024-09-29;bing / cpc;campaign_2;2;2
2024-09-29;google / cpc;campaign_25;2;2
2024-09-29;facebook / cpc;campaign_20;2;2
2024-09-29;instagram.com / referral;(referral);1;1
2024-09-29;webmail.telekom.hu / referral;(referral);1;1
2024-09-29;ajanlat / offline;campaign_10;1;1
2024-09-30;google / cpc;DE | pMAX | PERF I Brand;5;5
2024-09-30;teszt22 / teszt;teszt;1;1
2024-09-30;google / organic;(organic);45;46
2024-09-30;(direct) / (none);(direct);36;39
2024-09-30;google / cpc;(not set);30;31
2024-09-30;facebook / cpc;campaign_21;28;31
2024-09-30;google / cpc;HU | pMAX | PERF I Brand;30;30
2024-09-30;bing / organic;(organic);8;9
2024-09-30;google / cpc;campaign_22;9;9
2024-09-30;l.facebook.com / referral;(referral);7;7
2024-09-30;facebook / cpc;campaign_19;7;7
2024-09-30;m.facebook.com / referral;(referral);5;5
2024-09-30;google / cpc;campaign_24;4;5
2024-09-30;google / cpc;(organic);68;72
2024-09-30;redir.d-edgeconnect.media / referral;(referral);4;4
2024-09-30;(not set);(not set);3;3
2024-09-30;facebook / cpc;campaign_20;3;3
2024-09-30;thermengutscheine.at / referral;(referral);1;2
2024-09-30;google / cpc;campaign_23;2;2
2024-09-30;google / cpc;campaign_28;2;2
2024-09-30;hirlevel_s5;hirlevel_c4;2;2
2024-09-30;google / cpc;(referral);1;1
2024-09-30;l.instagram.com / referral;(referral);1;1
2024-09-30;mail.google.com / referral;(referral);1;1
2024-09-30;google / cpc;campaign_27;1;1
2024-09-30;bing / cpc;campaign_39;1;1
2024-09-30;ajanlat / offline;proposal-by-phone;1;1
2024-09-30;google / cpc;HU | GSN | PERF I Brand;58;63
2024-10-01;m.facebook.com / referral;(referral);3;3
2024-10-01;(direct) / (none);(direct);61;68
2024-10-01;google / cpc;HU | GSN | PERF I Brand;51;62
2024-10-01;google / organic;(organic);42;44
2024-10-01;google / cpc;HU | pMAX | PERF I Brand;26;26
2024-10-01;google / cpc;(not set);23;24
2024-10-01;redir.d-edgeconnect.media / referral;(referral);10;10
2024-10-01;facebook / cpc;campaign_20;9;9
2024-10-01;google / cpc;campaign_24;6;8
2024-10-01;facebook / cpc;campaign_19;7;7
2024-10-01;bing / organic;(organic);4;6
2024-10-01;google / cpc;campaign_22;5;6
2024-10-01;(not set);(not set);4;5
2024-10-01;google / cpc;DE | pMAX | PERF I Brand;3;5
2024-10-01;l.facebook.com / referral;(referral);4;4
2024-10-01;google / cpc;(organic);83;97
2024-10-01;bing / cpc;campaign_14;3;3
2024-10-01;google / cpc;campaign_23;3;3
2024-10-01;google / cpc;(referral);1;2
2024-10-01;google / cpc;campaign_27;2;2
2024-10-01;google / cpc;campaign_25;2;2
2024-10-01;google / organic;(not set);1;1
2024-10-01;lm.facebook.com / referral;(referral);1;1
2024-10-01;google / cpc;campaign_26;1;1
2024-10-01;bing / cpc;campaign_2;1;1
2024-10-01;google / cpc;HU | GDN | ENGM I Programok '24;1;1
2024-10-01;facebook / cpc;campaign_21;1;1
2024-10-01;google / cpc;campaign_28;1;1
2024-10-01;email / offline;proposal-by-phone;1;1
2024-10-02;google / cpc;(organic);80;84
2024-10-02;(direct) / (none);(direct);53;63
2024-10-02;google / organic;(organic);49;56
2024-10-02;google / cpc;HU | GSN | PERF I Brand;54;56
2024-10-02;google / cpc;HU | pMAX | PERF I Brand;29;31
2024-10-02;google / cpc;(not set);16;17
2024-10-02;facebook / cpc;campaign_19;14;15
2024-10-02;google / cpc;campaign_22;12;14
2024-10-02;l.facebook.com / referral;(referral);9;9
2024-10-02;(not set);(not set);3;8
2024-10-02;redir.d-edgeconnect.media / referral;(referral);7;7
2024-10-02;facebook / cpc;campaign_20;6;7
2024-10-02;bing / cpc;campaign_14;1;4
2024-10-02;bing / cpc;campaign_2;4;4
2024-10-02;m.facebook.com / referral;(referral);3;3
2024-10-02;google / cpc;campaign_23;3;3
2024-10-02;google / cpc;campaign_24;3;3
2024-10-02;bing / organic;(organic);2;2
2024-10-02;google / cpc;campaign_27;2;2
2024-10-02;facebook / cpc;campaign_21;2;2
2024-10-02;hotelcms.hu / referral;(referral);1;1
2024-10-02;l.instagram.com / referral;(referral);1;1
2024-10-02;thermengutscheine.at / referral;(referral);1;1
2024-10-02;google / cpc;campaign_26;1;1
2024-10-02;google / cpc;DE | pMAX | PERF I Brand;1;1
2024-10-02;bing / cpc;HU | PERF | Brand;1;1
2024-10-02;google / cpc;campaign_28;1;1
2024-10-02;hirlevel_s1;hirlevel_c1;1;1
2024-10-02;email / offline;proposal-by-phone;1;1
2024-10-03;redir.d-edgeconnect.media / referral;(referral);11;11
2024-10-03;google / cpc;HU | GSN | PERF I Brand;69;74
2024-10-03;google / organic;(organic);57;64
2024-10-03;(direct) / (none);(direct);49;56
2024-10-03;google / cpc;HU | pMAX | PERF I Brand;24;24
2024-10-03;google / cpc;(not set);20;20
2024-10-03;(not set);(not set);15;17
2024-10-03;google / cpc;(organic);95;103
2024-10-03;facebook / cpc;campaign_20;10;11
2024-10-03;bing / organic;(organic);7;8
2024-10-03;google / cpc;campaign_22;8;8
2024-10-03;facebook / cpc;campaign_19;7;7
2024-10-03;l.facebook.com / referral;(referral);4;4
2024-10-03;google / cpc;campaign_23;3;4
2024-10-03;google / cpc;campaign_30;3;3
2024-10-03;hotelcms.hu / referral;(referral);1;2
2024-10-03;source_16;(referral);2;2
2024-10-03;bing / cpc;campaign_14;1;2
2024-10-03;google / cpc;campaign_27;2;2
2024-10-03;google / cpc;campaign_24;2;2
2024-10-03;bing / cpc;campaign_2;2;2
2024-10-03;bing / cpc;HU | PERF | Lokáció - All;2;2
2024-10-03;source_1;(referral);1;1
2024-10-03;l.instagram.com / referral;(referral);1;1
2024-10-03;m.facebook.com / referral;(referral);1;1
2024-10-03;mail.google.com / referral;(referral);1;1
2024-10-03;google / cpc;DE | pMAX | PERF I Brand;1;1
2024-10-03;facebook / cpc;campaign_21;1;1
2024-10-03;google / cpc;campaign_28;1;1
2024-10-03;ajanlat / email;campaign_15;1;1
2024-10-03;other / offline;proposal-by-phone;1;1
2024-10-04;google / cpc;(organic);75;82
2024-10-04;google / cpc;HU | GSN | PERF I Brand;47;53
2024-10-04;google / organic;(organic);48;50
2024-10-04;(direct) / (none);(direct);43;48
2024-10-04;google / cpc;HU | pMAX | PERF I Brand;26;27
2024-10-04;google / cpc;(not set);21;23
2024-10-04;facebook / cpc;campaign_20;13;13
2024-10-04;facebook / cpc;campaign_19;10;10
2024-10-04;bing / organic;(organic);7;7
2024-10-04;redir.d-edgeconnect.media / referral;(referral);6;7
2024-10-04;(not set);(not set);5;5
2024-10-04;l.facebook.com / referral;(referral);4;4
2024-10-04;bing / cpc;campaign_2;4;4
2024-10-04;m.facebook.com / referral;(referral);3;3
2024-10-04;google / cpc;campaign_23;3;3
2024-10-04;google / cpc;campaign_24;3;3
2024-10-04;google / cpc;campaign_22;3;3
2024-10-04;google / cpc;DE | pMAX | PERF I Brand;2;2
2024-10-04;google / cpc;campaign_28;2;2
2024-10-04;glamour.hu / referral;(referral);1;1
2024-10-04;otpbankdirekt.hu / referral;(referral);1;1
2024-10-04;google / cpc;campaign_27;1;1
2024-10-04;loyalty / email;loyalty-email;1;1
2024-10-04;ajanlat / offline;campaign_10;1;1
2024-10-05;google / cpc;(organic);80;85
2024-10-05;(direct) / (none);(direct);59;62
2024-10-05;google / cpc;HU | GSN | PERF I Brand;54;62
2024-10-05;google / organic;(organic);42;44
2024-10-05;google / cpc;HU | pMAX | PERF I Brand;22;24
2024-10-05;google / cpc;(not set);16;16
2024-10-05;facebook / cpc;campaign_19;11;11
2024-10-05;facebook / cpc;campaign_20;10;10
2024-10-05;google / cpc;campaign_22;8;9
2024-10-05;(not set);(not set);7;8
2024-10-05;google / cpc;DE | pMAX | PERF I Brand;4;5
2024-10-05;google / cpc;campaign_24;4;4
2024-10-05;google / cpc;campaign_23;3;3
2024-10-05;m.facebook.com / referral;(referral);2;2
2024-10-05;redir.d-edgeconnect.media / referral;(referral);2;2
2024-10-05;bing / organic;(organic);1;1
2024-10-05;duckduckgo / organic;(organic);1;1
2024-10-05;kapu.hu / referral;(referral);1;1
2024-10-05;l.facebook.com / referral;(referral);1;1
2024-10-05;l.instagram.com / referral;(referral);1;1
2024-10-05;mail.google.com / referral;(referral);1;1
2024-10-05;google / cpc;campaign_27;1;1
2024-10-05;bing / cpc;campaign_2;1;1
2024-10-05;bing / cpc;HU | PERF | Desztináció;1;1
2024-10-05;google / cpc;campaign_28;1;1
2024-10-05;ajanlat / offline;campaign_10;1;1
2024-10-06;google / cpc;(organic);113;126
2024-10-06;google / cpc;HU | GSN | PERF I Brand;77;82
2024-10-06;(direct) / (none);(direct);59;69
2024-10-06;google / organic;(organic);53;57
2024-10-06;google / cpc;HU | pMAX | PERF I Brand;40;40
2024-10-06;google / cpc;(not set);32;32
2024-10-06;google / cpc;campaign_22;12;12
2024-10-06;redir.d-edgeconnect.media / referral;(referral);10;10
2024-10-06;facebook / cpc;campaign_20;10;10
2024-10-06;google / cpc;campaign_27;9;9
2024-10-06;facebook / cpc;campaign_19;9;9
2024-10-06;l.facebook.com / referral;(referral);7;7
2024-10-06;m.facebook.com / referral;(referral);7;7
2024-10-06;google / cpc;campaign_23;6;6
2024-10-06;(not set);(not set);3;5
2024-10-06;google / cpc;campaign_24;4;4
2024-10-06;google / cpc;campaign_30;3;3
2024-10-06;bing / cpc;campaign_2;3;3
2024-10-06;bing / cpc;HU | PERF I Brand;3;3
2024-10-06;bing / organic;(organic);2;2
2024-10-06;google / cpc;(referral);2;2
2024-10-06;google / cpc;campaign_28;2;2
2024-10-06;hirlevel_s1;hirlevel_c1;2;2
2024-10-06;glamour.hu / referral;(referral);1;1
2024-10-06;kereso.startlap.hu / referral;(referral);1;1
2024-10-06;l.instagram.com / referral;(referral);1;1
2024-10-06;wellcard.at / referral;(referral);1;1
2024-10-06;loyalty / email;loyalty-email;1;1
2024-10-06;ajanlat / offline;campaign_10;1;1
2024-10-07;facebook / cpc;campaign_19;6;6
2024-10-07;google / cpc;HU | GSN | PERF I Brand;75;82
2024-10-07;(direct) / (none);(direct);58;66
2024-10-07;google / organic;(organic);51;58
2024-10-07;google / cpc;(not set);30;31
2024-10-07;google / cpc;HU | pMAX | PERF I Brand;26;29
2024-10-07;l.instagram.com / referral;(referral);8;8
2024-10-07;bing / organic;(organic);6;6
2024-10-07;google / cpc;(organic);111;126
2024-10-07;facebook / cpc;campaign_20;5;6
2024-10-07;(not set);(not set);4;5
2024-10-07;m.facebook.com / referral;(referral);4;4
2024-10-07;redir.d-edgeconnect.media / referral;(referral);4;4
2024-10-07;bing / cpc;campaign_2;4;4
2024-10-07;bing / cpc;HU | PERF I Brand;4;4
2024-10-07;l.facebook.com / referral;(referral);3;3
2024-10-07;google / cpc;campaign_27;3;3
2024-10-07;google / cpc;campaign_23;3;3
2024-10-07;google / cpc;campaign_24;2;3
2024-10-07;google / cpc;DE | pMAX | PERF I Brand;2;3
2024-10-07;google / cpc;campaign_22;3;3
2024-10-07;youtube.com / referral;(referral);2;2
2024-10-07;email / offline;proposal-by-phone;2;2
2024-10-07;google / cpc;(referral);1;1
2024-10-07;mail.google.com / referral;(referral);1;1
2024-10-07;privacywall.org / referral;(referral);1;1
2024-10-07;zadir.hu / referral;(referral);1;1
2024-10-07;bing / cpc;AT | PERF I Brand;1;1
2024-10-07;google / cpc;campaign_30;1;1
2024-10-07;facebook / cpc;campaign_21;1;1
2024-10-07;hirlevel_s1;hirlevel_c1;1;1
2024-10-07;hirlevel_s5;hirlevel_c4;1;1
2024-10-07;ajanlat / offline;campaign_10;1;1
2024-10-08;google / cpc;(organic);127;134
2024-10-08;google / cpc;HU | GSN | PERF I Brand;71;79
2024-10-08;google / organic;(organic);70;73
2024-10-08;(direct) / (none);(direct);55;55
2024-10-08;google / cpc;HU | pMAX | PERF I Brand;26;26
2024-10-08;google / cpc;(not set);17;17
2024-10-08;l.instagram.com / referral;(referral);11;11
2024-10-08;bing / organic;(organic);8;8
2024-10-08;google / cpc;campaign_22;8;8
2024-10-08;(not set);(not set);6;7
2024-10-08;redir.d-edgeconnect.media / referral;(referral);7;7
2024-10-08;facebook / cpc;campaign_19;7;7
2024-10-08;l.facebook.com / referral;(referral);5;6
2024-10-08;google / cpc;campaign_24;5;5
2024-10-08;facebook / cpc;campaign_20;4;4
2024-10-08;google / cpc;campaign_28;4;4
2024-10-08;google / cpc;campaign_23;2;3
2024-10-08;ajanlat / offline;campaign_10;3;3
2024-10-08;lightmailer-bap.gmx.net / referral;(referral);1;2
2024-10-08;m.facebook.com / referral;(referral);2;2
2024-10-08;google / cpc;campaign_27;2;2
2024-10-08;bing / cpc;campaign_2;2;2
2024-10-08;bing / cpc;HU | PERF I Brand;2;2
2024-10-08;glamour.hu / referral;(referral);1;1
2024-10-08;google / cpc;(referral);1;1
2024-10-08;kapu.hu / referral;(referral);1;1
2024-10-08;lm.facebook.com / referral;(referral);1;1
2024-10-08;thermenhotels.at / referral;(referral);1;1
2024-10-08;google / cpc;DE | pMAX | PERF I Brand;1;1
2024-10-08;facebook / cpc;campaign_21;1;1
2024-10-09;google / cpc;(organic);130;147
2024-10-09;google / cpc;HU | GSN | PERF I Brand;70;77
2024-10-09;(direct) / (none);(direct);62;71
2024-10-09;google / organic;(organic);49;50
2024-10-09;google / cpc;HU | pMAX | PERF I Brand;25;27
2024-10-09;google / cpc;(not set);19;20
2024-10-09;(not set);(not set);5;10
2024-10-09;google / cpc;campaign_22;9;10
2024-10-09;bing / cpc;HU | PERF I Brand;8;9
2024-10-09;facebook / cpc;campaign_19;8;8
2024-10-09;redir.d-edgeconnect.media / referral;(referral);6;7
2024-10-09;facebook / cpc;campaign_20;7;7
2024-10-09;kapu.hu / referral;(referral);3;6
2024-10-09;bing / cpc;campaign_2;4;5
2024-10-09;bing / organic;(organic);4;4
2024-10-09;google / cpc;campaign_24;3;4
2024-10-09;l.facebook.com / referral;(referral);3;3
2024-10-09;l.instagram.com / referral;(referral);3;3
2024-10-09;m.facebook.com / referral;(referral);3;3
2024-10-09;hirlevel / ct;hirlevel_c5;3;3
2024-10-09;glamour.hu / referral;(referral);1;2
2024-10-09;ajanlat / offline;campaign_10;2;2
2024-10-09;app.zoomsphere.com / referral;(referral);1;1
2024-10-09;google / cpc;(referral);1;1
2024-10-09;google / cpc;campaign_27;1;1
2024-10-09;google / cpc;campaign_23;1;1
2024-10-09;facebook / cpc;campaign_21;1;1
2024-10-09;loyalty / email;loyalty-email;1;1
2024-10-10;google / cpc;(organic);188;214
2024-10-10;google / cpc;HU | GSN | PERF I Brand;122;156
2024-10-10;(direct) / (none);(direct);109;133
2024-10-10;google / organic;(organic);89;96
2024-10-10;google / cpc;HU | pMAX | PERF I Brand;32;36
2024-10-10;google / cpc;(not set);30;31
2024-10-10;(not set);(not set);15;22
2024-10-10;facebook / cpc;campaign_19;16;16
2024-10-10;facebook / cpc;campaign_20;12;13
2024-10-10;redir.d-edgeconnect.media / referral;(referral);9;10
2024-10-10;bing / cpc;HU | PERF I Brand;7;9
2024-10-10;google / cpc;campaign_22;7;8
2024-10-10;l.facebook.com / referral;(referral);5;7
2024-10-10;glamour.hu / referral;(referral);5;6
2024-10-10;google / cpc;campaign_23;5;6
2024-10-10;bing / organic;(organic);4;5
2024-10-10;google / cpc;campaign_24;5;5
2024-10-10;l.instagram.com / referral;(referral);4;4
2024-10-10;otpbankdirekt.hu / referral;(referral);4;4
2024-10-10;hirlevel / ct;hirlevel_c5;4;4
2024-10-10;bing / cpc;campaign_2;3;3
2024-10-10;google / cpc;(referral);2;2
2024-10-10;m.facebook.com / referral;(referral);2;2
2024-10-10;google / cpc;DE | pMAX | PERF I Brand;2;2
2024-10-10;bing / cpc;HU | PERF | Desztináció;2;2
2024-10-10;hirlevel_s1;hirlevel_c1;2;2
2024-10-10;ajanlat / email;campaign_15;2;2
2024-10-10;instagram.com / referral;(referral);1;1
2024-10-10;kapu.hu / referral;(referral);1;1
2024-10-10;kereso.startlap.hu / referral;(referral);1;1
2024-10-10;webmail.telekom.hu / referral;(referral);1;1
2024-10-10;google / cpc;campaign_27;1;1
2024-10-10;google / cpc;campaign_26;1;1
2024-10-10;bing / cpc;HU | PERF | Lokáció - All;1;1
2024-10-11;google / cpc;campaign_27;3;3
2024-10-11;(direct) / (none);(direct);83;109
2024-10-11;google / cpc;HU | GSN | PERF I Brand;94;102
2024-10-11;google / organic;(organic);70;77
2024-10-11;google / cpc;HU | pMAX | PERF I Brand;35;35
2024-10-11;google / cpc;(not set);29;30
2024-10-11;google / cpc;campaign_22;15;18
2024-10-11;(not set);(not set);12;15
2024-10-11;facebook / cpc;campaign_19;14;15
2024-10-11;l.facebook.com / referral;(referral);8;8
2024-10-11;bing / cpc;HU | PERF I Brand;6;8
2024-10-11;facebook / cpc;campaign_20;7;7
2024-10-11;l.instagram.com / referral;(referral);6;6
2024-10-11;instagram.com / referral;(referral);5;5
2024-10-11;hirlevel / ct;hirlevel_c5;5;5
2024-10-11;m.facebook.com / referral;(referral);4;4
2024-10-11;bing / organic;(organic);3;3
2024-10-11;redir.d-edgeconnect.media / referral;(referral);3;3
2024-10-11;google / cpc;(organic);159;175
2024-10-11;google / cpc;campaign_24;3;3
2024-10-11;google / cpc;DE | pMAX | PERF I Brand;3;3
2024-10-11;bing / cpc;campaign_2;3;3
2024-10-11;uk.search.yahoo.com / referral;(referral);1;2
2024-10-11;source_19;(referral);1;1
2024-10-11;glamour.hu / referral;(referral);1;1
2024-10-11;google / cpc;(referral);1;1
2024-10-11;romaniatv.net / referral;(referral);1;1
2024-10-11;search.brave.com / referral;(referral);1;1
2024-10-11;bing / cpc;AT | PERF I Brand;1;1
2024-10-11;google / cpc;campaign_23;1;1
2024-10-11;google / cpc;HU | GDN | ENGM I Programok '24;1;1
2024-10-11;facebook / cpc;campaign_1;1;1
2024-10-11;ajanlat / offline;campaign_10;1;1
2024-10-12;google / cpc;(organic);143;161
2024-10-12;google / cpc;HU | GSN | PERF I Brand;112;134
2024-10-12;(direct) / (none);(direct);100;110
2024-10-12;google / organic;(organic);51;57
2024-10-12;google / cpc;HU | pMAX | PERF I Brand;31;31
2024-10-12;google / cpc;(not set);24;24
2024-10-12;facebook / cpc;campaign_19;18;18
2024-10-12;(not set);(not set);15;17
2024-10-12;redir.d-edgeconnect.media / referral;(referral);8;11
2024-10-12;facebook / cpc;campaign_20;9;10
2024-10-12;instagram.com / referral;(referral);7;7
2024-10-12;google / cpc;campaign_22;7;7
2024-10-12;l.instagram.com / referral;(referral);6;6
2024-10-12;glamour.hu / referral;(referral);3;3
2024-10-12;m.facebook.com / referral;(referral);3;3
2024-10-12;google / cpc;campaign_23;3;3
2024-10-12;google / cpc;DE | pMAX | PERF I Brand;3;3
2024-10-12;bing / cpc;HU | PERF I Brand;3;3
2024-10-12;bing / organic;(organic);1;2
2024-10-12;otpbankdirekt.hu / referral;(referral);0;2
2024-10-12;google / cpc;campaign_27;2;2
2024-10-12;google / cpc;campaign_30;1;2
2024-10-12;bing / cpc;campaign_2;2;2
2024-10-12;(direct) / (none);(not set);1;1
2024-10-12;kereso.startlap.hu / referral;(referral);1;1
2024-10-12;l.facebook.com / referral;(referral);1;1
2024-10-12;mail.google.com / referral;(referral);1;1
2024-10-12;google / cpc;campaign_26;1;1
2024-10-12;google / cpc;campaign_24;1;1
2024-10-12;google / cpc;HU | GDN | ENGM I Programok '24;1;1
2024-10-12;hirlevel / ct;hirlevel_c5;1;1
2024-10-12;ajanlat / offline;campaign_10;1;1
2024-10-13;google / cpc;(organic);210;240
2024-10-13;google / cpc;HU | GSN | PERF I Brand;174;227
2024-10-13;(direct) / (none);(direct);174;196
2024-10-13;google / organic;(organic);88;102
2024-10-13;google / cpc;HU | pMAX | PERF I Brand;42;46
2024-10-13;google / cpc;(not set);33;33
2024-10-13;facebook / cpc;campaign_19;29;31
2024-10-13;(not set);(not set);24;25
2024-10-13;m.facebook.com / referral;(referral);11;12
2024-10-13;l.facebook.com / referral;(referral);10;11
2024-10-13;google / cpc;campaign_22;10;11
2024-10-13;redir.d-edgeconnect.media / referral;(referral);10;10
2024-10-13;instagram.com / referral;(referral);7;7
2024-10-13;google / cpc;campaign_27;7;7
2024-10-13;google / cpc;campaign_24;7;7
2024-10-13;bing / organic;(organic);6;6
2024-10-13;google / cpc;campaign_23;6;6
2024-10-13;facebook / cpc;campaign_20;6;6
2024-10-13;bing / cpc;campaign_2;4;5
2024-10-13;bing / cpc;HU | PERF I Brand;4;5
2024-10-13;ajanlat / offline;campaign_10;2;5
2024-10-13;l.instagram.com / referral;(referral);4;4
2024-10-13;google / cpc;(referral);2;2
2024-10-13;kapu.hu / referral;(referral);1;2
2024-10-13;source_1;(referral);2;2
2024-10-13;otpbankdirekt.hu / referral;(referral);2;2
2024-10-13;google / cpc;DE | pMAX | PERF I Brand;2;2
2024-10-13;google / organic;(not set);1;1
2024-10-13;emea.search.yahoo.com / referral;(referral);1;1
2024-10-13;glamour.hu / referral;(referral);1;1
2024-10-13;kereso.startlap.hu / referral;(referral);1;1
2024-10-13;lm.facebook.com / referral;(referral);1;1
2024-10-13;thermengutscheine.at / referral;(referral);1;1
2024-10-13;thermenhotels.at / referral;(referral);1;1
2024-10-13;bing / cpc;campaign_40;1;1
2024-10-13;bing / cpc;HU | GSN | Desztináció;1;1
2024-10-13;google / cpc;campaign_28;1;1
2024-10-13;loyalty / email;loyalty-email;1;1
2024-10-13;ajanlat / email;campaign_15;1;1
2024-10-14;google / cpc;(organic);117;129
2024-10-14;(direct) / (none);(direct);81;89
2024-10-14;google / cpc;HU | GSN | PERF I Brand;68;82
2024-10-14;google / organic;(organic);43;47
2024-10-14;google / cpc;HU | pMAX | PERF I Brand;22;23
2024-10-14;google / cpc;(not set);22;22
2024-10-14;facebook / cpc;campaign_19;15;15
2024-10-14;redir.d-edgeconnect.media / referral;(referral);8;9
2024-10-14;google / cpc;campaign_22;9;9
2024-10-14;(not set);(not set);5;8
2024-10-14;facebook / cpc;campaign_20;8;8
2024-10-14;google / cpc;campaign_24;7;7
2024-10-14;bing / organic;(organic);6;6
2024-10-14;otpbankdirekt.hu / referral;(referral);4;5
2024-10-14;l.facebook.com / referral;(referral);4;4
2024-10-14;facebook / cpc;campaign_21;4;4
2024-10-14;instagram.com / referral;(referral);3;3
2024-10-14;l.instagram.com / referral;(referral);3;3
2024-10-14;google / cpc;campaign_26;3;3
2024-10-14;google / cpc;campaign_23;3;3
2024-10-14;m.facebook.com / referral;(referral);2;2
2024-10-14;google / cpc;campaign_27;2;2
2024-10-14;bing / cpc;AT | PERF I Brand;2;2
2024-10-14;bing / cpc;campaign_2;2;2
2024-10-14;bing / cpc;HU | PERF I Brand;2;2
2024-10-14;email.seznam.cz / referral;(referral);1;1
2024-10-14;kapu.hu / referral;(referral);1;1
2024-10-14;source_21;(referral);1;1
2024-10-14;thermengutscheine.at / referral;(referral);1;1
2024-10-14;google / cpc;campaign_33;1;1
2024-10-14;bing / cpc;campaign_5;1;1
2024-10-14;ajanlat / offline;campaign_10;1;1
2024-10-15;google / cpc;(organic);97;115
2024-10-15;google / cpc;HU | GSN | PERF I Brand;53;65
2024-10-15;(direct) / (none);(direct);59;61
2024-10-15;google / organic;(organic);41;46
2024-10-15;google / cpc;HU | pMAX | PERF I Brand;30;30
2024-10-15;google / cpc;(not set);14;14
2024-10-15;instagram.com / referral;(referral);8;8
2024-10-15;redir.d-edgeconnect.media / referral;(referral);8;8
2024-10-15;google / cpc;campaign_22;6;7
2024-10-15;facebook / cpc;campaign_20;7;7
2024-10-15;(not set);(not set);5;6
2024-10-15;m.facebook.com / referral;(referral);3;6
2024-10-15;facebook / cpc;campaign_19;6;6
2024-10-15;bing / organic;(organic);5;5
2024-10-15;l.facebook.com / referral;(referral);4;5
2024-10-15;google / cpc;campaign_23;4;5
2024-10-15;bing / cpc;campaign_2;5;5
2024-10-15;google / cpc;campaign_24;4;4
2024-10-15;facebook / cpc;campaign_21;3;3
2024-10-15;l.instagram.com / referral;(referral);2;2
2024-10-15;otpbankdirekt.hu / referral;(referral);1;2
2024-10-15;wellcard.at / referral;(referral);1;2
2024-10-15;google / cpc;campaign_27;2;2
2024-10-15;bing / cpc;HU | PERF I Brand;2;2
2024-10-15;google / cpc;campaign_28;2;2
2024-10-15;ajanlat / email;campaign_15;1;2
2024-10-15;source_19;(referral);1;1
2024-10-15;google / cpc;(referral);1;1
2024-10-15;kapu.hu / referral;(referral);1;1
2024-10-15;lm.facebook.com / referral;(referral);1;1
2024-10-15;source_22;(referral);1;1
2024-10-15;google / cpc;campaign_26;1;1
2024-10-15;bing / cpc;AT | PERF I Brand;1;1
2024-10-15;google / cpc;campaign_30;1;1
2024-10-15;ajanlat / offline;campaign_10;1;1
2024-10-16;google / cpc;(organic);77;82
2024-10-16;google / cpc;HU | GSN | PERF I Brand;48;53
2024-10-16;(direct) / (none);(direct);42;45
2024-10-16;google / organic;(organic);34;38
2024-10-16;google / cpc;HU | pMAX | PERF I Brand;22;22
2024-10-16;google / cpc;(not set);15;16
2024-10-16;google / cpc;campaign_22;10;11
2024-10-16;facebook / cpc;campaign_20;9;9
2024-10-16;m.facebook.com / referral;(referral);8;8
2024-10-16;redir.d-edgeconnect.media / referral;(referral);7;7
2024-10-16;google / cpc;campaign_24;5;6
2024-10-16;facebook / cpc;campaign_19;6;6
2024-10-16;l.instagram.com / referral;(referral);4;5
2024-10-16;google / cpc;campaign_23;5;5
2024-10-16;(not set);(not set);1;3
2024-10-16;instagram.com / referral;(referral);3;3
2024-10-16;l.facebook.com / referral;(referral);3;3
2024-10-16;google / cpc;campaign_27;2;3
2024-10-16;ajanlat / offline;campaign_10;3;3
2024-10-16;bing / organic;(organic);2;2
2024-10-16;kapu.hu / referral;(referral);1;2
2024-10-16;lm.facebook.com / referral;(referral);2;2
2024-10-16;bing / cpc;campaign_2;2;2
2024-10-16;facebook / cpc;campaign_21;2;2
2024-10-16;google / organic;(not set);1;1
2024-10-16;kereso.startlap.hu / referral;(referral);1;1
2024-10-16;otpbankdirekt.hu / referral;(referral);1;1
2024-10-16;bing / cpc;campaign_40;1;1
2024-10-16;google / cpc;campaign_30;1;1
2024-10-16;google / cpc;DE | pMAX | PERF I Brand;1;1
2024-10-16;bing / cpc;HU | PERF I Brand;1;1
2024-10-17;google / cpc;(organic);78;88
2024-10-17;google / cpc;HU | GSN | PERF I Brand;54;59
2024-10-17;(direct) / (none);(direct);53;53
2024-10-17;google / organic;(organic);34;37
2024-10-17;google / cpc;HU | pMAX | PERF I Brand;25;28
2024-10-17;google / cpc;(not set);14;14
2024-10-17;l.instagram.com / referral;(referral);10;10
2024-10-17;facebook / cpc;campaign_20;9;9
2024-10-17;m.facebook.com / referral;(referral);8;8
2024-10-17;source_22;(referral);7;7
2024-10-17;facebook / cpc;campaign_19;7;7
2024-10-17;google / cpc;campaign_27;6;6
2024-10-17;google / cpc;campaign_24;6;6
2024-10-17;instagram.com / referral;(referral);5;5
2024-10-17;google / cpc;campaign_23;5;5
2024-10-17;facebook / cpc;campaign_21;5;5
2024-10-17;redir.d-edgeconnect.media / referral;(referral);4;4
2024-10-17;bing / cpc;HU | PERF I Brand;3;4
2024-10-17;(not set);(not set);2;3
2024-10-17;l.facebook.com / referral;(referral);3;3
2024-10-17;bing / cpc;campaign_2;3;3
2024-10-17;google / cpc;campaign_22;3;3
2024-10-17;bing / organic;(organic);2;2
2024-10-17;kereso.startlap.hu / referral;(referral);2;2
2024-10-17;hirlevel / ct;hirlevel_c6;1;2
2024-10-17;hirlevel / ct;hirlevel_c5;2;2
2024-10-17;source_25;(referral);1;1
2024-10-17;app.zoomsphere.com / referral;(referral);1;1
2024-10-17;source_20;(referral);1;1
2024-10-17;google / cpc;(referral);1;1
2024-10-17;google / cpc;DE | pMAX | PERF I Brand;1;1
2024-10-17;ajanlat / email;campaign_15;1;1
2024-10-17;ajanlat / offline;campaign_10;1;1
2024-10-18;hirlevel / ct;hirlevel_c6;186;197
2024-10-18;google / cpc;(organic);93;101
2024-10-18;(direct) / (none);(direct);74;80
2024-10-18;google / cpc;HU | GSN | PERF I Brand;39;45
2024-10-18;google / organic;(organic);38;40
2024-10-18;google / cpc;HU | pMAX | PERF I Brand;24;25
2024-10-18;google / cpc;(not set);15;15
2024-10-18;facebook / cpc;campaign_19;9;9
2024-10-18;l.facebook.com / referral;(referral);8;8
2024-10-18;facebook / cpc;campaign_20;8;8
2024-10-18;facebook / cpc;campaign_21;6;6
2024-10-18;(not set);(not set);2;4
2024-10-18;instagram.com / referral;(referral);4;4
2024-10-18;l.instagram.com / referral;(referral);3;3
2024-10-18;google / cpc;campaign_23;3;3
2024-10-18;bing / cpc;HU | PERF I Brand;3;3
2024-10-18;google / cpc;campaign_28;1;3
2024-10-18;bing / organic;(organic);2;2
2024-10-18;m.facebook.com / referral;(referral);2;2
2024-10-18;google / cpc;campaign_27;2;2
2024-10-18;google / cpc;campaign_26;1;2
2024-10-18;google / cpc;campaign_24;2;2
2024-10-18;google / cpc;DE | pMAX | PERF I Brand;2;2
2024-10-18;bing / cpc;campaign_2;2;2
2024-10-18;google / cpc;campaign_22;2;2
2024-10-18;hirlevel_s3;hirlevel_c2;2;2
2024-10-18;csodasmagyarorszag.hu / referral;(referral);1;1
2024-10-18;google / cpc;(referral);1;1
2024-10-18;lm.facebook.com / referral;(referral);1;1
2024-10-18;mail.google.com / referral;(referral);1;1
2024-10-18;redir.d-edgeconnect.media / referral;(referral);1;1
2024-10-18;google / cpc;campaign_33;1;1
2024-10-18;google / cpc;campaign_30;1;1
2024-10-18;hirlevel_s1;hirlevel_c1;1;1
2024-10-18;hirlevel_s5;hirlevel_c4;1;1
2024-10-18;ajanlat / offline;campaign_10;1;1