2 WAN - 1 LAN no PCC

Very simple setup for my configuration of 2 WAN. What I’m trying to do is par of one of my LAN vlan (vlan5-dmz LAN01) I wish to send an address list (iDigit Private Subnet) to WAN02 iDigit. When I activate the following mangle rule, tracert to external IP from iDigit Private Subnet still goes through my WAN01. From other vlan inside my lan are no longer being able to talk to this iDigit Private IP subnet. Ther must be a a way less complicated to achieve this.

Here are my rules

/ip route
add disabled=no distance=1 dst-address=0.0.0.0/0 gateway=xx.196.20.161 routing-mark=to_WAN02-iDigit scope=30 target-scope=10

/ip firewall mangle
add action=accept chain=prerouting disabled=no dst-address=xx.196.20.32/27
in-interface=“vlan5-dmz LAN01”
add action=accept chain=prerouting disabled=no dst-address=xx.196.20.160/27
in-interface=“vlan5-dmz LAN01”
add action=mark-connection chain=prerouting connection-mark=no-mark disabled=
no in-interface=“ether6 WAN01 SDP” new-connection-mark=WAN01-SDP_conn
passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark disabled=
no in-interface=“ether13 WAN02 iDigit” new-connection-mark=
WAN02-iDigit_conn passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark disabled=
no dst-address-type=!local in-interface=“vlan5-dmz LAN01”
new-connection-mark=WAN01-SDP_conn passthrough=yes src-address-list=
“!iDigit Private Subnet”
add action=mark-connection chain=prerouting connection-mark=no-mark disabled=
no dst-address-type=!local in-interface=“vlan5-dmz LAN01”
new-connection-mark=WAN02-iDigit_conn passthrough=yes src-address-list=
“iDigit Private Subnet”
add action=mark-routing chain=prerouting connection-mark=WAN01-SDP_conn
disabled=no in-interface=“vlan5-dmz LAN01” new-routing-mark=to_WAN01-SDP
passthrough=yes
add action=mark-routing chain=prerouting connection-mark=WAN02-iDigit_conn
disabled=no in-interface=“vlan5-dmz LAN01” new-routing-mark=
to_WAN02-iDigit passthrough=yes
add action=mark-routing chain=output connection-mark=WAN01-SDP_conn disabled=
no new-routing-mark=to_WAN01-SDP passthrough=yes
add action=mark-routing chain=output connection-mark=WAN02-iDigit_conn
disabled=no new-routing-mark=to_WAN02-iDigit passthrough=yes