Queue PCQ

Hi All
I’m beginner in Mikrotik and I have RB450
everything is okay, but I need help in queue
these what I did for queue configuration:

/ip firewall mangle add chain=prerouting action=mark-packet \ in-interface=LAN new-packet-mark=client_upload
/ip firewall mangle add chain=prerouting action=mark-packet \ in-interface=WAN new-packet-mark=client_download

/queue type add name=“PCQ_download” kind=pcq pcq-rate=64000 pcq-classifier=dst-address
/queue type add name=“PCQ_upload” kind=pcq pcq-rate=32000 pcq-classifier=src-address

/queue tree add parent=global-in queue=PCQ_download packet-mark=client_download
/queue tree add parent=global-out queue=PCQ_upload packet-mark=client_upload

everything works fine
what I need is:
1- how to make the download limitation for specific local IP addresses
EXM: 192.168.1.1- 192.168.1.2 limited
192.168.1.101 - 192.168.1.254 unlimited
2- how to make the upload just for lan to wan connection I mean just when the local IP upload packets to the internet be limited
but when upload to other interface unlimited

So please help me
thanks alot