Transform 5, 2 dimensiona arrays in the PLC to array of UDTs, with another UDT aray inside, in Ignition

So I have 5, 2-dimensional Arrays, they are [61,22], in my CompactLogix PLC.

I want to map them to this structure

  • Udt_A_Instance0
    ** Udt_B_Instance0
    *** Member0
    *** Member1
    *** Member2
    *** Member3
    *** Member4
    ** Udt_B_Instance1
    ** Udt_B_Instance3 etc
  • Udt_A_Instance1
    ** Udt_B_Instance0
    ** Udt_B_Instance1
    ** Udt_B_Instance3 etc
  • Udt_A_Instance2
    ** Udt_B_Instance0
    ** Udt_B_Instance1
    ** Udt_B_Instance3 etc

How can I go about this? Is there some automated way I could create this mapping or would I have to do this all my hand? I am running 8.1 BTW