Getting a bunch of ads after last update

I just discovered pihole about 3 months ago, and it's been great. I installed the latest update and i'm getting ads everywhere now. Youtube is the worst, but they are popping up everywhere. Is anyone else having this issue?

Run pihole -d and we'll take a look.

IP Addresses of this Pi:
10.10.10.9
127.0.0.1

Gateway check:
ok

#######################################
########## Versions Section ###########
#######################################
Pi-hole Version: V2.9.1
WebUI Version: v1.4

#######################################
######## Distribution Section #########
#######################################
Distribution Version: PRETTY_NAME="Raspbian GNU/Linux 8 (jessie)"
NAME="Raspbian GNU/Linux"
VERSION_ID="8"
VERSION="8 (jessie)"
ID=raspbian
ID_LIKE=debian
HOME_URL="http://www.raspbian.org/"
SUPPORT_URL="http://www.raspbian.org/RaspbianForums"
BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs"
#######################################
######## Whitelist Comparison #########
#######################################

#######################################
######## Blacklist Comparison #########
#######################################
10.10.10.9 c.algovids.com

#######################################
############ NSLookup Test ############
#######################################
NSLOOKUP of doubleclick.com from PiHole:
Server:		127.0.0.1
Address:	127.0.0.1#53

Name:	doubleclick.com
Address: 10.10.10.9

NSLOOKUP of doubleclick.com from 8.8.8.8:
Server:		8.8.8.8
Address:	8.8.8.8#53

Non-authoritative answer:
Name:	doubleclick.com
Address: 216.58.192.174

#######################################
########### Processes Check ###########
#######################################

lighttpd processes status:
● lighttpd.service - Lighttpd Daemon
   Loaded: loaded (/lib/systemd/system/lighttpd.service; enabled)
   Active: active (running) since Tue 2016-09-13 11:13:04 UTC; 13h ago
  Process: 3763 ExecStartPre=/usr/sbin/lighttpd -t -f /etc/lighttpd/lighttpd.conf (code=exited, status=0/SUCCESS)
 Main PID: 3772 (lighttpd)
   CGroup: /system.slice/lighttpd.service
           ├─3772 /usr/sbin/lighttpd -D -f /etc/lighttpd/lighttpd.conf
           ├─3784 /usr/bin/php-cgi
           ├─3785 /usr/bin/php-cgi
           ├─3786 /usr/bin/php-cgi
           ├─3787 /usr/bin/php-cgi
           └─3788 /usr/bin/php-cgi

Sep 13 11:13:04 pi3 lighttpd[3763]: Syntax OK
Sep 13 11:13:04 pi3 systemd[1]: Started Lighttpd Daemon.

dnsmasq processes status:
● dnsmasq.service - dnsmasq - A lightweight DHCP and caching DNS server
   Loaded: loaded (/lib/systemd/system/dnsmasq.service; enabled)
  Drop-In: /run/systemd/generator/dnsmasq.service.d
           └─50-dnsmasq-$named.conf, 50-insserv.conf-$named.conf
   Active: active (running) since Tue 2016-09-13 11:13:03 UTC; 13h ago
 Main PID: 3644 (dnsmasq)
   CGroup: /system.slice/dnsmasq.service
           └─3644 /usr/sbin/dnsmasq -x /var/run/dnsmasq/dnsmasq.pid -u dnsmasq -r /var/run/dnsmasq/resolv.conf -7 /etc/dnsmasq.d,.dpkg-dist,.dpkg-old,.dpkg-new --local-service --trust-anchor=.,19036,8,2,49AAC11D7B6F6446702E54A1607371607A1A41855200FD2CE1CDDE32F24E8FB5

Sep 13 11:13:03 pi3 dnsmasq[3632]: dnsmasq: syntax check OK.
Sep 13 11:13:03 pi3 systemd[1]: Started dnsmasq - A lightweight DHCP and caching DNS server.
#######################################
############ lighttpd.conf ############
#######################################
server.modules = (
"mod_access",
"mod_accesslog",
"mod_expire",
"mod_compress",
"mod_redirect",
"mod_setenv",
"mod_rewrite"
)
server.document-root        = "/var/www/html"
server.error-handler-404	= "pihole/index.html"
server.upload-dirs          = ( "/var/cache/lighttpd/uploads" )
server.errorlog             = "/var/log/lighttpd/error.log"
server.pid-file             = "/var/run/lighttpd.pid"
server.username             = "www-data"
server.groupname            = "www-data"
server.port                 = 80
accesslog.filename			= "/var/log/lighttpd/access.log"
accesslog.format			= "%{%s}t|%V|%r|%s|%b"
index-file.names            = ( "index.php", "index.html", "index.lighttpd.html" )
url.access-deny             = ( "~", ".inc" )
static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
compress.cache-dir          = "/var/cache/lighttpd/compress/"
compress.filetype           = ( "application/javascript", "text/css", "text/html", "text/plain" )
include_shell "/usr/share/lighttpd/use-ipv6.pl " + server.port
include_shell "/usr/share/lighttpd/create-mime.assign.pl"
include_shell "/usr/share/lighttpd/include-conf-enabled.pl"
$HTTP["url"] =~ "^/admin/" {
setenv.add-response-header = (
"X-Pi-hole" => "The Pi-hole Web interface is working!",
"X-Frame-Options" => "DENY"
)
}
$HTTP["url"] =~ "^(?!/admin)/.*" {
setenv.add-response-header = ( "X-Pi-hole" => "A black hole for Internet advertisements." )
url.rewrite = ("(.*).js" => "pihole/index.js")
}

#######################################
######### lighttpd error.log ##########
#######################################
2016-09-12 06:25:03: (server.c.1242) logfiles cycled UID = 0 PID = 16502 
2016-09-13 11:12:40: (server.c.1558) server stopped by UID = 0 PID = 1 
2016-09-13 11:13:04: (log.c.164) server started 

#######################################
############### Dnsmasq ###############
#######################################
conf-dir=/etc/dnsmasq.d

#######################################
########### 01-pihole.conf ############
#######################################
addn-hosts=/etc/pihole/gravity.list
domain-needed
bogus-priv
no-resolv
server=8.8.8.8
server=8.8.4.4
interface=eth0
listen-address=127.0.0.1
cache-size=10000
log-queries
log-facility=/var/log/pihole.log
local-ttl=300
log-async

#######################################
############ gravity.list #############
#######################################
97239 /etc/pihole/gravity.list

Hostname of this pihole is: 
pi3
#######################################
################ Hosts ################
#######################################
127.0.0.1	localhost
::1		localhost ip6-localhost ip6-loopback
ff02::1		ip6-allnodes
ff02::2		ip6-allrouters

127.0.1.1	pi3

10.10.10.1 router

#######################################
############## Whitelist ##############
#######################################
raw.githubusercontent.com
adblock.gjtech.net
mirror1.malwaredomains.com
sysctl.org
zeustracker.abuse.ch
s3.amazonaws.com
hosts-file.net
ransomwaretracker.abuse.ch

#######################################
############## Blacklist ##############
#######################################
c.algovids.com

#######################################
############ adlists.list #############
#######################################
No adlists.list file found... using adlists.default!
#######################################
############# pihole.log ##############
#######################################
Sep 14 00:51:51 dnsmasq[3644]: reply instagram-604834045.us-east-1.elb.amazonaws.com is 54.152.56.115
Sep 14 00:51:55 dnsmasq[3644]: query[A] lpd.ring.com from 10.10.10.126
Sep 14 00:51:55 dnsmasq[3644]: cached lpd.ring.com is 54.210.91.249
Sep 14 00:51:55 dnsmasq[3644]: cached lpd.ring.com is 52.203.137.84
Sep 14 00:51:55 dnsmasq[3644]: cached lpd.ring.com is 52.205.56.28
Sep 14 00:51:55 dnsmasq[3644]: cached lpd.ring.com is 52.206.48.143
Sep 14 00:51:55 dnsmasq[3644]: query[AAAA] lpd.ring.com from 10.10.10.126
Sep 14 00:51:55 dnsmasq[3644]: cached lpd.ring.com is NODATA-IPv6
Sep 14 00:51:55 dnsmasq[3644]: query[A] doubleclick.com from 127.0.0.1
Sep 14 00:51:55 dnsmasq[3644]: /etc/pihole/gravity.list doubleclick.com is 10.10.10.9
Sep 14 00:51:58 dnsmasq[3644]: query[A] play.google.com from 10.10.10.147
Sep 14 00:51:58 dnsmasq[3644]: forwarded play.google.com to 8.8.4.4
Sep 14 00:51:58 dnsmasq[3644]: forwarded play.google.com to 8.8.8.8
Sep 14 00:51:58 dnsmasq[3644]: reply play.google.com is 
Sep 14 00:51:58 dnsmasq[3644]: reply play.l.google.com is 216.58.192.174
Sep 14 00:51:59 dnsmasq[3644]: query[A] analytics.localytics.com from 10.10.10.1
Sep 14 00:51:59 dnsmasq[3644]: /etc/pihole/gravity.list analytics.localytics.com is 10.10.10.9
Sep 14 00:51:59 dnsmasq[3644]: query[A] graph.facebook.com from 10.10.10.1
Sep 14 00:51:59 dnsmasq[3644]: cached graph.facebook.com is 
Sep 14 00:51:59 dnsmasq[3644]: cached api.facebook.com is 
Sep 14 00:51:59 dnsmasq[3644]: forwarded graph.facebook.com to 8.8.4.4
Sep 14 00:51:59 dnsmasq[3644]: reply graph.facebook.com is 
Sep 14 00:51:59 dnsmasq[3644]: reply api.facebook.com is 
Sep 14 00:51:59 dnsmasq[3644]: reply star.c10r.facebook.com is 31.13.74.1
Sep 14 00:52:00 dnsmasq[3644]: query[A] messages.vma.vzw.com from 10.10.10.1
Sep 14 00:52:00 dnsmasq[3644]: forwarded messages.vma.vzw.com to 8.8.4.4
Sep 14 00:52:00 dnsmasq[3644]: reply messages.vma.vzw.com is 69.78.235.200
Sep 14 00:52:00 dnsmasq[3644]: query[A] yt3.ggpht.com from 10.10.10.147
Sep 14 00:52:00 dnsmasq[3644]: cached yt3.ggpht.com is 
Sep 14 00:52:00 dnsmasq[3644]: cached photos-ugc.l.googleusercontent.com is 172.217.1.97
Sep 14 00:52:00 dnsmasq[3644]: query[A] pubads.g.doubleclick.net from 10.10.10.147
Sep 14 00:52:00 dnsmasq[3644]: /etc/pihole/gravity.list pubads.g.doubleclick.net is 10.10.10.9
Sep 14 00:52:02 dnsmasq[3644]: query[A] m.facebook.com from 10.10.10.103
Sep 14 00:52:02 dnsmasq[3644]: forwarded m.facebook.com to 8.8.4.4
Sep 14 00:52:02 dnsmasq[3644]: reply m.facebook.com is 
Sep 14 00:52:02 dnsmasq[3644]: reply star-mini.c10r.facebook.com is 31.13.74.36
Sep 14 00:52:02 dnsmasq[3644]: query[A] scontent-ord1-1.xx.fbcdn.net from 10.10.10.103
Sep 14 00:52:02 dnsmasq[3644]: forwarded scontent-ord1-1.xx.fbcdn.net to 8.8.4.4
Sep 14 00:52:02 dnsmasq[3644]: query[A] www.facebook.com from 10.10.10.103
Sep 14 00:52:02 dnsmasq[3644]: forwarded www.facebook.com to 8.8.4.4
Sep 14 00:52:02 dnsmasq[3644]: query[A] scontent.xx.fbcdn.net from 10.10.10.103
Sep 14 00:52:02 dnsmasq[3644]: forwarded scontent.xx.fbcdn.net to 8.8.4.4
Sep 14 00:52:02 dnsmasq[3644]: reply scontent-ord1-1.xx.fbcdn.net is 31.13.74.7
Sep 14 00:52:02 dnsmasq[3644]: reply www.facebook.com is 
Sep 14 00:52:02 dnsmasq[3644]: reply star-mini.c10r.facebook.com is 31.13.74.36
Sep 14 00:52:02 dnsmasq[3644]: reply scontent.xx.fbcdn.net is 31.13.74.7
Sep 14 00:52:02 dnsmasq[3644]: query[A] video-ord1-1.xx.fbcdn.net from 10.10.10.1
Sep 14 00:52:02 dnsmasq[3644]: forwarded video-ord1-1.xx.fbcdn.net to 8.8.4.4
Sep 14 00:52:02 dnsmasq[3644]: reply video-ord1-1.xx.fbcdn.net is 31.13.74.14
Sep 14 00:52:05 dnsmasq[3644]: query[A] lpd.ring.com from 10.10.10.126
Sep 14 00:52:05 dnsmasq[3644]: cached lpd.ring.com is 52.206.48.143
Sep 14 00:52:05 dnsmasq[3644]: cached lpd.ring.com is 54.210.91.249
Sep 14 00:52:05 dnsmasq[3644]: cached lpd.ring.com is 52.203.137.84
Sep 14 00:52:05 dnsmasq[3644]: cached lpd.ring.com is 52.205.56.28
Sep 14 00:52:05 dnsmasq[3644]: query[AAAA] lpd.ring.com from 10.10.10.126
Sep 14 00:52:05 dnsmasq[3644]: cached lpd.ring.com is NODATA-IPv6
Sep 14 00:52:12 dnsmasq[3644]: query[A] accounts.google.com from 10.10.10.147
Sep 14 00:52:12 dnsmasq[3644]: forwarded accounts.google.com to 8.8.4.4
Sep 14 00:52:12 dnsmasq[3644]: reply accounts.google.com is 216.58.192.173
Sep 14 00:52:12 dnsmasq[3644]: query[PTR] 147.10.10.10.in-addr.arpa from 10.10.10.147
Sep 14 00:52:12 dnsmasq[3644]: config 10.10.10.147 is NXDOMAIN
Sep 14 00:52:15 dnsmasq[3644]: query[A] lpd.ring.com from 10.10.10.126
Sep 14 00:52:15 dnsmasq[3644]: cached lpd.ring.com is 52.205.56.28
Sep 14 00:52:15 dnsmasq[3644]: cached lpd.ring.com is 52.206.48.143
Sep 14 00:52:15 dnsmasq[3644]: cached lpd.ring.com is 54.210.91.249
Sep 14 00:52:15 dnsmasq[3644]: cached lpd.ring.com is 52.203.137.84
Sep 14 00:52:15 dnsmasq[3644]: query[AAAA] lpd.ring.com from 10.10.10.126
Sep 14 00:52:15 dnsmasq[3644]: cached lpd.ring.com is NODATA-IPv6
Sep 14 00:52:20 dnsmasq[3644]: query[A] r8---sn-bvvbax-hn2d.googlevideo.com from 10.10.10.147
Sep 14 00:52:20 dnsmasq[3644]: forwarded r8---sn-bvvbax-hn2d.googlevideo.com to 8.8.4.4
Sep 14 00:52:20 dnsmasq[3644]: forwarded r8---sn-bvvbax-hn2d.googlevideo.com to 8.8.8.8
Sep 14 00:52:20 dnsmasq[3644]: reply r8---sn-bvvbax-hn2d.googlevideo.com is 
Sep 14 00:52:20 dnsmasq[3644]: reply r8.sn-bvvbax-hn2d.googlevideo.com is 208.117.253.91
Sep 14 00:52:20 dnsmasq[3644]: query[A] s.youtube.com from 10.10.10.147
Sep 14 00:52:20 dnsmasq[3644]: /etc/pihole/gravity.list s.youtube.com is 10.10.10.9
Sep 14 00:52:20 dnsmasq[3644]: query[A] www.youtube-nocookie.com from 10.10.10.147
Sep 14 00:52:20 dnsmasq[3644]: /etc/pihole/gravity.list www.youtube-nocookie.com is 10.10.10.9
Sep 14 00:52:21 dnsmasq[3644]: query[A] pagead2.googlesyndication.com from 10.10.10.147
Sep 14 00:52:21 dnsmasq[3644]: /etc/pihole/gravity.list pagead2.googlesyndication.com is 10.10.10.9
Sep 14 00:52:21 dnsmasq[3644]: query[A] www.googletagservices.com from 10.10.10.147
Sep 14 00:52:21 dnsmasq[3644]: /etc/pihole/gravity.list www.googletagservices.com is 10.10.10.9
Sep 14 00:52:21 dnsmasq[3644]: query[A] www.googleapis.com from 10.10.10.147
Sep 14 00:52:21 dnsmasq[3644]: cached www.googleapis.com is 
Sep 14 00:52:21 dnsmasq[3644]: cached googleapis.l.google.com is 216.58.216.106
Sep 14 00:52:21 dnsmasq[3644]: cached googleapis.l.google.com is 216.58.216.74
Sep 14 00:52:21 dnsmasq[3644]: cached googleapis.l.google.com is 216.58.216.202
Sep 14 00:52:21 dnsmasq[3644]: cached googleapis.l.google.com is 172.217.4.106
Sep 14 00:52:21 dnsmasq[3644]: cached googleapis.l.google.com is 216.58.192.170
Sep 14 00:52:21 dnsmasq[3644]: cached googleapis.l.google.com is 172.217.4.234
Sep 14 00:52:21 dnsmasq[3644]: cached googleapis.l.google.com is 216.58.192.234
Sep 14 00:52:21 dnsmasq[3644]: cached googleapis.l.google.com is 216.58.192.202
Sep 14 00:52:21 dnsmasq[3644]: cached googleapis.l.google.com is 216.58.216.234
Sep 14 00:52:21 dnsmasq[3644]: query[A] i1.ytimg.com from 10.10.10.147
Sep 14 00:52:21 dnsmasq[3644]: forwarded i1.ytimg.com to 8.8.8.8
Sep 14 00:52:21 dnsmasq[3644]: reply i1.ytimg.com is 
Sep 14 00:52:21 dnsmasq[3644]: reply ytimg.l.google.com is 216.58.192.174
Sep 14 00:52:22 dnsmasq[3644]: query[A] r4---sn-bvvbax-hn2d.googlevideo.com from 10.10.10.147
Sep 14 00:52:22 dnsmasq[3644]: forwarded r4---sn-bvvbax-hn2d.googlevideo.com to 8.8.8.8
Sep 14 00:52:22 dnsmasq[3644]: reply r4---sn-bvvbax-hn2d.googlevideo.com is 
Sep 14 00:52:22 dnsmasq[3644]: reply r4.sn-bvvbax-hn2d.googlevideo.com is 208.117.253.87
Sep 14 00:52:22 dnsmasq[3644]: query[A] scontent-ord1-1.xx.fbcdn.net from 10.10.10.1
Sep 14 00:52:22 dnsmasq[3644]: cached scontent-ord1-1.xx.fbcdn.net is 31.13.74.7
Sep 14 00:52:22 dnsmasq[3644]: query[A] tpc.googlesyndication.com from 10.10.10.147
Sep 14 00:52:22 dnsmasq[3644]: /etc/pihole/gravity.list tpc.googlesyndication.com is 10.10.10.9
Sep 14 00:52:22 dnsmasq[3644]: query[A] ad.doubleclick.net from 10.10.10.147
Sep 14 00:52:22 dnsmasq[3644]: /etc/pihole/gravity.list ad.doubleclick.net is 10.10.10.9
Sep 14 00:52:23 dnsmasq[3644]: query[A] external-ord1-1.xx.fbcdn.net from 10.10.10.1
Sep 14 00:52:23 dnsmasq[3644]: forwarded external-ord1-1.xx.fbcdn.net to 8.8.8.8
Sep 14 00:52:23 dnsmasq[3644]: reply external-ord1-1.xx.fbcdn.net is 
Sep 14 00:52:23 dnsmasq[3644]: reply scontent-ord1-1.xx.fbcdn.net is 31.13.74.7
Sep 14 00:52:25 dnsmasq[3644]: query[A] lpd.ring.com from 10.10.10.126
Sep 14 00:52:25 dnsmasq[3644]: cached lpd.ring.com is 52.203.137.84
Sep 14 00:52:25 dnsmasq[3644]: cached lpd.ring.com is 52.205.56.28
Sep 14 00:52:25 dnsmasq[3644]: cached lpd.ring.com is 52.206.48.143
Sep 14 00:52:25 dnsmasq[3644]: cached lpd.ring.com is 54.210.91.249
Sep 14 00:52:25 dnsmasq[3644]: query[AAAA] lpd.ring.com from 10.10.10.126
Sep 14 00:52:25 dnsmasq[3644]: cached lpd.ring.com is NODATA-IPv6
Sep 14 00:52:26 dnsmasq[3644]: query[AAAA] deviceslb-prod-857603910.us-east-1.elb.amazonaws.com from 10.10.10.147
Sep 14 00:52:26 dnsmasq[3644]: forwarded deviceslb-prod-857603910.us-east-1.elb.amazonaws.com to 8.8.8.8
Sep 14 00:52:26 dnsmasq[3644]: reply deviceslb-prod-857603910.us-east-1.elb.amazonaws.com is NODATA-IPv6
Sep 14 00:52:26 dnsmasq[3644]: query[A] deviceslb-prod-857603910.us-east-1.elb.amazonaws.com from 10.10.10.147
Sep 14 00:52:26 dnsmasq[3644]: forwarded deviceslb-prod-857603910.us-east-1.elb.amazonaws.com to 8.8.8.8
Sep 14 00:52:26 dnsmasq[3644]: reply deviceslb-prod-857603910.us-east-1.elb.amazonaws.com is 23.21.54.178
Sep 14 00:52:26 dnsmasq[3644]: reply deviceslb-prod-857603910.us-east-1.elb.amazonaws.com is 174.129.34.9
Sep 14 00:52:26 dnsmasq[3644]: reply deviceslb-prod-857603910.us-east-1.elb.amazonaws.com is 23.21.225.196
Sep 14 00:52:28 dnsmasq[3644]: query[A] r13---sn-p5qlsnsl.googlevideo.com from 10.10.10.147
Sep 14 00:52:28 dnsmasq[3644]: forwarded r13---sn-p5qlsnsl.googlevideo.com to 8.8.8.8
Sep 14 00:52:28 dnsmasq[3644]: reply r13---sn-p5qlsnsl.googlevideo.com is 
Sep 14 00:52:28 dnsmasq[3644]: reply r13.sn-p5qlsnsl.googlevideo.com is 173.194.53.114
Sep 14 00:52:35 dnsmasq[3644]: query[A] lpd.ring.com from 10.10.10.126
Sep 14 00:52:35 dnsmasq[3644]: forwarded lpd.ring.com to 8.8.8.8
Sep 14 00:52:35 dnsmasq[3644]: reply lpd.ring.com is 52.205.56.28
Sep 14 00:52:35 dnsmasq[3644]: reply lpd.ring.com is 52.206.48.143
Sep 14 00:52:35 dnsmasq[3644]: reply lpd.ring.com is 52.203.137.84
Sep 14 00:52:35 dnsmasq[3644]: reply lpd.ring.com is 54.210.91.249
Sep 14 00:52:35 dnsmasq[3644]: query[AAAA] lpd.ring.com from 10.10.10.126
Sep 14 00:52:35 dnsmasq[3644]: cached lpd.ring.com is NODATA-IPv6
Sep 14 00:52:37 dnsmasq[3644]: query[A] www.googleadservices.com from 10.10.10.147
Sep 14 00:52:37 dnsmasq[3644]: /etc/pihole/gravity.list www.googleadservices.com is 10.10.10.9
Sep 14 00:52:37 dnsmasq[3644]: query[A] r1---sn-q4fl6n7l.googlevideo.com from 10.10.10.147
Sep 14 00:52:37 dnsmasq[3644]: forwarded r1---sn-q4fl6n7l.googlevideo.com to 8.8.8.8
Sep 14 00:52:37 dnsmasq[3644]: reply r1---sn-q4fl6n7l.googlevideo.com is 
Sep 14 00:52:37 dnsmasq[3644]: reply r1.sn-q4fl6n7l.googlevideo.com is 74.125.3.39
Sep 14 00:52:37 dnsmasq[3644]: query[A] eas.outlook.com from 10.10.10.103
Sep 14 00:52:37 dnsmasq[3644]: forwarded eas.outlook.com to 8.8.8.8
Sep 14 00:52:38 dnsmasq[3644]: reply eas.outlook.com is 
Sep 14 00:52:38 dnsmasq[3644]: reply outlook.live.com.glbdns2.microsoft.com is 
Sep 14 00:52:38 dnsmasq[3644]: reply live-namwest.office365.com is 132.245.44.18
Sep 14 00:52:38 dnsmasq[3644]: reply live-namwest.office365.com is 132.245.79.50
Sep 14 00:52:38 dnsmasq[3644]: reply live-namwest.office365.com is 132.245.253.98
Sep 14 00:52:38 dnsmasq[3644]: reply live-namwest.office365.com is 132.245.40.2
Sep 14 00:52:38 dnsmasq[3644]: reply live-namwest.office365.com is 132.245.28.178
Sep 14 00:52:38 dnsmasq[3644]: reply live-namwest.office365.com is 132.245.81.146
Sep 14 00:52:38 dnsmasq[3644]: reply live-namwest.office365.com is 132.245.92.226
Sep 14 00:52:38 dnsmasq[3644]: reply live-namwest.office365.com is 132.245.24.2
Sep 14 00:52:38 dnsmasq[3644]: reply live-namwest.office365.com is 132.245.52.242
Sep 14 00:52:38 dnsmasq[3644]: reply live-namwest.office365.com is 40.97.152.50
Sep 14 00:52:39 dnsmasq[3644]: query[A] api.mixpanel.com from 10.10.10.103
Sep 14 00:52:39 dnsmasq[3644]: /etc/pihole/gravity.list api.mixpanel.com is 10.10.10.9
Sep 14 00:52:39 dnsmasq[3644]: query[A] decide.mixpanel.com from 10.10.10.103
Sep 14 00:52:39 dnsmasq[3644]: /etc/pihole/gravity.list decide.mixpanel.com is 10.10.10.9
Sep 14 00:52:41 dnsmasq[3644]: query[A] static.xx.fbcdn.net from 10.10.10.103
Sep 14 00:52:41 dnsmasq[3644]: forwarded static.xx.fbcdn.net to 8.8.4.4
Sep 14 00:52:41 dnsmasq[3644]: forwarded static.xx.fbcdn.net to 8.8.8.8
Sep 14 00:52:41 dnsmasq[3644]: reply static.xx.fbcdn.net is 
Sep 14 00:52:41 dnsmasq[3644]: reply scontent.xx.fbcdn.net is 31.13.74.7

According to your log everything seems to be working properly...ad domains are being sent to your Pi-hole's IP. Is there a certain site you are having trouble with? YouTube has always been a moving target

Multiple sites are displaying ads. Youtube is the worst. I had zero problems until I updated. I was a few versions behind. I'd say it's still blocking about 85% of ads. So I can live with it.

I'm kindda seeing the same thing.. youtube is bad..!

but on mobile devices..