-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaussie-filters.txt
1130 lines (1106 loc) · 63.8 KB
/
aussie-filters.txt
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
! Title: SpitFire-666: 🇦🇺 Aussie uBlock Filters
! -- Sites made by/for australians --
! Expires: 48 hours
auspost.com.au##.header
paycalculator.com.au##.jss1341.MuiBox-root
paycalculator.com.au##.jss318
paycalculator.com.au##.jss321
portal.cvms.vic.gov.au##footer
search.nine.com.au##.bottom.adsList
search.nine.com.au##.sidePanelAds
search.nine.com.au##.top.adsList
thecupcakequeens.com.au##.kl-private-reset-css-Xuajs1.klaviyo-form.fJjqzc.Modal__ModalPortalStyled-sbc762-0.needsclick
www.9news.com.au##[href="https://www.9news.com.au/national/how-to-follow-9news-digital/29855bb1-ad3d-4c38-bc25-3cb52af1216f"]
www.9news.com.au##div:nth-of-type(4) > div > [href^="https://login.nine.com.au/edm"]
www.aldi.com.au##.ym-clearfix.noprint.detail-socialsharing
www.bhg.com##.jumpstart-video
www.bhg.com.au##.MagDriver
www.bhg.com.au##.Video--Loaded.Video--StickyAdOpen.Video--JWPlayer.Video
www.bhg.com.au##.jw-reset.jw-display
www.bhg.com.au##.jw-reset.jw-video
www.bhg.com.au##.jw-reset.jw-wrapper
www.broadsheet.com.au##.subscription-slide.subscription-wrapper
www.bunnings.com.au##.brand-static-banner
www.bunnings.com.au##.gHnpZM.NewsletterSubscriptionTilestyle__StyledWrapper-sc-1r7xevc-5
www.businessinsider.com.au##.brightcove-video
www.businessinsider.com.au##.brightcove-video-title
www.cakemail.com.au##.footer_wrap
www.carsales.com.au##.listing-items > .guaranteed-consideration
www.coinspot.com.au###twofawarning
www.coinspot.com.au###twofawarning > .modal-dialog
www.coinspot.com.au##.in.modal-backdrop
www.commbank.com.au##.load-stack.hide-stack.hide-on-print.row
$removeparam=ei,domain=commbank.com.au
www.coronavirus.vic.gov.au##.rpl-above-content__below
www.coronavirus.vic.gov.au##.rpl-accordion__button
www.domain.com.au##.css-176pzbt > .slick-initialized.slick-slider
www.domain.com.au##.css-1dra2ks .css-1m25tex
www.domain.com.au##.css-1fjvlsb
www.domain.com.au##.css-76lvh6
www.domain.com.au##.css-ue0p7b
www.domain.com.au##li.css-1b4kfhp > .css-11ag9qu
www.domain.com.au##li.css-1b4kfhp:nth-of-type(10)
www.domain.com.au##li.css-1b4kfhp:nth-of-type(14)
www.domain.com.au##li.css-1b4kfhp:nth-of-type(3)
www.drive.com.au###designstudio-iframe
www.drive.com.au##.cotw
www.drive.com.au##.pb-10.pt-10.bg-teal-dark
$removeparam=utm_source,domain=drive.com.au
www.essentialbaby.com.au##.article__body > div:nth-of-type(3) > div
www.glassdoor.com.au###ContentWallHardsell
www.glassdoor.com.au##.giveToGetContentModule
www.glassdoor.com.au##.row.mt-lg.justify-content-md-between.justify-content-around
www.glassdoor.com.au##.tooltipContainer
www.glassdoor.com.au##div.notEepHasJobs.inlineJobs:nth-of-type(2)
https://www.glassdoor.com/garnish/static/css/gd-user-hardsell-overlay.bundle.css
https://www.glassdoor.com/garnish/static/js/gd-user-hardsell-overlay.bundle.js
www.gumtree.com.au##.alert
www.gumtree.com.au##.c-rounded-corners5.c-clearfix.rs-ma-ad-feature-box.rs-ad-field
www.gumtree.com.au##.c-rounded-corners5.feature-package_2.feature-package
www.gumtree.com.au##.c-rounded-corners5.feature-package_3.feature-package
www.gumtree.com.au##.ecommerce-ad.panel
www.gumtree.com.au##.footer
www.gumtree.com.au##.header__leaderboard-ad--sticky-visible.header__leaderboard-ad--sticky-top.header__leaderboard-ad
zwww.gumtree.com.au##.liberty-container-1001--dweb-hg-cars-vans-ute.liberty-container-1001
zwww.gumtree.com.au##.liberty-container-1001--dweb-others.liberty-container-1001
www.gumtree.com.au##.module-body > .pstad-featrs-list
www.gumtree.com.au##.nudge-login
www.gumtree.com.au##.paypal-linking-message
www.gumtree.com.au##.simplified.footer
www.gumtree.com.au##.social-links
www.gumtree.com.au##.top-ad-upsell
www.gumtree.com.au##.top-ad-upsell__details
www.gumtree.com.au##.zero-search-results__panel-content
www.hardtofind.com.au##.is-hidden-mobile.otp-overlay
www.heraldsun.com.au###persistent-marketing-banner
www.itnews.com.au###gdpr-alert
www.kmart.com.au###kmailSignupDialog
www.kmart.com.au###model_bg_postcode
www.kmart.com.au##.sign-up
www.kotaku.com.au##.brightcove-video
www.lifehacker.com.au##.brightcove-video
www.lifehacker.com.au##.adWrapper.leaderboard__container
www.lifehacker.com.au##.leaderboard-container
www.mamamia.com.au##.none.main-article-post.article-holder > .pos1_spacer > .leaderboard_pos1.original-element.leaderboard-main-ad
www.metrotrains.com.au##.slick-slider.slick-initialized.carousel
www.metrotrains.com.au##.slick-track
www.mzcupcake.com.au##.fancybox-opened.fancybox-type-html.fancybox-desktop.fancybox-wrap
www.news.com.au###module-more-in > .module-content
www.news.com.au##.lined-background
www.news.com.au###module-more-in
www.news.com.au###nca-behavioural-banner-wrapper
www.news.com.au##.active.vjs-playlist
www.news.com.au##.list-wrapper
www.news.com.au##.rp-recommendations-container
www.news.com.au##.vms-end-state.vjs-pause-state.videoWrapper
www.nickscali.com.au##.popup-bg-none
www.nickscali.com.au##.popup-center-center
www.pinterest.com.au##.Hsu.iyn.zI7.qJc.p6V.ojN.jzS.gjz.fte.fev.dxm._he.PKX.Lej.LCN.Jea
www.productreview.com.au##.leaderboard_2Ov.mt-3_3Rf
www.ramint.gov.au##.region-footer-upper.region
www.realestate.com.au##.bkYFHe.ContentCarouselContainer-sc-139sd3a-0
www.realestate.com.au##.floating-pill__wrapper
www.seek.com.au##._2YF0s4X.yvsb871.yvsb870 > ._1QLmZio.yvsb870
www.seek.com.au##._3KwIuf8._1_Q8jzT > div:nth-of-type(2) > div > div:nth-of-type(1)
www.seek.com.au##.in3Tnzl > div > ._16BygUP
www.smokeandpickles.com.au##.sqs-slide-layer-content
www.spotlightstores.com##.cookies-popup-wrapper
www.spotlightstores.com##.show.fade.modal-backdrop
www.styletread.com.au##.popup_overlay.popups-util__overlay
www.target.com.au##.hfma.enews-quick.quick-form
www.theage.com.au##._22FRK > div.noPrint
www.theage.com.au##.noPrint._2rhIe.o-hc3._2JlsU.undefined
www.thegoodguys.com.au##.seen-a-lower-price
||api.trustisto.com^
||i2.au.reastatic.net/1038x753-resize,extend,r=33,g=40,b=46/29507e16bbb53d65f051da9203e1ad3f40c29f1991dd261aa08873978b8312c4/image.jpg$image
||imagesvc.meredithcorp.io/v3/jumpstartpure/image$image
||js.zohocdn.com/salesiq/*
||source=dclk_video_ads&requiressl=yes$xhr,domain=sbs.com.au
||vts.zohopublic.com/watch
||www.bunnings.com.au/assets/styleguide/v211.1.0.2689-release/bunnings-main-site/assets/img/bg-banner-brands.jpg$image
||www.coronavirus.vic.gov.au/img/header-pattern-bottom.png$image
||www.mzcupcake.com.au/wp-content/uploads/2014/01/popup_background-2014.jpg$image
||www.mzcupcake.com.au/wp-content/uploads/2020/07/mzcc-notice.jpg$image
||www.pinterest.com.au/resource/ActivateExperimentResource/create/*$xhr,domain=www.pinterest.com.au
||www.pinterest.com.au/resource/ContextLogResource/create/*$xhr,domain=www.pinterest.com.au
||www.pinterest.com.au/resource/StatsLogResource/create/*$domain=www.pinterest.com.au
www.huffingtonpost.com.au###social_badges.social_badges_en.social-bar.group.floating > .social-badge > .shares.group
www.huffingtonpost.com.au###wrapper.wrapper.bpage.entry.australia.regular > .content > .main.group > .rail.fix > .follow-huffpost.no-ad
forums.whirlpool.net.au###replylist > .reply-archived.reply:nth-of-type(8)
www.betterhealth.vic.gov.au###top-floating-bar
www.gumtree.com.au##.liberty-container-1001--dweb-others.liberty-container-1001
||carsales.vxcrush.net/au/general/content/45i80bsd2euna8auc44mt4t5u.mp4?vxc_format=jpg&vxc_size=hd$image
www.carsales.com.au##.slide.carousel
www.carsguide.com.au##.id-0.leaderboard
www.amazon.com.au##.nav-sprite-v1.navLeftFooter
www.amazon.com.au###anonCarousel2 > .a-carousel > li.a-carousel-card > div
www.jbl.com.au##.ctd-modal-subscribe
||buy-au.piano.io/checkout/template/cacheableShow$subdocument
||buy-au.piano.io/checkout/template/cacheableShow?aid=zFviteD8av&templateId=OTRNV6ZTR2YD&templateVariantId=OTVR9BVSH6LAH&offerId=fakeOfferId&experienceId=EXA0KESWACND&iframeId=offer_8aaf6bea4e58e852aeaa-0&displayMode=modal&pianoIdUrl=https%3A%2F%2Fid-au.piano.io%2Fid%2F&widget=template&url=https%3A%2F%2Fwww.standard.net.au$subdocument
www.standard.net.au##.tp-modal
www.standard.net.au##.current.blocker.jquery-modal
petrolspy.com.au###content
petrolspy.com.au###content-background
www.babybunting.com.au##.bb-gdpr
www.productreview.com.au##.top_ibV.leaderboard_RPe.d-flex_RNf.bg-light_mo3.justify-content-center_zro.flex-column__BR.py-3_UXp
www.productreview.com.au##.in-between-reviews-ad__41.d-flex_RNf.justify-content-center_zro.flex-column__BR.mt-3_bFD
www.commbank.com.au##.hide-on-print.xs-description-hidden.prominence-panel
www.commbank.com.au##.hide-on-print-receipt.side-panel-section.sales-card
||www.danmurphys.com.au/assets/images/page-bg.png$image
www.danmurphys.com.au##div.is-nav-fixed.header-overlay:nth-of-type(2)
www.myshopping.com.au##div:nth-of-type(21)
www.glassdoor.com.au##div.ec4dwm00.css-11b1byw.gd-ui-module:nth-of-type(4)
www.glassdoor.com.au##.ec4dwm00.css-18hgx8a.gd-ui-module.mb-std.m-0.notEepHasJobs.inlineJobs
www.catch.com.au##.lazyloaded.event--card.img-responsive
www.catch.com.au##.banner--container
www.catch.com.au##section.product-carousel.recommended.full-section:nth-of-type(5)
www.catch.com.au##section.product-carousel.recommended.full-section:nth-of-type(3)
www.broadsheet.com.au##.hvEBaY.SearchForm-sc-1rtba0o-0
||www.broadsheet.com.au/ping/*$xhr,domain=www.broadsheet.com.au
www.ebay.com.au###placement_html_101195 > .merch-module
www.ebay.com.au###placement_html_101196 > .merch-module
www.ebay.co.uk##.hl-standard-carousel.hl-atf-module-js.grid.card.hl-side-card.hl-module
www.ebay.com###placement_html_101197
www.ebay.com###placement_html_101198
www.ebay.com###glbfooter
www.ebay.com.au###s0-14-11-8-5\[0\]-1-20-list
www.ebay.com.au###placement_html_101197 > .merch-module
www.ebay.com.au###placement_html_101198 > .merch-module
www.ebay.com.au###placement_html_101197 > .merch-module > .aspects-1.container_wrapper
www.ebay.com.au###placement_html_101198 > .merch-module > .aspects-1.container_wrapper
www.ebay.com.au##.vi-lb-placeholder
www.ebay.com.au###merch_html_100752
www.ebay.com.au##.no-subtitle.gh-fixed-banner-v3__hasLogo.gh-fixed-banner-v3__container
www.ebay.com.au##.active.null.gh-fixed-banner-v3__wrapper.gh-coupon-banner
www.ebay.com.au###nume_html_101103_293199-w0-0 > .last.first.mfe-card-container
$removeparam=norover,domain=ebay.com.au
$removeparam=mkscid,domain=ebay.com.au
$removeparam=itemid,domain=ebay.com.au
$removeparam=merchantid,domain=ebay.com.au
www.ebay.com.au##.widgets-placeholder
www.ebay.com.au##.yolo-show.g-signin-mweb
ebay.com.au##html:style(overflow: auto !important;)
www.ebay.com.au##.drawer-dialog--mask-fade-slow.dialog--mask-fade.drawer-dialog
www.ebay.com.au##.gf-mrecad.gh-clearfix
www.ebay.com.au##.s-item__watchheart--watch.on-image.s-item__watchheart
ebay.com##html:style(overflow: auto !important;)
www.ebay.com.au##.srp-main-below-river
$removeparam=itmprp,domain=ebay.com.au
$removeparam=itmmeta,domain=ebay.com.au
www.ebay.com.au > .clearfix.s-item__wrapper > .s-item__image-section > .s-item__watchheart--watch.on-image.s-item__watchheart
www.ebay.com.au##.x-ads-placements--101506.vim.adp-vim.x-ads-placements
www.ebay.com.au###placement101195
www.ebay.com.au##.x-ads-placements--101196
www.ebay.com.au##.ux-navigator__container
www.ptv.vic.gov.au##.favourites-layout__modal--non-blocking.favourites-layout__modal.modal--simple.myki-modal.show.fade.modal
www.nickscali.com.au##._hide-for-tablet._hide-for-mobile.non-purchasable-info
paycalculator.com.au##.jss493.MuiBox-root
au.nextdoor.com##.css-1nl4xtf
$removeparam=psrid,domain=totaltools.com.au
$removeparam=psrid,domain=sydneytools.com.au
$removeparam=psrid,domain=cltoolcentre.com.au
www.gumtree.com.au##.liberty-container-1001--dweb-hg-cars-vans-ute.liberty-container-1001
www.babybunting.com.au##.consent-cookie
forums.whirlpool.net.au###rr49507306 > div.reply-archived.reply > .abvertibing_block
forums.whirlpool.net.au###rr70872218 > div.reply-archived.reply > .abvertibing_block
forums.whirlpool.net.au##div.reply-archived.reply:nth-of-type(2)
www.comedyfestival.com.au##.takeover
www.comedyfestival.com.au##.container.footer__heritage.footer__signoff
au.movember.com##.row.mospace-fb-and-apps
au.movember.com##.mospace-key-statistics--title
https://www.weatherzone.com.au/scripts/hotjar.js
https://www.weatherzone.com.au/scripts/plugin-configs.js
https://www.weatherzone.com.au/scripts/gtmHead.js
www.weatherzone.com.au##.publift-ad-wrapper
||media.danmurphys.com.au/dmo/e-commerce/whisky-business-fy23/$image
||media.danmurphys.com.au/dmo/e-commerce/read-between-the-wines-fy23/$image
www.danmurphys.com.au##.hidden-on-certain-page.interrupt > [href^="/discover/christmas"]
visit.museum.wa.gov.au##.uk-open.uk-modal.uk-modal-full.block-block-content22b8c382-3a72-434f-be0d-54220ea66551.block-block-content.block.block--acknowledgementofcountry.block--type-basic
www.carsguide.com.au##.half-page-shared.ad
www.carsguide.com.au##.m-rec.ad
www.carsguide.com.au##.mobileAppBanner-active.mobileAppBanner
10play.com.au##.cvui-large-play
10play.com.au##.vtg-blank.cvui-clickable.cvui-control.cvui-play-prompt-screen
bws.com.au##.bg--white.merch-card--container
www.news.com.au##.g_wrapper > .header_date-bar_links
www.weatherzone.com.au##div.eHMuzp.sc-ggVKop:nth-of-type(1)
www.weatherzone.com.au##.bBxhcf.sc-ciKQPW
www.bandt.com.au##.in.fade.modal
www.domain.com.au###paragraph-5 > .placeholder > div
www.domain.com.au##.placeholder > div > .css-0 > div > div
||buxton-images-prod.s3.amazonaws.com/media/original_images/Buxton-Hero-Full-Home.jpg$image
petrolspy.com.au###mobile-footer
||ds12k1658w1f2.cloudfront.net/wp-content/uploads/2020/08/Metro-Home-Page.jpg$image
www.gumtree.com.au##.liberty-container-1001 > .panel > .liberty-adsense__panel-body.panel-body > .ad-sense-ad
www.gumtree.com.au##.liberty-container-1002 > .panel
www.gumtree.com.au##.warning.panel-body--standard-shadow.panel-body--rounded-full.panel-body
www.gumtree.com.au##.modal--backdrop.modal
www.gumtree.com.au##.liberty-container-1001--mweb-others.liberty-container-1001
||www.spotlightstores.com/medias/BP80013896001-silver.jpg-SPOTWF-productHero$image
corporatechairs.com.au##.av-share-box
dandenongmarket.com.au##.overlay__content--newsletter.overlay__content.type__centered.bg__white.grid-12
www.gourmettraveller.com.au##.sticky-block--out-of-view.sticky-block--at-bottom.sticky-block
www.sydney.com##.clearfix.block-block-contentb3471bd4-3cde-4c2c-91d9-c065fcce1ba7.block-block-content.block
www.babycenter.com.au##.bc-show-for-small.bcAd
www.australiangeographic.com.au##.code-block-9.code-block
missamara.com.au##.current.blocker.jquery-dpModal
www.radio-australia.org###body_centered_ad
www.danmurphys.com.au##.ng-star-inserted.parallax
||media.danmurphys.com.au/dmo/e-commerce/whisky-business-fy23/campaigns/my-dans-offer/phase-2/over-300-offers/lp/background.jpg$image
www.danmurphys.com.au##.mydans-ph2-joinNow.container-fluid
https://assets.nickscali.com/static/version1678194437/frontend/Nickscali/default/en_US/Magento_Cookie/js/require-cookie.min.js
https://assets.nickscali.com/static/version1678194437/frontend/Nickscali/default/en_US/Magento_Theme/js/cookie-status.min.js
https://assets.nickscali.com/static/version1678194437/frontend/Nickscali/default/en_US/Magento_Cookie/js/jquery.storageapi.extended.min.js
https://assets.nickscali.com/static/version1678194437/frontend/Nickscali/default/en_US/jquery/jquery.cookie.min.js
bws.com.au##.ng-scope.card.inspirationCard
www.carsguide.com.au##.header.glance-leaderboard-container
books.google.com.au##.gb_Lf.gb_mg
www.tapatalk.com##.bg1.related-blog-bar.more-topic-bar.bar-bottom.action-bar
www.tapatalk.com##.endoftopicbar-only-share.bg1.flex.share_icon_area
www.tapatalk.com###global_popout_container
||brisray.com/common/back1.jpg$image
www.yahoo.com###close-fauxdal
archive.org###action-bar-modal
www.sbs.com.au##.notificationTitleContainer.jss244
www.sbs.com.au##.expanded.jss242
||fbiradio.com/wp-content/themes/fbi_sf/images/FBI_HEADER_Large_animated.gif$image
fbiradio.com##.scrolling.site-title
www.news.com.au##.vms-no-playlist.rhc-stick.vms-ready.vms-player.module.vms
www.news.com.au##.nca-signin-bar.lipos-1
www.news.com.au###sticky-module-2
www.news.com.au###sticky-module-1
www.news.com.au###header-ads-container
www.dcceew.gov.au###block-block-content-footer-text > .field__item.field--label-hidden.field--type-text-with-summary.field--name-body.field.text-formatted.clearfix
www.dcceew.gov.au##.wrapper > .energy.footer
www.carsales.com.au##csn-gdpr-toaster
www.ramint.gov.au##.div_text
www.gumtree.com.au##.view-item-page__leaderboard-wrapper-sticky
au.nextdoor.com##.static-promo-content
www.gumtree.com.au##.sticky.sticky-desktop.header__banner-container
@@||js-agent.newrelic.com^$domain=telstra.com
www.jbhifi.com.au###webinventory-leaderboard-1
www.carsguide.com.au##.gncAd.id-1.leaderboard
www.carsguide.com.au##.id-2.leaderboard
www.facebook.com##.xds687c.x1ey2m1c.xixxii4
www.weatherzone.com.au##.eLQmNC
www.cyber.gov.au###block-footer-aoc
www.brightlife.com.au##.mfp-ready.middle-center.mfp-fade-zoom.mfp-auto-cursor.mfp-close-btn-in.mfp-wrap
www.brightlife.com.au##.mfp-ready.middle-center.mfp-fade-zoom.mfp-bg
www.hotdoc.com.au##.js_smartbanner.smartbanner--ios.smartbanner
www.hotdoc.com.au###native-apps
visitperth.com##.component-content > p
www.drive.com.au##.openChat_drive__open-chat__tab-container__vdQvB
www.drive.com.au##.gam_textfixed_pos1.gam-textfixed-pos1.gam-ad
www.flophouse.com.au##.yui-popup-container-node
www.domain.com.au###adb-srp-insearch-1
www.domain.com.au###adb-srp-insearch-2
www.domain.com.au###adb-srp-insearch-3
www.realestate.com.au##.lead-gen__action-link
www.realestate.com.au###advert-strip1
ray-white-carnegie.business.site###cookieDialog
emergency.vic.gov.au##.js_smartbanner.smartbanner--android.smartbanner
www.booktopia.com.au###credential_picker_iframe
www.carsales.com.au##.js_smartbanner.smartbanner--android.smartbanner
www.carsales.com.au###credential_picker_iframe
www.domain.com.au##.css-vep9h8
www.domain.com.au##.css-94txvb
www.perthnow.com.au##.e1ar06v00.css-115hphd-StyledToastContainer.ToastNotification.cookie-consent--normal
www.perthnow.com.au##.ezkyf1c1.css-mbwzd9-StyledStickyFooterAdUnit > .ezkyf1c0.css-qyun7f-StyledAdUnitWrapper.ad-no-notice.hide-print
www.news.com.au###fixed-ad
www.who.com.au##.Video-Wrapper--JWPlayer.Video-Wrapper
||www.comedyfestival.com.au/theme/season/style/img/shared/ad-empty.png$image
www.comedyfestival.com.au##.ads--show.ads.show-brief--two.show-brief
www.drinkstrade.com.au##.modal-body
www.drinkstrade.com.au##.modal-header
www.drinkstrade.com.au##.show.fade.modal
www.drinkstrade.com.au##.show.fade.modal-backdrop
||sp-ao.shortpixel.ai/client/q_lossy,ret_img/https://www.drinkstrade.com.au/wp-content/themes/tdadrinks/dist/images/bg_popup.png$image
www.sauls.com.au##.OPT_IN.ICON.BOTTOM_LEFT.DARK.POPUP.sqs-cookie-banner-v2
missamara.com.au##.text-center.sale_popup
missamara.com.au###gorgias-chat-container
missamara.com.au##.exitintent_561_856d7f41_0317.exitintent_561_856d7f41_039 > div
www.betootaadvocate.com##.hustle-main-wrapper
sitchu.com.au##.display-subscribe.modal-dialog-centered.modal-dialog > .modal-content > .modal-body
www.radio-australia.org###cookiebanner
https://www.glassdoor.com.au/garnish/static/js/gd-i18nRedirectModal.bundle.js
https://www.glassdoor.com.au/garnish/static/js/gd-hardsell-content-wall-12mgtg.bundle.js
||edgmedia.bws.com.au/bws/media/artwork/banners/large/BWS34429_BWYASSS-main-d.png?impolicy=Assets-MedHigh$image
www.foxsports.com.au###i-amp-1
www.racenet.com.au##.upcoming-race__meeting-list > .ad-m-mrec-container.ad-block__container
www.racenet.com.au##.ad-m-mrec-container.ad-block__container
www.racenet.com.au##.header-ad--mobile
www.foxsports.com.au###i-amp-8 > .i-amphtml-fx-flying-carpet-clip
||web.foxsports.com.au/amp-article/newsletter/newsletter.html$subdocument
www.foxsports.com.au##i-amphtml-scroll-container
www.betootaadvocate.com###sndx-110792-snack_mex2
www.betootaadvocate.com###sndx-110792-snack_mex3
www.betootaadvocate.com###sndx-110792-snack_mex4
www.betootaadvocate.com###sndx-110792-snack_mex5
www.family-getaways-melbourne.com##.messenger.socialIcon
www.family-getaways-melbourne.com##.SocialShareStickyBottom.SocialShareSticky.SocialShare
secretmelbourne.com##.visible.floating-share-buttons
secretmelbourne.com##.gpt-margin-bottom.smn-home-section__aside
secretmelbourne.com###content > aside
www.templeandwebster.com.au##.promo-banner
www.mamamia.com.au##.mm-popup-overlay
www.mamamia.com.au##.post-content-parent-1
www.9news.com.au##div.widget-ad.widget:nth-of-type(8)
www.9news.com.au##.layout__inner > div.widget-ad.widget
watchpad.com.au###app-embed-container-45517
www.productreview.com.au##div.uAJ4l7:nth-of-type(8)
www.sbs.com.au##.css-j052ve
www.betootaadvocate.com##.td-header-header.td-header-row.td-container-header
www.betootaadvocate.com##.hustle-show.hustle-slidein-position--south.hustle-size--custom.module_id_1.hustle_module_id_1.hustle-palette--603f1ba3c7e829_30347573.hustle-slidein.hustle-ui
www.betootaadvocate.com##.td_block_template_5.tdi_2.td-a-rec-id-content_inline.td-a-rec
https://www.deedsbrewing.com.au/gift-voucher-pop-up-page
https://www.deedsbrewing.com.au/api/census/overlay
! 2023-07-09 https://www.recipetineats.com
! 2023-07-10 https://www.readings.com.au
www.readings.com.au##.active.popup-overlay
! 2023-07-10 https://www.harryhartog.com.au
www.harryhartog.com.au###shopify-section-template--16450701721843__16624350139cefe13e
www.readings.com.au##.newsletter-footer
www.mitre10.com.au##.left.am-notification-wrapper
https://endotaspa.com.au/static/version*/frontend/Endota2022/base/en_AU/Amasty_GdprFrontendUi/
https://endotaspa.com.au/static/version*/frontend/Endota2022/base/en_AU/js-cookie/
https://endotaspa.com.au/static/version*/frontend/Endota2022/base/en_AU/Magento_Theme/js/cookie-status.min.js
https://endotaspa.com.au/static/version*/frontend/Endota2022/base/en_AU/mage/cookies.min.js
localserves.com.au###modal-app-download
https://s3-ap-southeast-2.amazonaws.com/localserves.assets/js/js.cookie
localserves.com.au##.in.fade.modal-backdrop
$removeparam=type,domain=seek.com.au
$removeparam=CD27,domain=hays.com.au
https://www.flophouse.com.au/api/census/overlay
www.drive.com.au##.subscribe_drive-subscribe-content__wrapper__eL0k9
www.ozbargain.com.au##.adssticky.ads
www.ozbargain.com.au##.m-expand.feature.newsletter.node-teaser.node
www.timeout.com##._overlay_kzzn5_1
https://www.timeout.com/static/js/popup-newsletter-*.js
https://www.timeout.com/static/js/taboola-*.js
https://www.timeout.com/static/js/adwords-*.js
https://www.timeout.com/static/js/ajax-advert-*.js
https://www.glassdoor.com.au/garnish/static/js/gd-user-hardsell-overlay.bundle.js
syn.org.au##.col-sm-12 > p
https://au.nextdoor.com/context/nux/spouse_add
https://au.nextdoor.com/api/gql/getNextOnboardingScreenQuery
identikid.com.au##.fancybox-outer
identikid.com.au##.fancybox-overlay-fixed.fancybox-overlay
https://identikid.com.au/cdn/shop/t/12/assets/jquery.fancybox.min.js
$removeparam=doing_wp_cron,domain=pickr.com.au
www.visitmelbourne.com###cb
concreteplayground.com##.footer-feedback-bar
www.foodanddrinkbusiness.com.au##.landing-ad
theshot.net.au###fixed_footer
www.harveynorman.com.au##.advert_gam360.advert_hero
www.harveynorman.com.au##.advert_gam360.advert_promo1
www.harveynorman.com.au##.advert_gam360
www.productreview.com.au##._HYlpI.c4coio.D4HEUI.M75vAx._FAptM._F436L.TyJiPJ.qk27Ii.J7xIZx._oMqQv.foBX_R
www.productreview.com.au##div.e4Y0Gt.jFDVwd:nth-of-type(4)
www.productreview.com.au##.Mq8_JQ.en8iN_.D4HEUI.M75vAx.Fjwdwz
www.productreview.com.au##div.e4Y0Gt.jFDVwd:nth-of-type(8)
www.productreview.com.au##.e4Y0Gt
https://cdn.productreview.com.au/assets/public/gnisitrevda_4de38944.js
https://cdn.productreview.com.au/assets/public/diberp_69a10f29.js
au.hotdeals.com##.term_site.all-dialog-fix
au.hotdeals.com##.ads-list-one.afc-wrapper
au.hotdeals.com##.ads-list-two.afc-wrapper
www.urchinbar.com.au##.c7bzh_.L27qsU.WIX_ADS
themodern.com.au##.index-section--hidden.shopify-section
www.westelm.com.au##.in.modal-email-capture-flyover.fade.modal
www.westelm.com.au##.in.fade.modal-backdrop
www.livingstyles.com.au###global-recomd
www.pamono.com.au##div > .kl-private-reset-css-Xuajs1.needsclick
www.livingstyles.com.au##.subscribe.footer-section
www.adairs.com.au##.col-12.Subscription
www.bigw.com.au##.footer-actions.footer-section
www.legislation.vic.gov.au##.rpl-site-footer__acknowledgement.rpl-acknowledgement
www.weatherzone.com.au##.jdqHNm.sc-d61aa197-19
$removeparam=ref,domain=amazon.com.au
$removeparam=keywords,domain=amazon.com.au
$removeparam=qid,domain=amazon.com.au
$removeparam=psc,domain=amazon.com.au
https://tags.babybunting.com.au/
bws.com.au##feature-promo.ng-isolate-scope
paycalculator.com.au##.jss32
paycalculator.com.au##.jss33
paycalculator.com.au##.jss30
www.thedistrictdocklands.com.au###overlay_subscribe
whatson.melbourne.vic.gov.au##.footer__acknowledgement
carsguide.com.au##.default-newsletter
bigfooty.com##.topbanner.chaching
www.bigfooty.com##.js-bottomFixTarget.u-bottomFixer
www.bigfooty.com##.noticeScrollContainer.lSSlideOuter
www.bigfooty.com##p
www.shannons.com.au##.active.popup__container
www.westernaustralia.com##.banner-image
suncorp.com.au/data-insights-api/ac/said/cookie
justcars.com.au##.notify-user-experience
https://endotaspa.com.au/static/version*/frontend/Endota2022/base/en_AU/Magento_GoogleTagManager/js/google-analytics-universal.min.js
wwos.nine.com.au##.kUzrxD.woidg2-0
themusic.com.au##.leading-5
themusic.com.au##.mb-4
themusic.com.au##.overflow-hidden > .max-w-full.items-center.justify-center.mb-5.flex
themusic.com.au##.lg\:gap-x-5.lg\:justify-center.lg\:grid-cols-site.grid > div > .max-w-full.items-center
purplesneakers.com.au##.leading-5.font-bold.text-center.bg-white.cursor-pointer.w-full.z-10.left-0.bottom-0.fixed.lg\:block.hidden
purplesneakers.com.au##.overflow-hidden > .mb-4
purplesneakers.com.au##.overflow-hidden > .max-w-full.items-center.justify-center.mb-5.flex
purplesneakers.com.au##.max-w-full.items-center.justify-center.mb-5.flex
secretmelbourne.com##.smn-contrast-color.smn-bg-waves.smn-banner-newsletter
secretmelbourne.com##.smn-sidebar.sidebar-container
secretmelbourne.com##.new-home.layout-sidebar__sticky > div.sidebar-container > .mc4wp-form-8.mc4wp-form
mumcentral.com.au##.fd-is-open.fd-modal
www.popphones.com.au###exitpopup-modal
www.popphones.com.au###footer_subscription_area
watsonsjewellers.com.au###omnisend-dynamic-container
starbuy.com.au##.kl-private-reset-css-Xuajs1.needsclick
https://tasmania.com/wp-content/plugins/cookie-law-info/
tasmaniaexplorer.com.au##.cb-box__wrapper-center_modal
lapoftasmania.com.au###elementor-popup-modal-3444
lapoftasmania.com.au##.elementor-widget-call-to-action
radiotoday.com.au##.show-all > .mrwp_ads_center.mrwp_ads
!www.theiconic.com.au##div.columns.xlarge-pull-4.large-pull-5.medium-pull-6.medium-2.small-6:nth-of-type(2) > ul > li:nth-of-type(2) > .ga-track-link-click
www.visitgippsland.com.au##.wisepops-root
www.visitvictoria.com###cb
www.visitvictoria.com##.subscriptions
www.visitvictoria.com##.acknowledgement
www.visitgippsland.com.au##.bg--blue-charcoal.SubscribeForm
login.my.gov.au##.footer-acknowledgement
theurbanlist.com##.PressPatron
theurbanlist.com/cookie-consent
$removeparam=viralityEntryPoint,domain=airbnb.com.au
$removeparam=s,domain=airbnb.com.au
$removeparam=unique_share_id,domain=airbnb.com.au
$removeparam=source_impression_id,domain=airbnb.com.au
$removeparam=x_pwa,domain=stayz.com.au
$removeparam=rfrr,domain=stayz.com.au
$removeparam=pwa_ts,domain=stayz.com.au
$removeparam=referrerUrl,domain=stayz.com.au
$removeparam=useRewards,domain=stayz.com.au
$removeparam=adults,domain=stayz.com.au
$removeparam=regionId,domain=stayz.com.au
$removeparam=destination,domain=stayz.com.au
$removeparam=destType,domain=stayz.com.au
$removeparam=neighborhoodId,domain=stayz.com.au
$removeparam=latLong,domain=stayz.com.au
$removeparam=privacyTrackingState,domain=stayz.com.au
$removeparam=searchId,domain=stayz.com.au
$removeparam=top_dp,domain=stayz.com.au
$removeparam=userIntent,domain=stayz.com.au
$removeparam=selectedRoomType,domain=stayz.com.au
$removeparam=selectedRatePlan,domain=stayz.com.au
$removeparam=expediaPropertyId,domain=stayz.com.au
mobile.everyday.com.au##.mb-4.pb-4.gap-4.mb-3.w-100.align-items-sm-center.align-items-start.justify-content-center.flex-sm-row.flex-column.d-flex.footer_acknowledge
@@||accounts.woolworthsrewards.com.au^$script,domain=accounts.woolworthsrewards.com.au
@@||s.go-mpulse.net^$script,domain=accounts.woolworthsrewards.com.au
opengardensvictoria.org.au##.inner.col-sm-6.col-md-6
www.drive.com.au##.liveChat_drive-container__q74vl
www.drive.com.au##.roofrack-wrapper
www.skynews.com.au##.nca-et-rendered.nca-et-embed
ia.acs.org.au###subscribeModal
www.gleneira.vic.gov.au##[href="/acknowledgement-of-country"]
www.abc.net.au##.Typography_colourInherit__dfnUx.Typography_regular__WeIG6.Typography_lineHeightMobile24__crkfh.Typography_sizeDesktop12__iauRA.Typography_sizeMobile12__w_FPC.Typography_base__sj2RP
www.abc.net.au##div.SiteFooterColumn_siteFooterColumn___RtYL > p
iview.abc.net.au##.iv-_PRtJ.iv-_w59V.iv-PGO8E.iv-DtJ67.iv-_GhvI
www.homeloanexperts.com.au##.sgpb-popup-dialog-main-div-wrapper
www.homeloanexperts.com.au##.sgpb-popup-overlay
https://www.homeloanexperts.com.au/wp-content/cache/min/1/wp-content/themes/homeloanexperts/js/cookie-handler.js
www.savings.com.au###google-ad-side
www.comedyfestival.com.au##.tooltip-wrapper--group-small-screen.tooltip-wrapper--filter.tooltip-wrapper
www.melbourne.vic.gov.au##.AckCapped-width
www.bigw.com.au##.footer-country.footer-section
www.syn.org.au##p:nth-of-type(6) > em
www.visitmelbourne.com##.acknowledgement > p
www.theurbanlist.com##.footer-aoc
www.abc.net.au##aside
$removeparam=amp_js_v,domain=news.com.au
$removeparam=amp_tf,domain=news.com.au
$removeparam=referrer,domain=news.com.au
$removeparam=ampshare,domain=news.com.au
$removeparam=aoh,domain=news.com.au
amp.abc.net.au##.ofqUa > p
www.caloriecounter.com.au###double_mrecs
forummelbourne.com.au##.acknowledgement
www.pakronics.com.au##.modal--exit-popup.modal
www.metrotrains.com.au###footer-home__bottom > p
www.qantas.com##.aem-GridColumn--offset--default--0.aem-GridColumn--offset--phone--0.aem-GridColumn--default--12.aem-GridColumn.aem-GridColumn--phone--12.aem-GridColumn--phone--none.aem-GridColumn--default--none.padding--medium.width--standard.layout-styles--charcoal.responsivegrid.container.layout-container
blueprint.asd.gov.au###aoc > p
blueprint.asd.gov.au###aoc
eukybear.com.au###footer-copyright > div
eukybear.com.au###shopify-section-footer-top
www.monash.edu##.graphite-intro
www.sbs.com.au##.css-tm3fgx.MuiList-root > .css-3lr7zh.MuiListItem-padding.MuiListItem-gutters.MuiListItem-root
www.sbs.com.au##.jss401
themusic.com.au##.lg\:gap-x-5.lg\:justify-center.lg\:grid-cols-site.grid > div > .max-w-full.items-center.justify-center.mb-5.flex
themusic.com.au##div.max-w-full.items-center.justify-center.mb-5.flex:nth-of-type(10)
themusic.com.au##div.max-w-full.items-center.justify-center.mb-5.flex:nth-of-type(1)
themusic.com.au##div.lg\:gap-x-5.lg\:grid-cols-page.lg\:grid > div > div > div.max-w-full.items-center.justify-center.mb-5.flex
themusic.com.au##div.lg\:gap-x-5.lg\:grid-cols-page.lg\:grid > div > div.max-w-full.items-center.justify-center.mb-5.flex
https://www.nickscali.com.au/static/version*/frontend/Nickscali/default/en_US/WeltPixel_Newsletter/js/widget/newsletterpopup.min.js
www.castlery.com##.is-shown.rf1p8B
earlysettler.com.au##.p-4.mx-auto.items-center.flex-col.flex.container
uniden.com.au##.cp-modal-every-design-container.cp_id_218ad.cp-modal-popup-container.cp-module
www.realestate.com.au##.xOqJr.PageBodyAd__AdWrapper-sc-nlvdpn-1
www.glassdoor.com.au##.e1yw8gyz2.css-kymynp-StyledUserAlertBanner
www.carsguide.com.au##.col-sm-12.col-md-12.col-lg-12.ad-board
www.carsguide.com.au##.top-16.sticky.rhc-desktop-only
safetystoreaustralia.com.au##.avada-footer-scripts
auspost.com.au##app-acknowledgement-footer
www.wilsonstorage.com.au##.footer__small
qota.com.au##.acknowledgement
qota.com.au##.footer-top.bw-section
www.gtm.net.au##.inner-wrapper > p:nth-of-type(2)
memberonline.unisuper.com.au##.detail
ultimatebackyard.com.au##.tl-anim-zoom_in.tl-states-root
ultimatebackyard.com.au###tve_tcb2_blank > .tve-leads-conversion-object
https://ultimatebackyard.com.au/wp-content/plugins/thrive-leads/tcb/editor/js/dist/modules/lead-generation.min.js?
iview.abc.net.au###loginPrompt
||cdn.iview.abc.net.au/thumbs/*/le/LE2227H_628b1c0ccd736_3600.jpg$image
https://jbh-au-services-api-v2-prod.azurefd.net/ServicesApi/v2/services/suggestions
www.kathmandu.com.au###mailing-list-form
www.kathmandu.com.au##.newsletterInfo-1hO
www.interstateremovals.com.au##.newsletter_area
www.carsales.com.au##.row.footer-text
www.priceme.com.au##.heroAds
auspost.com.au##.atsi-footer
startrack.com.au##.atsi-footer
josefchromy.com.au##.col-xl-6.col-sm-12.footer-card-1
ducanebrewing.com.au##.country.row
memberonline.unisuper.com.au##.section__detail
memberonline.unisuper.com.au##div.section:nth-of-type(4)
www.crikey.com.au##div.grid__col-3:nth-of-type(3)
www.tourismtasmania.com.au##.footer-aoc__wrapper.row
www.discovertasmania.com.au##.welcome-to-country
hobartandbeyond.com.au##.elementor-section-height-default.elementor-section-boxed.elementor-element-0e4f6c2.elementor-element.elementor-top-section.elementor-section
www.broadsheet.com.au##.subscription-modal
www.groupon.com.au###subsUI
||web.aips-sol.com.cdn.cloudflare.net^
www.genv.org.au##.c-footer__inclusion
www.genv.org.au##.c-footer-flags
www.thelumemelbourne.com##.footer-ackno-wrapper > .footer-text
ducanebrewing.com.au###mc_embed_signup
josefchromy.com.au##.col-xl-6.col-sm-12.footer-card-1 > .card-body > p
wwos.nine.com.au##.cZoHhE.sc-jeGSXX
tinybear.com.au##.dev > p
www.davidjones.com##.m-pad-lr-15.pad-lr-20.pad-tb-50
www.nowtolove.com.au##.ad-billboard__wrapper.container
www.nowtolove.com.au##.widget-area.article-masthead-sidebar > .sticky-ad-wrapper
www.nowtolove.com.au###TeadsContainer1
www.nowtolove.com.au##div.hide-on-desktop.mrec.ad:nth-of-type(2)
www.nowtolove.com.au##div.hide-on-desktop.mrec.ad:nth-of-type(3)
www.nowtolove.com.au##.article-related-stories__main > .native-ad-wrapper
www.nowtolove.com.au##.half-page.ad
www.nowtolove.com.au###page > .hide-on-desktop.mrec.ad
www.nowtolove.com.au##.site-footer__container__section-copyright-notice.m-none.text-medium-dark
qv1.com.au##.wrapper.welcome-to-country
australianbartender.com.au##.thb-cookie-bar
www.examiner.com.au##div.lg\:max-w-\[752px\].md\:max-w-\[324px\].mb-6.mx-auto:nth-of-type(32)
www.examiner.com.au##.flex-col.flex.z-30.bottom-0.sticky
www.examiner.com.au##.bg-gray-600.md\:hidden.block
www.examiner.com.au##div.lg\:max-w-\[752px\].md\:max-w-\[324px\].mb-6.mx-auto:nth-of-type(7)
www.examiner.com.au##div.lg\:max-w-\[752px\].md\:max-w-\[324px\].mb-6.mx-auto:nth-of-type(40)
www.examiner.com.au##div.lg\:max-w-\[752px\].md\:max-w-\[324px\].mb-6.mx-auto:nth-of-type(53)
www.examiner.com.au##div.lg\:max-w-\[752px\].md\:max-w-\[324px\].mb-6.mx-auto:nth-of-type(64)
www.examiner.com.au##div.lg\:max-w-\[752px\].md\:max-w-\[324px\].mb-6.mx-auto:nth-of-type(67)
classicfireplaces.com.au###section-350-41
www.bcf.com.au##.pb-3.pt-3.m-auto.centered.container
www.woolworths.com.au##.footer-acknowledgment.footer-section
www.officeworks.com.au##.op-tile-wrapper
www.officeworks.com.au##.ow-social
bkklaboratory.business.site###cookieDialog
www.sbs.com.au##.css-tm3fgx.MuiList-root
www.huggies.com.au##p.copy-info:nth-of-type(1)
mcdonalds.com.au##.max-width-container.acknowledgement
www.foodanddrinkbusiness.com.au##.footer-ack
www.monash.vic.gov.au##div.col-lg-3.col-m-6.col-s-6.col-xs-12 > p
www.carsguide.com.au##.default-newsletter
www.bigw.com.au##.CategoryRecommendationCarousels_container__bwcfJ.LazyLoad_LazyLoad__CyrNB
auspost.com.au##.atsifooter
www.news.com.au##.share-tools
www.retail.org.au##.wp-widget-group__inner-blocks
agaaustralia.com.au##.et_pb_row_1_tb_footer.et_pb_row
www.cassandthecanvas.com##.rte.footer-block__details-content
www.cassandthecanvas.com##.inline-richtext.footer-block__heading
www.powerlink.com.au##.field--item.field--label-hidden.field--type-text-with-summary.field--name-body.field
www.optus.com.au##.styles__AcknowledgementCountryWrapper-static__sc-z72gbs-12
www.telstra.com.au##.telstra-footer-react-acknowledgements--section
au.nextdoor.com###id-10 > div
au.nextdoor.com##.blocks-2rwum1
www.drive.com.au##.blocks_drive-block__ad__wrapper__qwfLJ
gardenstatehotel.com.au##.c-footer-acknowledgement
www.vic.gov.au##.rpl-footer__custom-content
www.wa.gov.au##.footer__acknowledgement
cornerhotel.com##.subscribe-modal-wrapper--show.subscribe-modal-wrapper
www.homestolove.com.au##.teads.ad
www.homestolove.com.au##div.hide-on-desktop.mrec.ad:nth-of-type(3)
www.homestolove.com.au###page > .hide-on-desktop.mrec.ad
www.homestolove.com.au##.site-footer__container__section-copyright-notice.m-none.text-medium-dark
www.ergopouch.com.au##.content-text-footer > p
www.drive.com.au##.liveChat_drive-container__6_tlA
www.drive.com.au##.footer-wrapper.layout_drive-layout__footer-wrapper__JV_Z4 > div
taxcuts.gov.au##div.col-md-6:nth-of-type(1)
4zzz.org.au###acknowledgement
pigandwhistlehotel.com.au##.elementor-widget-text-editor.elementor-widget.elementor-element-6ddd4ca.elementor-element > .elementor-widget-container > p
www.aap.com.au##.u-mobile-margin-top-10.parents.col-12.col-sm-12.col-lg-7
www.sleepattheg.com.au##p:nth-of-type(2)
||d1gaqhckjiv8du.cloudfront.net/89e1a7cecc34bbbfd2dde8797f182d93.png$image
||d1gaqhckjiv8du.cloudfront.net/18107d875330ba6ff3ff3348d3546fad.jpg$image
||d1gaqhckjiv8du.cloudfront.net/7496809910bc7f082e3048d21c8a961d.jpg$image
www.sleepattheg.com.au##[src="https://d1gaqhckjiv8du.cloudfront.net/89e1a7cecc34bbbfd2dde8797f182d93.png"]
www.sleepattheg.com.au##[src="https://d1gaqhckjiv8du.cloudfront.net/18107d875330ba6ff3ff3348d3546fad.jpg"]
www.sleepattheg.com.au##[src="https://d1gaqhckjiv8du.cloudfront.net/7496809910bc7f082e3048d21c8a961d.jpg"]
www.decjuba.com.au##.tracking-sm.leading-md.text-xs.lg\:max-w-\[477px\].text-grey-inactive.w-full.md\:block.hidden.lg\:pt-0.pt-10
gormanshop.com.au###shopify-section-165992436463be42ac > .banner-section
www.georges.com.au###shopify-section-newsletter
www.digidirect.com.au##.pr-newsletter-popup__wrp
www.pbsfm.org.au##.small.acknowledgement
www.britax.com.au###main-footer > .wrapper-content.wrapper > div:nth-of-type(3)
www.babykingdom.com.au##.w-100.widget-block.widget
kidsafeqld.com.au##.et_pb_row_1_tb_footer.et_pb_row
www.betta.com.au###_lpSurveyPopover
www.servicesaustralia.gov.au##.md\:w-1\/2.md\:text-right.md\:align-right.md\:mb-0.mb-9
www.centrelink.gov.au##p.ng-star-inserted.font-weight-bold.text-center
my.gov.au##gui-footer-logo.hydrated
www.centrelink.gov.au##cos-toast
www.unisuper.com.au##.footer-section__atsi-recognition
www.mocka.com.au##.md-max\:mt-4.md\:ml-6.wysiwyg-footer-bottom > p
www.mocka.com.au##newsletter-form
koalaliving.com.au##.col-12.col-md-5 > p
kidsafeqld.com.au##.et_pb_bg_layout_light.et_pb_text_align_center.et_pb_text_7_tb_footer.et_pb_text.et_pb_module > .et_pb_text_inner > p
www.transparency.gov.au##.MainFooter_contents__LwJJb > p
www.bonds.com.au##.maxfocus-highlighted.rap-banner
www.ebay.com.au##.recs-module
www.mamamia.com.au##.post-content-parent-5
www.mamamia.com.au##.notHiddenDiv.subscribe-theme-1.subscribe-border-bottom
www.stonnington.vic.gov.au##div.col-m-4.col-s-6.col-xs-12:nth-of-type(3) > p:nth-of-type(3)
www.stonnington.vic.gov.au##div.col-m-4.col-s-6.col-xs-12:nth-of-type(3) > p:nth-of-type(2)
engage.vic.gov.au##.rpl-site-footer__acknowledgement.rpl-acknowledgement
www.carsales.com.au##._1lalutr3o6._1lalutroc._1lalutrhc._1lalutrfo.iompba3.iompba0 > .a6hzxt0.a6hzxtg._1tlv1fe8f._1lalutrg0.iompba0
www.carsales.com.au##.cookieConsentRoot
https://resource.csnstatic.com/retail/tracking-api/
https://dl92pxcsol84m.cloudfront.net/javascript/a360.consent.default.js
https://resource.csnstatic.com/retail/vendors/js-cookie/
$removeparam=xp-rcm-id,domain=carsales.com.au
$removeparam=source,domain=carsales.com.au
dsum.carsalesmedia.com
deliver.oztam.com.au
htlb.carsalesmedia.com
fls-fe.amazon.com.au
www.propertychat.com.au###nativeads_ad_below_messages
www.ebay.com.au##.clearfix.srp-merch__items
www.productreview.com.au##div.d-flex_RNf.flex-column__BR.align-items-center_amm:nth-of-type(5)
www.productreview.com.au##div.d-flex_RNf.flex-column__BR.align-items-center_amm:nth-of-type(10)
au.nextdoor.com###id-5 > .css-yh6px8
www.productreview.com.au##div.filters-ad_lv4.d-flex_RNf.justify-content-center_zro.flex-column__BR.align-items-center_amm:nth-of-type(1)
www.productreview.com.au##.neg-mx-1_em6
danmurphys.com.au$removeparam=isFromSearch
danmurphys.com.au$removeparam=test
danmurphys.com.au$removeparam=isPersonalised
danmurphys.com.au$removeparam=isSponsored
danmurphys.com.au$removeparam=pageName
asos.*^$removeparam=clr
www.harrisscarfe.com.au##.show.fade.modal-backdrop
www.ramint.gov.au##.div_splash
www.ebay.com.au###placement_html_101112 > .merch-module
www.ebay.com.au##.merch-module--grid.merch-module > .aspects-1.container_wrapper
www.news.com.au##.vms-sticky-player
www.news.com.au##.rp-muted-autoplay
www.news.com.au##.vms-playlist-loaded.vms-playing.mobileui-mini
www.news.com.au##.media-container
www.bigw.com.au##.ModalOverlay.ReactModal__Overlay--after-open.ReactModal__Overlay
www.babycenter.com.au###appDownloadModule
www.babycenter.com.au##.hide-for-small.regModule.module
www.nickscali.com.au##.header-global-promo
au.nextdoor.com##.css-1p4ao6t
https://d19rpgkrjeba2z.cloudfront.net/static/nextdoorv2/js/ads/ads.js
au.nextdoor.com##.css-15g5td4
books.google.com.au##.gb_Wd
news.com.au##.vms-playlist-loaded.vms-playing.vms-news.vms-ready.vms-player.mobileui-mini.vms-sticky.vms-queued.module.vms
www.digitalnationaus.com.au###gdpr-alert
||ogs.google.com.au/u/0/widget/callout/sid$subdocument
https://resourcesssl.newscdn.com.au/indies/campaigns
||translate.google.com^$domain=www.cyber.gov.au
$removeparam=tag,domain=amazon.com.au
thestar.com.au##.elementor-section-height-default.elementor-section-boxed.elementor-section-content-middle.elementor-element-3dec5e0f.elementor-
chronospride.com.au###omnisend-dynamic-container
www.babycenter.com.au##.appPromoContent
www.babycenter.com.au###leaderboardContainer
www.babycenter.com.au###rightRailContainer
www.babycenter.com.au##.mui-style-ekeie0.MuiDialog-scrollPaper
www.babycenter.com.au##.mui-style-919eu4.MuiModal-backdrop.MuiBackdrop-root
https://assets.babycenter.com/ims/2024/02/img_signup_rejuv.svg
babycenter.com.au##html:style(overflow: auto !important;)
www.metalflex.com.au##rg-footer-acknowledgement
radiotoday.com.au##.footer-subscribe
www.vline.com.au##.legend.hidden-xs
www.reece.com.au##rg-footer-acknowledgement
www.plumheatcool.com.au##.elementor-section-items-middle.elementor-section-height-default.elementor-section-boxed.elementor-section-content-middle.elementor-section-height-min-height.elementor-element-6f354ed.elementor-element.elementor-top-section.elementor-section
www.finance.gov.au##.site-footer-top
pay.ebay.com.au###placement101585
www.amartfurniture.com.au##.email-subscribe.container
tinyhearts.com##div.space-y-5.lg\:col-span-4:nth-of-type(1) > .rte > p:nth-of-type(4)
www.iga.com.au##.standard_section.vc_row.vc_row-fluid.wpb_row
fightmnd.org.au##.fs-12.text-center.col-xl-8.col-lg-9.col-12
www.healthdirect.gov.au##.css-12gllw4.chakra-text
cultureconnect.com.au###sow-editor-2 > .so-widget-sow-editor-base.so-widget-sow-editor > .textwidget.siteorigin-widget-tinymce > p:nth-of-type(1)
experience.welcometocountry.com##.footer__text-content > p
www.bdm.vic.gov.au###block-atsi-acknowledgement > .field--item.field--label-hidden.field--type-text-long.field--name-field-body.field > p
www.babyhood.com.au###page_wrapper > .columns.large-centered.large-12
www.bluntmag.com.au##.bg-darkgray.pb-3.a-d-article.a-d > .container > .row > div.text-center.col-12
www.bluntmag.com.au##.right.col-lg-5.col-12
www.newidea.com.au##.site-footer__container__section-copyright-notice.m-none.text-medium-dark
museum.wa.gov.au##.globalwidth.acknowledgement-country
https://www.awm.gov.au/themes/awm/images/disclaimerFooter.jpg
www.awm.gov.au##.cultural-modal-content
www.awm.gov.au##.modaal-inner-wrapper
www.awm.gov.au##.modaal-outer-wrapper
www.awm.gov.au##.modaal-inline.modaal-wrapper
www.awm.gov.au##.modaal-overlay
www.novafm.com.au##.index_nova_disclaimer__lVWAY > p
www.choice.com.au##.footer__acknowledge-copy
www.choice.com.au##.footer__acknowledge
www.mitre10.com.au##.ui-asknowlage > div > p
www.choice.com.au##.is-bottom-0.sticky-banner--timed.sticky-banner
online.aami.com.au##.sg-Type--muted.sg-u-marginTop--x2.sg-Type--size14 > span > p:nth-of-type(2)
raisingchildren.net.au##.footer-container--acknowledgement.footer-container
mainfm.net###welcome-to-country
catalogue.nla.gov.au##.mx-auto.col-md-8.text-center.acknowledgement-of-country
musictrust.com.au###hustle-popup-id-1
www.musicvictoria.com.au###section-110-10 > .ct-section-inner-wrap > .ct-text-block
www.hairhouse.com.au##.Kyu-r
www.mysalon.com.au##.halo-background
www.megamusiconline.com.au##.popup.global
www.pregnancybirthbaby.org.au##.hda-foot_acknowledge > p:nth-of-type(1)
onefinebaby.com.au##.mb-0.border-0.footer-copyright
mjolner.com.au##em
www.australiantraveller.com##.acknowledgement-text
www.australiantraveller.com##.col-lg-3.col-xs-12.col-md-3
www.abc.net.au##div.CXbPx > p
www.gumtree.com.au##.search-results-page__dfp.fuse-ads__min-height-dweb
au.api.iheart.com/api/v3/privacy/
10play.com.au##.acknowledgement-text.global-footer__boilerplate-text
||facebook.net^$domain=10play.com.au
www.ato.gov.au##.AtoFooter_copyright__acknowledgement__HdkfK
||www.ato.gov.au/api/public/content/9ffc9caf15b849bf85c60cca1d40547d$image
www.finder.com.au##.footer__acknowledgement
www.beaconlighting.com.au##.subscribe-block-wrapper
www.spiritoftasmania.com.au##.gdpr-notice-message
www.healthdirect.gov.au##.hda-foot_acknowledge > p:nth-of-type(1)
www.epworth.org.au##.p-content-container.text-sm > p:nth-of-type(2)
www.epworth.org.au##.flags-container.col-12
themusic.com.au##.leading-5.font-bold.text-center.bg-white.cursor-pointer.w-full.z-10.left-0.bottom-0.fixed.lg\:block.hidden
themusic.com.au##div.max-w-full.items-center.justify-center.mb-5.flex:nth-of-type(11)
themusic.com.au##div.max-w-full.items-center.justify-center.mb-5.flex:nth-of-type(19)
themusic.com.au##div.max-w-full.items-center.justify-center.mb-5.flex:nth-of-type(27)
themusic.com.au##div.max-w-full.items-center.justify-center.mb-5.flex:nth-of-type(2)
themusic.com.au##div.max-w-full.items-center.justify-center.mb-5.flex:nth-of-type(3)
themusic.com.au##div.max-w-full.items-center.justify-center.mb-5.flex:nth-of-type(4)
https://www.homeloanexperts.com.au/wp-content/themes/homeloanexperts/js/cookie-handler.js
https://b68ff6dad61d.332166bb.ap-southeast-2.token.awswaf.com/b68ff6dad61d/d680c7f8d13b/9195bfee25b1/challenge.js
https://b68ff6dad61d.332166bb.ap-southeast-2.token.awswaf.com/b68ff6dad61d/d680c7f8d13b/9195bfee25b1/telemetry
https://www.spotlightstores.com/wro/js/
www.afl.com.au##.footer-menu__links--acknowledgement-of-country
visit.museum.wa.gov.au###acknowledgementofcountryfooter
www.energy.vic.gov.au##.ripple-footer__acknowledgement
mhnsw.au##.styles_firstNations__ZTfUQ
www.thenewdaily.com.au##.slide-in-from-bottom.animate-in.sm\:pb-7.duration-500.text-white.pt-5.pb-5.px-5.bg-grey-900\/95.w-full.bottom-0.fixed
||www.domain.com.au/my-properties/_next/image?url=https%3A%2F%2Fs.domainstatic.com.au%2Ffe-server-user-dashboard%2Fmaster-711%2F_next%2Fstatic%2Fmedia%2Fsplash-screen.08654e47.png&w=*&q=75$image
babiesrus.com.au##.relative.color-scheme--3.color-scheme.section--full-width.section--padded.section.newsletter
www.domain.com.au##.css-czifjo
www.domain.com.au##div.css-1wl00i5:nth-of-type(2)
www.domain.com.au##.css-cei6rd
https://thewest.com.au/static/js/Taboola-web_*.js
https://www.perthnow.com.au/static/js/Taboola-web_*.js
http://www.bom.gov.au/scripts/marketing-inhouse-v2.js
https://www.cheesecake.com.au/static/version1721221042/frontend/Tcs/cheesecake/en_US/Magento_Cookie/
https://www.cheesecake.com.au/static/version1721221042/frontend/Tcs/cheesecake/en_US/jquery/jquery.cookie.js
https://www.bunnings.com.au/_next/static/chunks/NewsletterSubscriptionTile
https://www.bunnings.com.au/scripts/dynatrace.js
classbento.com.au##div.most-of-width.row:nth-of-type(2) > .col-xs-12 > p
getblys.com.au##.textwidget > p:nth-of-type(2)
tellmebaby.com.au###block-3 > p
cudo.com.au##div.ReactModalPortal:nth-of-type(63)
https://www.taste.com.au/remote/identity/rampart/latest/rampart.js
https://tags.news.com.au/prod/adblock/adblock.js
https://www.taste.com.au/afx_prid/
www.apsc.gov.au##.paragraph--view-mode--default.paragraph--type--section.paragraph.modifiers-display-default.modifiers-bundle-section.modifiers-type-paragraph.modifiers-id-paragraph-1164.modifiers.no-background-padding.section-layout--12.section-layout.color--dark
mumbrella.com.au##.nivo-lightbox-open
www.themandarin.com.au##.footer-area.col-xs-12.col-md-4
weatherzone.com.au/wz-web/common/static/scripts/hotjar.js
weatherzone.com.au/wz-web/prod/static/scripts/gtmHead.js
weatherzone.com.au/wz-web/common/static/scripts/plugin-configs.js
au.loopearplugs.com/cdn/shopifycloud/media-analytics/v0.1/analytics.js
babycenter.com.au##section:nth-of-type(3)
www.mcec.com.au##.translate-y-0.opacity-1.md\:px-10.ease-in-out.duration-1000.transition-all.px-6.bg-opacity-\[0\.92\].bg-black.justify-center.items-center.w-screen.h-screen.flex.z-50.left-0.top-0.fixed.text-l
www.mcec.com.au##.lg\:max-w-xl
www.mcec.com.au##.md\:text-center.md\:px-6.px-4.py-12.w-full.lg\:py-70.md\:py-30.text-accent-pink.bg-accent-pink.text-banner
www.ngv.vic.gov.au##.acknowledgement
www.melbourne.vic.gov.au##.layout-container > .field__items.field--label-hidden.field--type-entity-reference-revisions.field--name-field-content.field > .field__item
moondog.com.au###block-yui_3_17_2_1_1652856603465_9927 > .sqs-block-content > .sqs-html-content > p.sqsrte-small:nth-of-type(1)
moondog.com.au##section.black.vertical-alignment--middle.horizontal-alignment--center.content-width--wide.section-height--small.background-width--full-bleed.layout-engine-section.full-bleed-section.page-section
https://creative.vic.gov.au/__data/assets/git_bridge/0011/2069903/dist/AcknowledgementPopup-69a7d638.png
www.bridgeclimb.com##.u-tac-xl.u-tal-lg.u-tac.o-richtext.u-mbb6-md.u-mbb10.container
wheelercentre.com##html:style(overflow: auto !important;)
www.wheelercentre.com##.show.modal.modal-acknowledgement
www.wheelercentre.com##.show.modal-backdrop.fade
www.wheelercentre.com##.custom-text.wysiwyg-content > p
mrc.racing.com###ca0af9e0-5fe2-4a7a-be15-50597555ffa1 > .ck-content
mrc.racing.com###\33 bd43da7-9aa3-4b43-8f23-87f3b8d441e7 > .ck-content
www.vrc.com.au##.footer__heritage > p
fedsquare.com##.fAwWwg.Acknowledgement__Container-sc-1ukmy2k-4
fedsquare.com##*.Footer__Description-sc-6wmpea-2
fedsquare.com##.iDCXaM.Footer__Acknowledgement-sc-6wmpea-16 > .dOvcmo.Footer__Subheading-sc-6wmpea-1
fedsquare.com##.Newsletter__Wrapper-sc-j6khvx-4
www.artscentremelbourne.com.au##small > small
www.artscentremelbourne.com.au##.promo-panel-1up.bg-mid-coral.promo-panel
www.schoolbuildings.vic.gov.au##.rpl-footer__custom-content
mnc.org.au##.et_pb_bg_layout_light.et_pb_text_align_center.et_pb_text_2_tb_footer.et_pb_text.et_pb_module > .et_pb_text_inner
vic.netball.com.au##.footer__ack-col
museumsvictoria.com.au##.Acknowledgement
marrinergroup.com.au##.acknowledgement
civictheatrenewcastle.com.au##.acknowledgement-container
www.lindy.com.au###newsletter-validate-detail
melbournefringe.com.au##.footer__content > p
www.lifeblood.com.au###block-copyrightblock > .content
myatiger.com.au##.c-footer-acknowledgement--full-width__body
www.energy.gov.au##p:nth-of-type(2)
www.energy.gov.au##.align-items-center.d-flex.pr-2.col-auto
www.energy.gov.au##.col > h4
deedsbrewing.com.au###shopify-section-popup
trove.nla.gov.au##.pr-5.col-md-4
www.nla.gov.au##.modaal-outer-wrapper
www.nla.gov.au##.modaal-inline
www.nla.gov.au##.modaal-overlay
https://swvic.au/images/marble.jpg
www.3mbs.org.au##.show.modal
www.3mbs.org.au##.show
www.nationaltrust.org.au##.footer-acknowledgement
reiwa.com.au##.aoc
australiayourway.com###block-109 > p
www.awm.gov.au##.disclaimerfooter__description
www.navy.gov.au##.text-small.text-center.weight-semi.font-family1
www.navy.gov.au##.justify-content-center.align-items-center.d-flex.dod-footer-acknowledge.col-sm-6.col-md-5
www.unitedenergy.com.au##.Footer-module--acknowledgementFooterContent--99021
www.energyaustralia.com.au##.paragraph--type--reusable-content-component.paragraph--view-mode--default.paragraph--37721.paragraph
www.wordofmouth.com.au##.ad-panel-dimensions
providers.dffh.vic.gov.au###block-footerbottomleft > .field-label-hidden.field-type-text-with-summary.field-name-body.field-block-content--body.field.body.field-wrapper > .field-items
www.consumer.vic.gov.au###block-atsi-acknowledgement
tenantsvic.org.au##.site-footer-acknowledgement
tenantsvic.org.au###cookies__bar
tenantsvic.org.au##.site-footer-subscribe
www.consumer.vic.gov.au###block-atsi-acknowledgement
www.legalaid.vic.gov.au##.rpl-footer__custom-content > .rpl-container
www.businessnews.com.au###block-bn2020-dfprunofsiteleaderboard > .leaderboard
https://www.ancestry.com.au/api/privacy/consent-info
mhnsw.au###firstNationsNotice
bensw.com.au##.block--nsw-destination-footerdescription.block--basic.block > .basic__body.rich-text--content > p
www.destinationnsw.com.au##.w-full.medium\:mt-0.medium\:text-fluid-h4.mt-16.font-sans.text-16 > div > p
www.vividsydney.com##.container-fluid.c02417
www.tourism.wa.gov.au##corp-promo-panel.ng-star-inserted:nth-of-type(2)
www.carsales.com.au##.is-qualtricsEmbed.csn-home-section
||www.diabetesaustralia.com.au/wp-content/uploads/2024_da_website_aoc_artwork_500x90.png$image
tellmebaby.com.au##div.no-gutters.row:nth-of-type(9)
www.dementia.org.au##.print\:\!hidden.md\:mb-56.md\:order-none.md\:grid-col-span-9.xs\:grid-col-span-6.items-start.flex-col.flex.mt-24.order-4.grid-col-span-4
www.ergopouch.com.au##.footer-column1.footer-column
www.sunnylife.com.au##.tout--1659045191132967b6.tout > .container-fluid-max
recipetineats.com##.adthrive-recipe-1.adthrive-recipe.adthrive-ad
recipetineats.com##.adthrive-content-4.adthrive-content.adthrive-ad
recipetineats.com##.adthrive-content-3.adthrive-content.adthrive-ad
recipetineats.com##.adthrive-content-2.adthrive-content.adthrive-ad
recipetineats.com##.adthrive-content-1.adthrive-content.adthrive-ad
recipetineats.com##.adthrive-content-5.adthrive-content.adthrive-ad
recipetineats.com##.subscribe
unimelb.edu.au##.page-footer-alt__reconciliation
rmit.edu.au##.full-width.country-acknowlegement__wrapper
www.swinburne.edu.au##.parsys.brand-footer__acknowlodgement
www.swinburne.edu.au###contentblock_632287407_KJWKBSN8F > .container > .aem-Grid--default--12.aem-Grid--12.aem-Grid
https://www.swinburne.edu.au/content/dam/media/brand/indigenous-acknowledgement.svg
rtrfm.com.au##.border-y-midnightMocha.border-y-2.py-4
orima.com.au##.site-info > p
www.police.vic.gov.au##.rpl-footer__custom-content
www.bom.gov.au###copyright
www.nsw.gov.au##.nsw-container > p
www.sbs.com.au###newsletter-form
www.sbs.com.au##.css-18j8i7y > div > section
www.themandarin.com.au##.has-text-color.has-grey-color
www.themandarin.com.au##.wp-block-heading.has-oxygen-font-family
gio.com.au/data-insights-api/
suncorpbank.com.au/data-insights-api/
www.pathologytestsexplained.org.au##.container1
apia.com.au/data-insights-api/
shannons.com.au/data-insights-api/
aami.com.au/data-insights-api/
www.domain.com.au##.css-1ya71fe
www.health.vic.gov.au##.rpl-site-footer__acknowledgement.rpl-acknowledgement
supportingaustralians.gov.au##.col-md-9 > .mb-0
ozhomeandtravel.com##.Footer__Block--newsletter.Footer__Block
www.booktopia.com.au##.mui-style-kxu0dz.MuiGrid-grid-xs-true.MuiGrid-item.MuiGrid-root
www.woodards.com.au##.no-spacing.subscription.element
slwa.wa.gov.au###block-acknowledgementofcountryfrontpage
www.ebay.com.au##.drawer-dialog--mask-fade-slow.gadget-bottom-container.drawer-dialog
ebay.com.au##body:style(overflow:scroll!important)
www.recipetineats.com##.footer-subscribe--wrapper
www.health.nsw.gov.au###acknowledgement
https://www.beyondthewillowtree.com/cdn/shopifycloud/media-analytics/
www.beyondthewillowtree.com##div.columns.medium-3.small-12:nth-of-type(3)
https://www.anguscoote.com.au/analytics-js/
https://www.cairnspost.com.au/remote/check_cookie.html
www.stgeorge.com.au##.column-container
www.cairnspost.com.au##.ad-block
www.cairnspost.com.au##.sticky.header_ads-container
purebaby.com.au##.CookieConsent
www.jelliscraig.com.au##.text-sm.py-5
www.onthehouse.com.au##.DmpConsent__dmpConsentIsShown--R\+GC\+
||s.domainstatic.com.au/content/fe-static/@domain-group/fe-co-allhomes-footer/static/country-acknowledgement_*.svg$image
www.allhomes.com.au##.css-fb48br
www.allhomes.com.au##.css-dysdhy
www.magnt.net.au###popups-wrapper
www.museum.qld.gov.au###cc--main
www.museum.qld.gov.au##.acknowledgement-banner
www.museum.qld.gov.au##.site-footer__acknowledgement
australian.museum##.footer__acknowledgement
media.australian.museum/static/js/acknowledgement_popup
media.australian.museum/static/images/acknowledgement-country-shield
mhnsw.au##.styles_welcomeToCountry__7v0ij
mhnsw.au###firstNationsBar
www.artgallery.nsw.gov.au###aoc
www.artgallery.nsw.gov.au##.siteFooter-acknowledgmentOfCountry
www.sydneyoperahouse.com##.text-large
www.sydneyoperahouse.com###block-firstnations
www.mca.com.au/files/documents/ack_desktop.mp4
mca.com.au/javascript-log-error/
melbourneskydeck.com.au##.full_width_text.module
museum.rba.gov.au###footer > p
mgnsw.org.au##.footer-text > p:nth-of-type(2)
https://museumsvictoria.com.au/css/venues/acknowledgement-modal.css
https://museumsvictoria.com.au/js/mv-country-acknowledgement.js
https://museumsvictoria.com.au/js/survey.js
cathedral.org.au###block-7
www.parliament.vic.gov.au##.p-0.text-white.bg-black.relative
www.legislation.vic.gov.au##.rpl-footer__custom-content
creative.vic.gov.au###react-acknowledgement
creative.vic.gov.au##.bg-black-1.flex.lg\:w-8\/12.w-full
www.acmi.net.au##.opacity-90
www.acmi.net.au##.sp-mt-base.text-gray.meta--sm > p
www.health.gov.au##.acknowledgement-of-country
www.adorebeauty.com.au##.text-neutral-40.leading-\[22px\].text-14.text-center.px-\[10px\].py-\[20px\].max-w-\[1056px\].mx-auto.my-0 > p
www.sephora.com.au##.modal
prov.vic.gov.au###spb-block-cultural-sensitivity-popup
prov.vic.gov.au/sites/default/files/hotjar/
visitgreatoceanroad.org.au###acknowledgement
victoriancollections.net.au##.sensitivity-warning
victoriancollections.net.au##.acknowlegement