We need to merge 2 large xml files and list one unique element like IP address,The uniqueness comes from the tag name, status and type.Input File 1:-\[code\]- <network>- <node> <id>11</id> <name>aaa.com</name> <status>active</status> <ip>1.1.1.1</ip> <type>Windows</type> </node>- <node> <id>12</id> <name>bbb.com</name> <status>active</status> <ip>2.2.2.2</ip> <type>Unix</type> </node>\[/code\] Input File 2:-\[code\]- <network>- <node> <id>21</id> <name>aaa.com</name> <status>active</status> <ip>1.1.1.1</ip> <type>Windows</type> </node>- <node> <id>22</id> <name>ccc.com</name> <status>active</status> <ip>3.3.3.3</ip> <type>Unix</type> </node> </network>\[/code\]=============The output has to be the list of active IP addresses based on typeSomething like:\[code\]Windows.txt1.1.1.1Unix.txt2.2.2.23.3.3.3\[/code\]