diff --git a/etc/kayobe/ansible/compute-lvm.yml b/etc/kayobe/ansible/compute-lvm.yml
index f544b57e55de7fc1540fed63e667ab3bf9be824b..60229cd280cbc49c223fa1392f7c76b3f3ea6baa 100644
--- a/etc/kayobe/ansible/compute-lvm.yml
+++ b/etc/kayobe/ansible/compute-lvm.yml
@@ -7,7 +7,26 @@
   vars:
     ansible_python_interpreter: "/bin/python3"
     ansible_user: "cloud-user"
-    root_disk: "sda"
+    # AR06 R660s
+    root_disk: "pci-0000:02:00.0-scsi-0:2:0:0"
+    root_partition_number: "3"
+    # CCLake
+    #root_disk: "pci-0000:00:11.5-ata-1.0"
+    #root_partition_number: "3"
+    # A100s
+    #root_disk: "pci-0000:21:00.0-nvme-1"
+    #root_partition_number: "3"
+    #root_disk: "pci-0000:49:00.0-nvme-1"
+    #root_partition_number: "3"
+    # Iris Gaia Core Icelake
+    #root_disk: "pci-0000:00:17.0-ata-2"
+    #root_partition_number: "3"
+    # L40 GPU hypervisor
+    #root_disk: "pci-0000:05:00.0-ata-1"
+    #root_partition_number: "3"
+    # PVC GPU hypervisor
+    #root_disk: "pci-0000:01:00.0-nvme-1"
+    #root_partition_number: "3"
     lvm_default_system_volumes:
       - lv: 'lv_audit'
         vg: 'rootvg'
@@ -41,11 +60,11 @@
         state: installed
 
     - name: "Grow physical volume partition to use entire disk capacity"
-      shell: "growpart /dev/{{ root_disk }} 3"
+      shell: "growpart /dev/disk/by-path/{{ root_disk }} {{ root_partition_number }}"
       ignore_errors: yes
 
     - name: "Resize LVM PV to use entire disk capacity"
-      shell: "pvresize /dev/{{ root_disk }}3"
+      shell: "pvresize /dev/disk/by-path/{{ root_disk }}-part{{ root_partition_number }}"
       ignore_errors: yes
 
     - name: "Resize system LVs to final size"
diff --git a/etc/kayobe/ansible/hypervisor-sriov.yml b/etc/kayobe/ansible/hypervisor-sriov.yml
index f0777bb7d799296ea4f548d65e9c5870fa04ed95..cff5688da54a51b43b8a8e9cdab70d4e7221a40f 100644
--- a/etc/kayobe/ansible/hypervisor-sriov.yml
+++ b/etc/kayobe/ansible/hypervisor-sriov.yml
@@ -12,6 +12,17 @@
     remove_old_config: True
     force_network_restart: True
   tasks:
+    - name: Configure node for IOMMU
+      import_role:
+        name: stackhpc.grubcmdline
+      vars:
+        kernel_cmdline:
+          - intel_iommu=on
+          - iommu=pt
+        kernel_cmdline_remove:
+          - ^iommu=
+          - ^intel_iommu=
+
     - include_role:
         name: stackhpc.sriov
       when: do_sriov
@@ -61,8 +72,10 @@
       lineinfile:
         path: /etc/rc.d/rc.local
         insertafter: '^touch /var/lock/subsys/local'
-        line: "echo 16 > /sys/class/net/{{ primary_eth_interface }}/device/sriov_numvfs"
+        line: "echo 8 > /sys/class/net/{{ primary_eth_interface }}/device/sriov_numvfs"
 
   handlers:
     - name: reboot
-      include_tasks: tasks/reboot.yml
+      #include_tasks: tasks/reboot.yml
+      debug:
+        msg: "please reboot {{ inventory_hostname }}"
diff --git a/etc/kayobe/ansible/luks-keys-backup.yml b/etc/kayobe/ansible/luks-keys-backup.yml
new file mode 100644
index 0000000000000000000000000000000000000000..2f1cb238d0a6cf2099113c200e53c1a109143d23
--- /dev/null
+++ b/etc/kayobe/ansible/luks-keys-backup.yml
@@ -0,0 +1,31 @@
+---
+- name: Backup local LUKS keyfile from compute host
+  hosts: compute
+  gather_facts: yes
+  tags:
+    - luks-key-backup
+  vars:
+    luks_key_file_path: "{{ lookup('env', 'KAYOBE_CONFIG_PATH') }}/environments/{{ lookup('env', 'KAYOBE_ENVIRONMENT') }}/inventory/host_vars/luks_keys"
+
+  tasks:
+    - name: Provision host vars directory
+      file:
+        path: "{{ luks_key_file_path}}/"
+        state: directory
+        mode: '0755'
+      delegate_to: localhost
+
+    - name: List files in the LUKS keyfile directory
+      find:
+        paths: "/etc/luks-keys"
+        file_type: file
+      register: remote_files
+      become: true
+
+    - name: Backup LUKS keyfile to host vars
+      fetch:
+        src: "{{ item.path }}"
+        dest: "{{ luks_key_file_path }}"
+        flat: false
+      loop: "{{ remote_files.files }}"
+      become: true
diff --git a/etc/kayobe/ansible/luks-keys-restore.yml b/etc/kayobe/ansible/luks-keys-restore.yml
new file mode 100644
index 0000000000000000000000000000000000000000..c98ea3cddae6386e3c2b6ad7cac0fa4f587b3984
--- /dev/null
+++ b/etc/kayobe/ansible/luks-keys-restore.yml
@@ -0,0 +1,34 @@
+---
+- name: Restore local LUKS keyfile to rebuilt compute host
+  hosts: compute
+  gather_facts: true
+  any_errors_fatal: true
+  tags:
+    - luks-key-restore
+  vars:
+    ansible_user: cloud-user
+    ansible_python_interpreter: /usr/bin/python3
+    luks_key_file_path: "{{ lookup('env', 'KAYOBE_CONFIG_PATH') }}/environments/{{ lookup('env', 'KAYOBE_ENVIRONMENT') }}/inventory/host_vars/luks_keys"
+
+  tasks:
+    - name: Provision LUKs keyfile directory
+      file:
+        path: "/etc/luks-keys"
+        state: directory
+        mode: '0770'
+      become: true
+
+    - name: List files in the LUKS keyfile backup directory
+      find:
+        paths: "{{ luks_key_file_path }}/{{ inventory_hostname }}/etc/luks-keys"
+        file_type: file
+      register: local_files
+      delegate_to: localhost
+
+    - name: Restore LUKS keyfile to remote host
+      copy:
+        src: "{{ item.path }}"
+        dest: "/etc/luks-keys/"
+        mode: "0660"
+      loop: "{{ local_files.files }}"
+      become: true
diff --git a/etc/kayobe/ansible/nova-compute-disable.yml b/etc/kayobe/ansible/nova-compute-disable.yml
index b74c6790ea1c5a490060a3610591bca7b2f8616e..50831cb03bf479c13432af858bc02753c3993110 100644
--- a/etc/kayobe/ansible/nova-compute-disable.yml
+++ b/etc/kayobe/ansible/nova-compute-disable.yml
@@ -16,7 +16,7 @@
           - pip
           - setuptools
         state: latest
-        virtualenv_command: /usr/bin/python3.6 -m venv
+        virtualenv_command: /usr/bin/python3.9 -m venv
       run_once: true
       delegate_to: "{{ controller_host }}"
       vars:
@@ -29,7 +29,7 @@
         virtualenv: "{{ venv }}"
         virtualenv_command: "/usr/bin/python3 -m venv"
         name:
-          - python-openstackclient
+          - "python-openstackclient==6.0.0"
       run_once: true
       delegate_to: "{{ controller_host }}"
       vars:
diff --git a/etc/kayobe/ansible/nova-compute-drain.yml b/etc/kayobe/ansible/nova-compute-drain.yml
index dfd8173e69ceeee9c16e74ba8d31c9903e9cfa72..4d61ef295e42b4b8c8229cacd6926edd7ee5cc44 100644
--- a/etc/kayobe/ansible/nova-compute-drain.yml
+++ b/etc/kayobe/ansible/nova-compute-drain.yml
@@ -1,6 +1,6 @@
 ---
 - name: Drain a nova compute host of instances
-  hosts: compute-ska-src-r660-himem-20240610
+  hosts: compute
   serial: 1
   gather_facts: yes
   tags:
@@ -13,15 +13,16 @@
     - include_role:
         name: nova-compute-drain
         tasks_from: setup.yml
-    - name: Set up openstack cli virtualenv
-      pip:
-        virtualenv: "{{ venv }}"
-        virtualenv_command: "/usr/bin/python3 -m venv"
-        name:
-          - python-openstackclient
-        state: latest
-        extra_args: "{% if pip_upper_constraints_file %}-c {{ pip_upper_constraints_file }}{% endif %}"
-      run_once: true
+
+        #    - name: Set up openstack cli virtualenv
+        #pip:
+        #virtualenv: "{{ venv }}"
+        #virtualenv_command: "/usr/bin/python3 -m venv"
+        #name:
+        #  - python-openstackclient
+        #state: latest
+        #extra_args: "{% if pip_upper_constraints_file %}-c {{ pip_upper_constraints_file }}{% endif %}"
+        #run_once: true
 
     - include_role:
         name: nova-compute-drain
diff --git a/etc/kayobe/ansible/nova-compute-enable.yml b/etc/kayobe/ansible/nova-compute-enable.yml
index f323d69947176a6d62fc470cb3322d04efd5105a..ee0e4cdf12b1e48c4ea3b49da1b70cad0aff9ce3 100644
--- a/etc/kayobe/ansible/nova-compute-enable.yml
+++ b/etc/kayobe/ansible/nova-compute-enable.yml
@@ -16,7 +16,7 @@
           - pip
           - setuptools
         state: latest
-        virtualenv_command: /usr/bin/python3.6 -m venv
+        virtualenv_command: /usr/bin/python3.9 -m venv
       run_once: true
       delegate_to: "{{ controller_host }}"
       vars:
diff --git a/etc/kayobe/ansible/nova-compute-rebuild.yml b/etc/kayobe/ansible/nova-compute-rebuild.yml
new file mode 100644
index 0000000000000000000000000000000000000000..04b956d50a60d1c396ff012f69926cc385e606fe
--- /dev/null
+++ b/etc/kayobe/ansible/nova-compute-rebuild.yml
@@ -0,0 +1,27 @@
+---
+- name: Drain a nova compute host of instances
+  hosts: compute
+  gather_facts: yes
+  tags:
+    - nova-compute-drain
+  vars:
+    nova_compute_migration_fatal: true
+    rebuild_image_uuid: 99069c35-aa47-4b2e-910e-6e37bf16055b
+    venv: "{{ virtualenv_path }}/openstack"
+  tasks:
+    - include_role:
+        name: nova-compute-drain
+        tasks_from: setup.yml
+    #- name: Set up openstack cli virtualenv
+    #  pip:
+    #    virtualenv: "{{ venv }}"
+    #    virtualenv_command: "/usr/bin/python3 -m venv"
+    #    name:
+    #      - python-openstackclient
+    #    state: latest
+    #    extra_args: "{% if pip_upper_constraints_file %}-c {{ pip_upper_constraints_file }}{% endif %}"
+    #  run_once: true
+
+    - include_role:
+        name: nova-compute-drain
+        tasks_from: host-rebuild.yml
diff --git a/etc/kayobe/ansible/reboot.yml b/etc/kayobe/ansible/reboot.yml
index 8810afd7f14765dd4e7019102e007103298ccbfa..d4b4736b7bf1500aed2664f98838fb34e4850da8 100644
--- a/etc/kayobe/ansible/reboot.yml
+++ b/etc/kayobe/ansible/reboot.yml
@@ -1,10 +1,14 @@
 ---
 - name: Reboot the host
-  hosts: seed-hypervisor:seed:overcloud:infra-vms
-  serial: "{{ lookup('env', 'ANSIBLE_SERIAL') | default(1, true) }}"
+  gather_facts: no
+  vars:
+     ansible_python_interpreter: "/bin/python3"
+     ansilbe_user: cloud-user
+  hosts: compute-iris-cclake-himem-20220816:compute-iris-cclake-20220113
+  #  serial: "{{ lookup('env', 'ANSIBLE_SERIAL') | default(1, true) }}"
   tags:
-    - reboot
+     - reboot
   tasks:
-    - name: Reboot and wait
-      become: true
-      reboot:
+     - name: Reboot and wait
+       become: true
+       reboot:
diff --git a/etc/kayobe/ansible/reconfigure_arcus_hypervisor.sh b/etc/kayobe/ansible/reconfigure_arcus_hypervisor.sh
index 76905594502d11afaae187de030e2c39b081649f..fab22bd5767ce463ac3ed5198ba487677a817cb0 100755
--- a/etc/kayobe/ansible/reconfigure_arcus_hypervisor.sh
+++ b/etc/kayobe/ansible/reconfigure_arcus_hypervisor.sh
@@ -20,7 +20,7 @@ function reconfigure () {
    echo "# Reconfigure the BM hypervisor node"
    kayobe playbook run -l $HOST ${ANSIBLE_PB_DIR}/overcloud-update-trust-store.yml
    kayobe playbook run -l $HOST ${ANSIBLE_PB_DIR}/compute-lvm.yml
-   kayobe overcloud host configure --wipe-disks -l $HOST -kl $HOST
+   kayobe overcloud host configure -l $HOST -kl $HOST
    kayobe overcloud service deploy -l $HOST -kl $HOST
 
    exit 0
diff --git a/etc/kayobe/ansible/roles/nova-compute-drain/tasks/setup.yml b/etc/kayobe/ansible/roles/nova-compute-drain/tasks/setup.yml
index 542f1608c4d3ba2f43c0c99a3add8d695875da51..428ac9bb2926500353717257d865e05cad17037e 100644
--- a/etc/kayobe/ansible/roles/nova-compute-drain/tasks/setup.yml
+++ b/etc/kayobe/ansible/roles/nova-compute-drain/tasks/setup.yml
@@ -7,7 +7,7 @@
       - pip
       - setuptools
     state: latest
-    virtualenv_command: /usr/bin/python3.6 -m venv
+    virtualenv_command: /usr/bin/python3.9 -m venv
   run_once: true
   delegate_to: "{{ nova_compute_drain_delegate_host }}"
   vars:
@@ -19,7 +19,7 @@
   pip:
     virtualenv: "{{ nova_compute_drain_venv }}"
     name:
-      - python-openstackclient
+      - "python-openstackclient==6.0.0"
   run_once: true
   delegate_to: "{{ nova_compute_drain_delegate_host }}"
   vars:
diff --git a/etc/kayobe/ansible/tasks/reboot.yml b/etc/kayobe/ansible/tasks/reboot.yml
index afba1325f56d6df20004ba0b64123c076f7f05dc..dd090cc496213bc9440eb7c90953cff2431d2005 100644
--- a/etc/kayobe/ansible/tasks/reboot.yml
+++ b/etc/kayobe/ansible/tasks/reboot.yml
@@ -4,6 +4,9 @@
   async: 0
   poll: 0
   become: True
+  vars:
+    ansible_python_interpreter: "/bin/python3"
+    ansible_user: cloud-user
 
 - name: ensure the node goes down
   local_action:
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar02-u22/etc/luks-keys/dev-md127 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar02-u22/etc/luks-keys/dev-md127
new file mode 100644
index 0000000000000000000000000000000000000000..4ee7404c95db8e648c443a1fc057cd9bdd4c647b
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar02-u22/etc/luks-keys/dev-md127
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+37393565343637313666303431356264353632393166363738386362393838653335626432303335
+3034643333626632656131653238326266303232356332650a326633356136346536643138333133
+38393937393737623262366235363666666533653832386234323265623135623762343331353761
+3064376532646334610a663034666563643735646563313863343430623065316637363935376132
+63613731666235356532623264386238323231653461373366333062356263656433656338346165
+66306437666163636631313333356631383833366233346165393162616332333738313663313137
+32313037383431613632323231623361396434356636393633633435353637353365363633323365
+35656562323863353361643937636434303463376436353362363536393438303935653035343137
+64396266636639616261343231363537373336656638303537303236643132393838353436306462
+37356561306134343662363265323733303536396264666436313135656237376439306262623933
+37333734323331316461386139346137323538373233346562346339303738326664353461663363
+33343433356463346664333563386466326235373230376133313330663665383061393936383638
+35393735326632643038653565363832623562646335663165333331326632303066643738323663
+39343536363966653465366130376333626334663664616339356537353732663637356231646564
+35366365633361353034333564396263386135323937656434336232633836633332643664376332
+33373866626530393565363366393236393061663539646139396633626639333635343836386531
+38663661346134323433326237303734666630323836376361323936656165343335366434306263
+37323138333232653535373530306137343831383832303263376261663438633536633033666566
+36356465316531663435383365626365376436323138333231636536353061666230393161323931
+30396263346631663962363937373666626263643935393564353031353265303436656639393261
+39353631343766643266363335313031343566356665353562636130623161613763396362306562
+32366666316531363432326131613930353161306331373035353132653833383234313131613036
+61326562386130383632303439613130303262363865373932346462316431613061306561373533
+36393934663965616332396334363835626361626433323662336364633037623961613965353561
+63623962646531373236623935653734383839653361356362393430346563656530313531316466
+39313461643739393537616561393031313566393439613365373138613635613939316637373333
+37666432663161616135636239633838306230643062643934656336656435393833663963353837
+37323565643735393562636133316630346339366261656663353066306261626139653162376264
+64616430316562306437343538346661653365613838626132633934616166343834343938633137
+62366266346261666435653462303735653164353038623565336562363535636134396565393339
+36343838303934636332363131383161366430353266303336333437313133386436636630393566
+37373137373334343066613364663632626139613164643536366565343733386165646561356338
+33336539653137653963303938373065323561383461396637656630366663666630313234376463
+31613130633766353138313963363265376432373339303662373161303339316263333131356632
+39393338623633363636393261373930636433636663373764613732653032626631366262643664
+39363837643131313630643734313062396566306131313631666566336339633565333564623566
+61646336393639323562306461633838633264653239313835643231666632303632393033613739
+62633738376237306230363936386636356136363838306566356164663530363137303733373031
+66333938313635383735333230626337666632643730356537363663343934623132323565646134
+62356539303562386237303930353566353537383735306462316664383430356131666238653961
+39333839333632666235393031653366373031373836663266333864346438343732313465633566
+34316637333365663736633962333334316636313832306235326336373561326661373936393930
+36323235313533383438636537303963343066316165316166363563336263386365343730636437
+61363764656638643739616563343537363139656232356537303162303537366636663535346530
+33626164303136666563363434663634636339356439643462363531386637626634653863343734
+61373461666366313161616363643765613430326163346563653935303035613233623839613031
+36633436343633353737326630323564303465623464386566646331666630326438626335636336
+39323064636134373265376661643832383936376164333436333562333735373064326165616334
+63616136333463313631366566333934376339663738336364373432666634663266666665653463
+38306161363764363433646538363461356630643831306139373536346533653334323463303331
+35386661646530306461363231356663646534373830393634663566653038376465613632643431
+32393037393134653637623333303934623230656137656365336630353163343434323334373535
+39613335366130346463343836666537613030373830633563666436653632323434613038363837
+31376234373761623339653165663264346365303935616437396134366530636265376265363234
+31303966303863646661653731383330616534623265663834336630616135343430313330646562
+64343863396131323863343335623032353665323731386164313862303361303338636362313335
+64653036646339316530323663353864333430373664613238353836313932653232663966323665
+31656638353664373336363438336134633465643030323536303838343033313437303866613538
+33373466643437393438306634626135373035303336306232393735363161336135353063363632
+61636633393762346133353135333437633564653762643264666461373739336537353531336265
+61316538616430623463376663636662326230306363653962373465336661326464666239303935
+39393132376638346633303430396633356666333938633362386564356139373166363237376230
+37636133343837343931643165336530306265386565656465643430373731323264643232383066
+34646230316139343631653836333963663362343364383462633235623632366534313961326339
+62356330386534336237663837363237653631646632336438313737393135666364396238336365
+64373030316266363239643233316238363266316163356539643738663531343336373430383530
+30653238663432636462663162626531323464613338626439326235616130333133313763623062
+32646330333631356135343636313837313665383936353165393936323866643534626230666535
+65313365653039616663313130393630366366313964393335666533316631623336313138353565
+35313836323262323631346536353034346464646230303139633462333430366335373735383437
+38353736613166386631633838346437396431326461386534393837326335306431306538356133
+64393230393130363431303736343036666338383534613565323761613238653763356332653739
+39396261623434333836376136316434386639346639373866363035376464633463343836383432
+33623665383661316134663330653266313764373531623766373038386133313231383130366630
+37616433383034613564666465363030383066373433613039386435383732636633383161303035
+65663438393864323536313339623030346633396664623465326535316434363166323332303563
+35373339373163356539663933643638393330323066353936386338636337616536633432396566
+61323131656336623664636333336165656433316563333833343035386232636663613232353264
+63346636336138376361303836326339366134383966386539653437666534373665306663616361
+30653533393863306439613132306230626334356165303532323735633665366666366533356135
+62613862656665633030663166343630376338316564323234626565393235353861303765613861
+65646362636362323639333636613639393862373632336339643064376565653535366261306239
+36313962303832623731306435373666666264366664336639666664313766626664643566363662
+31313839636463336234343466663438623039313764333564646631303433336634636339376239
+34616331623461303763646666353932653237623434343734323633613138663062373537303730
+39376661303764373063396237646666616238356132343739313731663764333432643866613065
+35386435653930626338653531626165313835346566356631613161376136346532356231313262
+65373362653161306461633331643932636539306530326630323731383732656466383831616631
+34626639336435366163663361623833393639353932353438383539336538393733326263656363
+38663761356165613931356462643836363132643437316165396639356464656434306536316664
+39646366313666376335373266326265643165386338663830396235386539316363303166313363
+33626662336366383338343839643966623861323664643737383533336335313564396166613430
+66376564303432616333613265316537346132316331366538386130343861303461643536393438
+66643866393133303339363361333035373432656530323039393238353565323734653133343564
+39616534333939363433393966323864376663643038653366616535313639346365353131386463
+62313861303462373230363133626366623330313136666533336134353233343330316639356436
+37366638353636363731616236313864633163376332333565353932613038613266346465343365
+35653938366630363566616631393763613837396332646535353365343133643234633430323933
+66623062613830353130383437383564336235626264343636393335656665643039663261363832
+37363936383737393034363537656263613961316462366233376134363734626630616534313930
+39346438393535313364663233323935303039356464616436663232343832643761383636323234
+65313336343062636366346439343032656266643062373864633230383936316230613935313661
+38363163306630636633366362636434616535376638643839666130623839303261383835386534
+61303031333261323131333062663332353262663966653866343162643832336264396364383633
+30393932653837313534663961386136663461386661623239343361333836383239616435623762
+64333431373239656530366461636136616630623364363930663738643330646239376362376166
+393939306631646134653132613563343234
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar02-u24/etc/luks-keys/dev-md127 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar02-u24/etc/luks-keys/dev-md127
new file mode 100644
index 0000000000000000000000000000000000000000..ac8c4c2b01618c8e3ca8c0d6bcb46d043cbaa9f0
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar02-u24/etc/luks-keys/dev-md127
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+33623030386465323736623264353831386230303264363830666538373730626136616265316266
+6362306238346539633562323862663432303238376663630a346532623331633631313333366532
+33653236373963323661373563346631373561316139383265316264636632336334306431653131
+6231396336356438380a623330373638373162366234323463313063373364303262623037356636
+39616238636633366530386330643761616264613636323964386438626535336434663736396532
+35636561653364626537323732336264643130343266363836393936623939363031333763366638
+38333862373965366632303338363165356235666335383032353130373939376335646562316438
+35383734643233396665616238303736306334376466383565323038303638363363633232393738
+64363539626638386131636136623562663137633531346663646133373262393935343164396365
+33303838303036366332363538313134333132363735623132643866346435396661376566313937
+65616361663030613236356134313535656132333466376333633533393535383139316536383139
+33313161313131666232316630376636353665353733353531346465353238663763643131643130
+62376139653336653131343636386537336664383865393564636435646561316231333431333031
+32376366393732383662376631393432623930303836343035346431306430643964613864636364
+64343938326134353764633564636438353231326363363765386463386434376239393862373838
+34316361613337316564633861306566336563663864656131376532646639303233383439333730
+30313263633662356135353437656230386564346361656436346434383163643631643134643362
+33373539376236646264623632643665623137346439336561653864623237356333376239306331
+65333061386664636364306235303834356466396361343831656338323363656361653638316536
+62616361393934393932666164653835633930393339363939333237616537396430623863666230
+34346361376464626537386538313264646661396636383932363866363263356561626465353261
+64353338343930656235343061336165646530346330383438376139623163353137393038313138
+62623934626431626163376335333162653530613035643262323532663432353864336236323530
+39366535626566663233326439346539356465346138663834616166333062356639376537373764
+32623436343033653561366233386334346266393139653362346562613034376261643331653830
+32616463333937333061393332373230366665336232343062383662613532353633343831363162
+31656265623934306165353065303630653232633261636162323861643634623438376664343263
+38316163336533313362313532643763643832653737343738383733343262663063326162626333
+64333137353064613131306663623263376264623636396631363936356266643630613739333635
+35336330373766346535363339633462323564363164313733303539316231663433666139643439
+61633934386231623932326461373930653063343461386635393333656136633732356537366461
+62613632306163613763623663663838303131373761666630356433376635643834623863313431
+35343462636234303663366434616666393631666466396562383666613634653831326465623262
+35373631313536633533636261393538653138643462666638663631396330353166633233633861
+31623438366431343739646362393263373035396436333733326565623439336534633366383032
+32346332373233326334333533333632346230373231306237353536323164303464333731663836
+37666639306236633737306432383932313831303839366235613263303036383330383830373435
+36313439353531333030663034373633653965346238623139346364623035363362393933313131
+34396330636435393235343838653936316163313863313436393666373663613931316161336561
+66643439316666633536653162646534356562656330636462313331303966623961326562313630
+39613865663565386130363463366637303037306162336663613135623531316531616364666462
+31346439313432306339383137643663623134663637656661386462396434643938363362346564
+32646135326232643434653531623433313061326339396265363130656563336136616132383061
+66623465656464616266346132623866646439613730303265373936613235633636663963646438
+32333036386436306264646133646331646331303933323432323932656662666239343832323032
+63626566313931346637646535616364613766373866663031313531313937306232316464316531
+38333466613262396166336537373737393162666537343935346438326130646430383733396330
+64633139306561663663373032396431623362303065663533633166653966303434623736393630
+34653739333864376230613439666561656365643033633861373035393365356266623430376564
+65383762633162633632313437316664303531313934636333393262663330663730303434613437
+36643762303738373462633363366131623439656166356463366232333162366636633337343331
+62656662646166373033366339663833633433386361383466636239633639303230656136303262
+62333962643862313236373762363836353263643362356665303265306464303666663132363435
+62313332336331346635333161356666323863623030313963653061323966333230633032376561
+30616438636134343337393631613232663633616530373739623138613866666262613665616662
+66663139346263306463303030643939653631643662353632373034646237643139656435653433
+34313836643631323731633431306565373933633664386632643032306463376163356164356134
+39303539396165663961326264303965393135323863613031383630646365613139363065373431
+31323438336265363662303034643030333233343436323039613361303864333433313433616137
+31323065353934383130653962356466333335343938613438363330396131366531656438396561
+63633465626533316234343531383764393837306636623335303838623362376137343366386433
+38376337346430616638393861643930663762626563353138353061626337326237346531616233
+62356136646165373063666263346534306432373763666439393430623962323633353733616562
+37633636313636663137316661316365363835343637303434306636343335383761303363616238
+64613463646365633066636263643239333163326437353435313461353766636361333963646566
+30306533643166376135646530666565336333373264636566346430343732653762653562376433
+63623932613835336664353836343333393263346132303466343865633935373535656233623039
+33353862356565393630663630646433393665393964636235336565383630613434613235326332
+32363336326565393265376136383734356162626137663964353262363766313432313730306230
+62343539373566373132633536356537323161636234343764623835386230626634353730666561
+37373938623532343631363337343361356265356563656365333832316432316433313334383036
+38613539623839373563376434643564323031336234326563376236353337663163373666616266
+62373134653535393662346135653736653533623636613832373765306530313937323136376163
+30323035626639643562376663353930376532386235663061336535356661386166306532363831
+38353237643631366433356637316262333334323762366638313235316562323739336362333238
+37373834656331393939323864303962323661623336633531306333616136393061363833323038
+31383162323436373364333330326437343930663964343334336162636638343064623838666130
+32383538666434326438646339306433373362636162396136396562623236343435356662356337
+61636535326534633163363762303439373362633162346366626639623033656331646331353432
+30356138366232646534356134666234613763323065616239313534323332363932663261306165
+35316461623536316563346436656137366139373366613832316662313730666264656536646637
+31353966336161333834626330333336333565363837663763623065366434313439313939636266
+37346337313632356135656631306330613661326563613433373338326665316431373264353364
+35656337346536303734386665643633666430343830393431313339303838383936643439383264
+35336430356135316562666530373332613533383635643435633664373632646137366531386236
+61623835373937313962366537663232346565646237343063626465333937376638363237316531
+30646335313034666137613737393463643265353231633135383537663063343766653232373839
+35623962333365653335386630623335353537633238316534333131386438356235613030623436
+38363835666238623839636365653131346531363261663533363465306630313837656134656164
+65343031633435363930323465646466666338323737386563616364613135343866366338363839
+38373535343332643239663332666233396463646634393038343966323265353062333532383031
+30636133666630366564623135326639336534663565306237336637633361373662373361336533
+37313637643161336633343236663937303266633636323564653563353935643534643731383934
+30386233343730663339343936396266643535353432343566346338393861333065616138383739
+38363664313031366166326230386136386130643363336163363865376565336632333936663633
+33616133626633616232303537643065366530356562383563333234366135323266353837313138
+33653263616632333564363631653931303730333266393838373166316563303031663161373735
+63383031323165663037373462303666373137343631633466393833356562313931333064653832
+31336139373137343836666434363366383732633962306131633537386464383531613033396662
+64336266383266383463383162653735656662323934386433386338613465623330323034376430
+65633564393030656639336530343130336633653733303164653761336365663164373964363636
+37643062633731316161653039336162323064316261376631346636356237356261616535306236
+62646564646634353437613631383130633435303438393666396433313436666162643638346361
+30643232356439663932373537326665343066386465323335303134373864336364343261376466
+63303239396134363230333337653966316162353838616263383933383166393038646264363964
+65633433313833343162346634303138666639343336316235656438356363663863626332356636
+323339393535653839363765623233636265
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar02-u26/etc/luks-keys/dev-md127 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar02-u26/etc/luks-keys/dev-md127
new file mode 100644
index 0000000000000000000000000000000000000000..361c94c4028853a98a09058934e848b3eb89d9b7
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar02-u26/etc/luks-keys/dev-md127
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+33306662323135313865316666666236663238656331316664326631383834646331363163616162
+3333336366653565393634633065643534326632646663620a356637336336323363643639616132
+32646664363931666331363930356161353636346230366435303734626239386634663231316138
+3066333961336635340a363139363934346664336234383634363661303161303130376334626535
+31343231316461376532633030636132353330646633306631653334373765393931333964653132
+64313766306663323736343264353335306530613437316639633730383239386232646132633238
+30626530306231373437643262386437386265646538376634613933656366346365373261343339
+36316565383364356363613130666337316439386466383539373832396461383865356439353261
+30663432346432316138363063316139613661306237383436646465306231323264303439353663
+32353034366661336130353561353033336236323537303835396566313633656132653365393464
+33633732343234626535386266393235393630383734326366313634383562306133326235646562
+33383737336239356131633239393936653234333865306161353839653662346464616662366463
+38626234323031623838383434666633623635643032313333383733333030396364316636626337
+38333630613862373465323638393565343935386233326639353836346439666439326564353538
+33636665623331666232353039346239343061383963333063666530643361316135623434306563
+33613666346539383566343464663834326136616133623535303634393935373433363964376135
+30656330343536623434363066393536353639623963363232393930393838643033333238663931
+66656530313136653835313764353838376364633366373066346361343836346633353030396266
+34363433613030643964343137363036353036333564336434383364323031663734336236636235
+66326332363036636564336334656339383637303264373837316663336633316163376232666463
+39623962343937366464326239343766613637623864343835353232633961356230643961643638
+31663030396566306264626362386132663432376262326662623930393265383732323633373463
+36396135316361313638316334373335626665633239653032333330366135376539353564316634
+35626432306564393233333265376631633036336537656232633033316136663864643334643230
+64316438623733363438626132333162363538613861306434666333363637613364396536376234
+32633038343432376338623136336264663034666632653862336666653439383535386430363465
+38653034346335616465616230313232323531626663343461646339303266373237373335626337
+37306239326364393136376431336636343635666564633036393062373131323764386166376266
+66633634633438613337643631393963636139646366343863623934383333356261613335383764
+63303266643961356330623364363134373935663639376539303132363735336463326332666663
+38626633343139313935613835393333633437643636383233366565316635653231643339636530
+66663734323833613330306530376138313463653862356637313066653039303364363361633833
+32366436616363326166343663366666323531643533663438653130333134343765633764663336
+66326430386666633666323865393132653134336232323061363236386139373737633062323563
+31626130653039373130363637663262313830306130366631393730323163343862336363623363
+38326131653037623838346539653839343733376564376162633534373161326131363265343639
+62666635316435366334626531386538356139323832663534623666613762386333616162373933
+39626435663965333134366130366631386431656138383937613030323336623535323465346633
+33626563303237643938646535643336646564643964636233663730306539386236616331366430
+61303937356666333936346631326566376131336233663734303334303364666632656231663535
+61643336623632613531633736373665663463613836356139376565356637396563626264316536
+31633839306637633066653261383831363333303439633335386330663764373734613461336561
+35646361393431323332313735613934353163646534613665666132616466653534643733373330
+37623839643133626139613633326536643430386339616465323965366235376535653261646139
+64303764346535353861383461643264306534633164323031356663353434376234653332383038
+65303033336363313533343035333033616365656566303635626431626437323465643263656439
+30613962613635333337666539646361363366346536646466333437643065663435366563353532
+31303337343066623461313034646161663034333631393235643532613565343838393266306431
+31343664656161656530336138656634356137626435373064643335333533373834323330656531
+65323535656335666233343637616530313034336234396531373761373139643735313034666233
+66626236623637316663343436666630383637636532386433326163653135653638666638343137
+31633830383461636238616437393532306666653431386363613634386236383838316438393032
+62316433626234323132343834653339613432306464663764653564323864363532376537363063
+37323466633465386134303265346639653332653964626433373635653435663762626333383335
+65313365623939313436343361623465316337666534663865643934633637336261313965663866
+34343532326238396637383839326266346365623332656433643739613864316533343365626338
+65616464306565363930383064336532613931666330656135633763616461356330646265653935
+61643361306235376566313064336264313161356162613530306662623763393134353865623138
+38643439346564633865643662656662623734363464663137643234666636343531386234333734
+64326135613838366538333865613032613731353030653964663466656461323766643130303038
+62376434666638393865333238306430616262393164373636353539623335386536646362356231
+31633030373334396364626439366566316461373630663931383335356166623139316438393938
+31346239303735613362386530333234633232643837643638343534363139343932333932316433
+30626662343035303165623061356463333562313038626530343831373065346230636461626364
+36303235353464313939663862666336333934386237653935636534366333653465626361366232
+38616138396231376163336564353963383632663234393464613933303762353363653833636462
+64376666316566333731306639633932366662653231613531396438353532313033323531376339
+66366131663831386339366532306430386164626463373430633862653932646232623331323630
+39393431663934636633393138613632383036373731626265616138343163303836386132393335
+63373261303062623834306566306631396563383961353532343462613862396334396536373936
+62353465633237663434343037323538373837356337363462333664326363643763663336393334
+61646266633836656165366130383232643738636637313665356433383338356138363234656638
+65643739353339353638613561613430653135633462386431336661393235316239383565333962
+38653566396133636438383635316634346364613237353332626365353465656136623137613938
+36333431303461306533353239623861393739613562353030656535626266633363323037393162
+33333133613034333735386237663061653539623337316233646637626166653664616236393362
+39613339653139303266323063333131623337303935303936343332613533636437316634396563
+34636132383231366239666165313962313962666137386335393034623838396433356537316233
+64663030653539346136353335616130393933646135623664633337666431303463353262303030
+32383035336431663264353464323939646138326264333437396265636663643831306335396435
+35326330633035376362303230646363346237336562623562646165653135613532616537316539
+35323062323566326637383035666636663964313938626433303933656462316433303166666437
+30326432336662613834353238396462323333303431306166353464323733613961306139393330
+38333839343664303030306463636230393333343835636433633964366136366463333935346165
+39633165393138343563383634636665353639333639343661373138643438633732643936306234
+32356235646230353933363732326565306534663532346436326433313339386334383134333532
+37363830326261663162643230353533653833313965316130616463356333313861386436393463
+36633532316130386232326538336562306135336239346464633233303562623732306534333762
+33653235336364623039373336353937383062636439363061306463633831373865633236313061
+34623137356535313662333262376237353263663238653764346338613066653666306363323032
+31353138303839356630363233313163353166323136353136363133336634623437643364623935
+62623637623930336437616264666139613863396335633431333762383962633931356335333332
+35396237393566376335353461343136303136376565626131303437356132386432316131393237
+31333338636162643961393634366636633734313531306165633463653436383636386631353263
+34323732643930613832353233653138316233333034336235393661373836383262656364343733
+66336233363263336431353461666563666233313862326362353366343937633133373165346265
+37373435393163336633336334346631656534616638336539303933323030613730623363663536
+35653064653261386433356437666337363363303961333337653030323033646230373763306336
+39393733323266666366383332633630333866313762613739326561666264313161653733383164
+61326637633538326563303133333938356231363437376162633862636465666339363031333061
+65363831336463383865356562663435353331323061656663326536663137623966666263643965
+38393561336361393964316336303662636639376562656431663862363331393831333235643430
+66653665303761393535313332663166653661653663356333363936616137393966366232383664
+63346139393062626135643738336261303263306635636232663163666262303638356562646334
+35386638343366313463643938626131393032303031316666393333356334626638343564373535
+34613065376264313339353737366136303362633039326233653164363539663936643036396138
+323863376464393638646637636332623839
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar02-u30/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar02-u30/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..bdf6eb2047633a9516b98aa08bc2adb4cb18513c
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar02-u30/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+35376339636131613436336432666164643235323565383130366366373264353935663239313963
+3238393833646634366434653565383433323239303039350a633930303463663463393834633539
+38313534646261393436366233653137643765373262643764666231333632326536396138373238
+3931363133646666370a373463653935376434623133376339366133306361376662643763396231
+65343337653831373734623561623266333334326634313563623263346663643964633439313562
+36633434643631313161616237306364396133393131336136346261323732303532626338653561
+35346131646538336639633237343131323464633434666365343130373564613236343564353162
+63376337663065373966373433613332333739386263363561643334323534306663623431663961
+35376332326264363136306530303065623662623166666465653264616237373865643836366463
+64333537393933323832323963653930303730356362613462306138343764653732306534386635
+30616266396163636332353634306332363731646663353031343132376333613630636161333763
+66633839373630323133643762353265376132616364316233653466313635393464353537323835
+33626562323833373437353133323037356137663037636430333431346237396436656566343437
+34313666626437666262643061636361336638646362323562306435303538343064396362623465
+32313530306632383431326164323262356139626466396664626634356437623439323534383862
+39356362303036626366346338393331343539393437336536353363613961643166303264616335
+39636134326134343434653338663638663532323737646163613430613634343162363239633131
+32613265356438386132636230313366376264376239306634666531353462633138663566636231
+66343435636663376335393132626366323633636664303935326334373866306631326435313163
+65376364393364646665393138616461653831313066613730656139356664336363356537626161
+61386165333438366537303837373839623234653262643065353134353533363461336131376262
+61366539376337346435313266316434633263336137393430343662303339626638656233373035
+64653165336164303363663266666138306463613162323539316338346137333233303463653362
+63626332383734643836343962333363366438663635633137386463663739396134393035323139
+30356439343562363061373038343036363365663263353964323737656534343438356630343962
+65333138383664363835306565613835386239356634653735306334366230666234373930626132
+63336238333933366135316231313036373263636530656335363965653431633437353930373237
+64663566356132303339306336626535313161626164643930356336363234373931613230353131
+64333061306464633530636536306638363737333566643935646633313036616233366362363331
+61663239346435336537383437666238303363316438343732306636373264383937323837643035
+35313662623433313362663863623337353565373765313437323837623334393630343264636639
+37313330313031613965326563313937366463353635646566633466646439373738333231323232
+37386539643735326637653265303061373330396164653366623739636661646365633161613866
+32316232393565376135333933383239643931623365643864316536373339363735326266303663
+61306161386536383963363737373832666338663035383666333239626166353434666364336164
+64343766356463313832663864306366353466326535323935653439383734633833656235316264
+39323531613137353539626538343062323831383366333635396566643336303834353162363965
+39376265353366653238656537343361646365616536393533353036613862303761306362616636
+31356437666435623133346336373163613464376566353963343862363333346633326264306666
+37626239653765626634376135363532316663326330333236326538316566633764323166656662
+38393661656334363362336564303434366166623062333865356433373166333330663530343536
+65366435623534613131343535356163363634633931383964383732373464633638393134623238
+33653033313339376532346562326265636361626137323462393962623033376438363439353733
+66306564636435346430396164643562636537376536396162343537663635393137323765303537
+33633235346633386265376539653765613765306337323664643532383134656661306566623462
+34653665653962636532323861643565306136616433636335373737636166336263303935633562
+62376264346434313933653065313130626535656530653139303531373230303439353861336262
+33383562646637316639336636316334323536343765653632316432363032613938336336666265
+34613039653565383764303831383561623637323261396439306461396437336238616533343230
+38363133326233373037316233616561363061383134373461623036633830306532636439646131
+36326661303461633335343633303932643866613236346266353665333136643561616430333363
+31393763633236303262613933643238653733393838356362656132333338363330636131663963
+65613961633139316462323863336532326332366261396562353563383862383633646366643662
+65643139306366643563393366366661663937616234313662646664336365393338333333336566
+34666365643339643633663034636265653537666632316336313839653738636564333134613739
+31336666633463306139643239396335326139663139363337666334306631393130343233303364
+34336161323037316132386239623732626438316363616230366438356431336165613636646438
+34666663326630363437653937323461303461343836636632313563626265633731383764303031
+37376331353664383035373262306639393739356666323633646666333339303764396436343862
+35393466336466396538653133653864396134353765663863663537346637333131353364366662
+33363737623638623463396632356635366330666339343738356464633733376265346666666661
+62653962393135373333326264656266373463386266383764656164636565323661343531383437
+33373733633262653836303064363134623739393634363935303764633238653166396263376339
+35353731636539643736343564646465646133613835666432313139333931633964333832643137
+39323133376162393332303737386633343963636635616539633064663562363732336434623136
+33623137303639616635393336366139653334386366643136303765396562633736333633626332
+64306330363031626636636338303662616662316364386434363034633935306438313133396161
+62386637343636373032613866316132643562326235313464363762383536373531666330616236
+30666536313466316139383031386432386462353062303630666232613238613730646432613661
+38623062663032613431663930646632633734653761346565346138303434366564363266356539
+31396361316164363937336463346131303933383263633166343330313934333038313861633862
+31336632373335643237643438653233386137353661333264653837363834313366386135633934
+31653835343535303332313937623961323633656633643133656436323737303839393366646438
+38656466353638643434386135313334323464343930346638396533333464393463306532373636
+36346538643535333432653266326662343131626239343231653131333533346665326435346666
+30323365616230303862343633633739383766366638383066353463313065383536353932613532
+33326561653064353131643539643735656462646235663863366661363761393465323937373434
+39613263333233393162613566653030626434343461313864656331663663626130356131353637
+34653139396433356539386535656130383265323562393238343565636330393661656139376665
+31623965616234303237333564326135643463323835313866336261333161366562663166623631
+36636339643639656666346265666338376663313937646261386232383766643631663662616130
+63393461333061663737623566613838643938393665616263646130623662353537633433623233
+34343135363161613164383061303166643934346436303062356237356532656231346262343432
+32663136326235336461343730646262353963356236376235396331313132336263616665353365
+39376164373632303533616465646363313863336233326233326331383730333333396333666564
+38656632306330353938313363656264663165303536363530306432646430653536383339353262
+65323633363062336565626535626466336562376663636632316163303964666634666436363961
+32633939303962633134633039353236653566353437313437663534616131313638663463393066
+36396134336262643239386637326130353539626363356635616264333462393861353136613561
+66323565653434303563653539613164303431323666653339316233666338346137653134653138
+37373137656538663762313764343632333264636233373266306366373130643238373234393630
+37646234303339666663626462623761316433333136373566303631393335663432643532366537
+64363463396266303062303461623430636335643232326237633136353961653033623839383736
+39636638316338316334316265396336333663343764636434323338356638646636333465363961
+39633233336336646565303837393363333732316331636666303864633365306634306465623832
+32646638636138623863626431616235623739326136626130333631336335663437633461396239
+61343835623232373131316534313462326537383338333238373837316431363563306233393032
+35626434326132366463326637653334653837363338323339303966373135646330313862303864
+31623339333233633530336538363766373031313865656364383136363262323636336564333931
+66353131323262306533366138386535656536356464303161656536346161616266373335316362
+39313934366137663434626262643233336661373336386634376231626361333838393532363334
+65646132633362336238303432353762356264626438646135303133626331376332653530373034
+61636637383830623464396561623437326636376264323831303133376264633162393264316363
+32323734396237353530383935616561653064373433366133663162393965303830656533393330
+35323661623937393265333036663038653561393264323635653062303934613730396335393566
+32313138646133373437633238343365353738613436343361363164393837616163633339396134
+333130653835366131303032383365333265
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar02-u32/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar02-u32/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..44ece5c7e40b7d813c83c4ed8457a35f363b84ac
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar02-u32/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+63633636326433653962323031633931313634393764303361336133666363653065393365306561
+6430326261356132386164656634313864356665653631330a393864353834666233633632386565
+62366630323331336633353735356133313035663635623161336463633964356238356533653836
+3930366330323362620a303432633862303933393133393036326139393139303164393935623731
+31666464633534626163643532333137313337303333376436346139623335343732643332656365
+62663565623365663235666233366362376162623862613036313433336339616334646332373032
+63373863353166336237373436326161393831613336356264306331373037366133316135346536
+31346334313461656666646435343366306263376262363265326330613234613839333730373733
+35383938366535616665383163313965376138373034333831313265616166616535633536373934
+65646263313063396365353861393237346636653330353162313638306132353231333938613232
+65353139326336626639353437383862313734656630383737316235333264386135646233313834
+61376436323732303638623238623433313235626630666135313632626366373839323265386562
+32336237653739333131333233303430346537396237313332303238633139356366666332653266
+63313963613730306331346665353735313365643261346234636631666137613265613361613530
+32663463313632653936343139383938383036356439646137393633633939303966356561313937
+65646435616437666335646439636634383865366236353138363362333136356663336530653130
+66633735396535383063313338363531623733626336333531646565663439663538313837303130
+31636338646137636534636361306433383131353030393038366430333163643730613362363665
+30343733333831333335663831633936623166643465656430656433383839653262656464633363
+63323466363133666332666131663133623435383465373234333465323637363366303336356634
+61363632323736653130643965643530376331323261636233326238653931616165663539346665
+36333139663862393832616263323063373039616435336435393239646532386332383863616364
+38353939656532363164666330376461393435336531356266323731616634356662303962313362
+39633531656432643637353134333032643163346162613037343266633738623265313335633661
+34363761643733396262633161356264333962303138633532373135393339643531393335333937
+34313665633465616239323361326265313834353437643931313464633633333666336334333333
+39393530636332633434353333383539623235303832363137666563616437663532356339336461
+64653931333233613831653761636337386664666539366232353061393132313130353933363837
+32613363393734306464393631306438353832343933383466396430313736616663313434336433
+65346636313335393266633064376166643338343066653764343538326230383462373662613536
+32313262306561353534323662636531356161396163353765666431356338323737616462383163
+35333730666364343534373637376561326362343530366236626530376466346531363134643731
+65326263373031336233646466643430633162363634356634333535393164356564373965616265
+63366538313838373131613833373735396234383037393563636434396532303730646131636530
+64343735366365396362326336626337663439363231356361656561316638623462616262353730
+32363663666138633937313037333131353961653735376363333266623833656638626539373031
+33646135346233633231356363646538333536383766623963323932643331633964613834633937
+38646631653266636631333732306332626361346134346633366334306135633530396632323065
+33303838346264316233306532363364363564643035313433356535376439616434373639623335
+33393136346664373466643163643639373135633063316232386564663764663764346565333930
+61613437623637646138373039643436336564363066373163613965366533326638386234323164
+38616364336161336632373037343333313736373939313431656662653234383563386631393563
+34633436653463666336333632386435363766616235383137383137303636653666616632313866
+64353662346161353332323261393436303561323639623662383264613966376535343131346266
+37656466313463366136356365333233393530353833356562656466646430616437393336386263
+63383337333038666535353136356265663361656565376463396134323331653265396363373361
+32623936393237356535323539333732356539343664306464303861663834373965306134396531
+61333235303964383131333065653638333332616639373064346132316230363937366639316365
+31306631373035333964613762396532353531383833633965333363656534306331353234306533
+66353232346430366135386463616433393030633065356335326438383664306465393531613831
+38613035363865636138346261333133646263373135613133383166303262326636326330343832
+32343739383338366361316431363963356639653136616362316636653962663264663938323861
+39613764663466323665643837323666323661363533363838656263366536643831336162633035
+61346666333561343265356366326336373136663130333335343366653665396465313335346135
+65376662373334316531656464386134323966353335393133303762353435633636383739643139
+35333332386532356330616262323839363862376335336537383261663331656637363961366433
+66646433636630626163666264313136326139306266373330613236376133643232343662616532
+30653839643337363333643537383332346233613565323432643063663133643833613538626334
+65386161636264303833363832633534623633383139643266323331313062666262373938366266
+62376236613234656239356362353365346663333266343035303038623662323461346662616237
+63323263646533626131366465373236396331336330333165333333633965383461646337366634
+32323839313764343238356465356630633530366563393832646435363939396534613462313663
+30646433343532373435666530643739643662373735363666653032373062653532313863316162
+31626562666163633039366330336164363061306636303631393831363037333739383566626264
+34303762343031643638386437353737656334653366396338356563636337616262373730396433
+30373935653962643437363030623338663137663831626434323661636639646364393636363738
+30626136623765623735373638626666653465623037363766633861656563653530303935636466
+63383938636531373862623635353430643963613339633561386234303630616166613132663432
+61363235396163393232356430346165303963363239393464396537376565363734643538633633
+37386533646562333066383337656434353031663238643531623861373032393934323666626639
+61316532636164626266326265386432643665343036303263333563623165623839333836323335
+66323761633962656361393864346333626139363566323261323833333631646538326532643739
+37626264396234393630636563316538366533343030343438303635643736633865316466336362
+30613864656335356430663464643231353534646334326138653464323534366233343562303666
+63663164356133386332363739656330656266336161626462613638306635353464356439356465
+39623035356137663764386437663639666638653834306530373331323730363430616639363466
+39306166653535323766366264653963613738386661306265323038616662323765386135366364
+65356130653736393436666165333532656662363236343637626131336263656335383738386639
+35643362353036393338303264613664663834623762396464333931313939316134373135363565
+35653031623935663737343532303762363064356433376634623734353438333965383666643262
+63373464643036306238623438343739633836323433363535303035653636343938323066643034
+34316330343161353965633636643366633863643232623130626164633838316330313930393030
+39303431313065303965333665383838653333636232613236363764306363633735383536363536
+65383233393835313862646135336164326230343765336462393430643465653333353464653932
+39313866643839373062616464383661636332616661653935353232363461383062356234363937
+62363363376134306262613764333563646135303664336137663536356465656365636637376437
+31376631663930386636383666393136313937396635623338646136376439636166333866636365
+63623838643164626661363231316661613263323139613662313338393062323339303330396532
+39666137656163383466333964636630396632666639366536313634613834626331663664346162
+34336266326437386437336234323736366466343961633530643231323366363661613335336137
+32376438666261643764613930326533313361343833346130376634326638386332313461313164
+33373130373439396634616638626438623238626665333261336234656130613965356239653639
+39373234316538386666373931393635663831643436383838393030326661376335393861646331
+39663330643534386531663930353063396238663934633536323562643831333866343565346336
+32323639326439323362333166343663313130323665313135313132323638653463306433323235
+66613539396561363631306530353839333239626261623330316536653832643732643362353862
+61316165663535333436316133313136326666343931346633393863376237333433396332363039
+66326661343931643864343765346230623335633239373331653366613662333738333438313733
+30636264366666353765386238383236393134663339666230303732366261396639323563663835
+39346562333339333034393866346161323235663935326261356636363134356232356565393832
+34613838333734363431646664333939353534386166376633313733376664653037646561393434
+63303138656466616234366262663866626133376637653931316232623730356435623362366362
+31306365346235316162383834633563333536313964326262353064373564313938366635343164
+37306163636462373335663263316637613461363734373133343035323766633265306634366162
+65633731346139613836643537366131363264366261663438653765333234623534373532336534
+61633334653434613539356437336638373532346134316662356664383835363332363962386461
+333639326537383461623962636130663766
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar04-u2/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar04-u2/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..75f4771e24441d931b61110eb13259bfde616a8f
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar04-u2/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+62636433636362356338303963393535626164323836346431626430396362623531346230303533
+3863323833386261383438303966326466386632356233380a643530343565653961343561363934
+61636366323964616464303430653462633263653036653031343062343063653535663733343566
+3731373763666264390a623462313566663666353362643236393361663030643033326637306334
+36653036346261646536656330303063646439336231663465633239663363623936646465313230
+33376431383839316465333932323666613232633935333465656338393766306437303434356162
+32363462636162336263633866373862663734663565393736373834333831336331333833653135
+33343565643365636336313663363938336263636661366661646634313164316266383935343734
+35343034373739626532663535643834316466363264643632313930303335626639646534346635
+37333866353835646265366164663134356331383531643462343965373165636331616561326266
+36376537303964373834643535306632623635303332333730343432653735363230666634633165
+35376133646233663835383365633861343131386438643963313063326137383439646561646539
+66376633306631653234653763333531653936336139363733656235336335323239363363633332
+63346566653532366461636133366364653566316262663534663533313337616561633462323663
+32346135613063313532326666336137653935613663643739626562323833626362326561666362
+38356562646334386236613630643365393235666434376363396134613261333334396664613562
+31383235373366306665623265663432323265666539326462623037343630303135303863356238
+33626231353164646337313638643064313565646437343261396335636162663930633438616535
+39353066383334353935373032373932633231306339396365666562373665643138623361346531
+64303965373736326232353633663637343333663138373165666638636261623261646537323630
+38636361303831303034636261626463323162393237353233343137376639376438643462356538
+63396537323336616335366638623064663035626238356165333765376336613133373937376232
+33323336623732383937613237666236653439303530393835363033643435623639316637623237
+34633963656265643162623337343665303839353137326562613736383963333136336534353665
+37346333333034656637616432303062613237646534636633323632336633366537663837333431
+39386361346339616163616666346166356664356263336435373961353761346431373064623633
+66346436623831316564323031303462306430646161303434343339363233356432373864303631
+65303534616430306434633134633738613738653637366162656565313266376533373839376431
+32623361333733393363376464666662363635333934353334343239333665356263356531663939
+64636266303431636661336430386438326163386538323336666632396461633331393063626433
+66366532333032333232663936613039373731613132306536313834623638616562346561356162
+30616136633936313064393036356631303062393534616237336261383665326430346166623138
+39366266623239383061336361616633363466373237386138393731323564363465656531306131
+65666564643738613033363735613365326666643834383735666466633735323731383962666164
+38373761353665613661336464643738353638363239393663653230393861636538306464626338
+38383139343132333138383232633261613038343563376532383162346562626332303162643065
+65316461343462333539333961326662363662636162623635616530323332306630383963373931
+39346331393939323366643536303663303864313133373536316661333263316661633537633439
+65653934376663653264386339366131363765633936336331326566333232373634653734663839
+32633739616365396535346266653164376535383137386135383834646331646335396335393864
+62653237376431336162306631343235363363636166343132633334633532313938373562316239
+64333766326361356462373534616532396232366363613139646166663936666238626336313063
+32623934343633373763313830343931333831353434616130366661383864376366626531336537
+38356566643039326566346266313832343063633334383162336263396339363339386466376239
+34316365323961633737383665356637353237336564383731616330613431346166326238333431
+30636462333364616430663237366337613638666665303964343865353635313465396163643937
+66343264363336376132393365306234316238336436323639373064373134306235386230636364
+36663936646662366163653262353535613432623939373535306339666339313239373864316239
+30323032363834393338656664303036666562336466356433396663373934373332343636306531
+32646436323466663362653931616261666133626334373233626233306430373062636331316462
+32343137363963333339373234613664616535636439353533303964626565313030636363363632
+33346335646164353663616265376337616366396161643132663964646538653237396536663035
+35663636353934633234393931373337616333373433666531656336353764626565303034393234
+61656162303930353337373939313236663462313833383866363537393233303432663265366435
+64353633396361366136663130653030623233393062663534333031386165643738616266366236
+34613132663537383262616336613964316237643364396665353561303763386631316436313765
+30636333323436303736383933326261373061646163346637346633363435623731326538663534
+33613439333565316434386231623231623162326663646365363434643830363234383532633763
+63356661643763386635656335393235653631663166396662396363303966663336613266626461
+61646435653333363634336262633566653638313938393161306231343761636238323936633539
+37393961353839663539623339393761323264623136336162336238626262336137643265666135
+62333738363561313565623861323638633764633030386531653732656635313639373530306435
+62623034336438343833346336643939326261323833653037316237633731656561656136326430
+64653631613462346533663534386661373733633464623633353934626639623364643366323033
+64383435323932633834333365653436353530623738613863323762376565323633643739633030
+34343063663039653530333164346239326462623137343364323135356138393433653437353866
+66343436656532343833373137623238393031633136653530363332616537616131626532663830
+34393033373866633765326335333033316461343236646565643463633366363331633664653233
+39663366336265383935363631316537623362633132656430353465643430326563623836383439
+38316562303763643733653065313132646637656139316664383864383039376162353035666332
+61616636653532333161363931333430303866366536326533336638353433356137626664366466
+64363839646362346237353536353632373665333563323931663634666337303736323833613135
+65333365323961386133373237343634626266636661346566393562386236393063663863636165
+36663839626565343666373939346532613035376263656636663938346361353033346564336137
+35313231613263616234643364663533643032303339396239333433623361643362356638663632
+62313530363137313961313130356337646562383065313866623534653631333665386163316638
+64393033633462363433623338323062636539303731386236313765363339373035633730663365
+64373866373937633366653133346432363639353832363532373161306163363130643139363534
+33396437633565643534376266383861336233653435383435396338633061633365316161356661
+36363439643266613261613438393462656361666163363264383632343930386563313937373937
+31356633646461346335333839633265663562306639373761653130643534666230306433616565
+38643762633134313061663661396130333566613737653736623062343133333464373030333430
+34386165396265383833656335636630303961643536626434393961646135653937356633303437
+31386532383163626435633238303063666134383034656332643066396661626566303031643366
+63653635396633323462396465326264346331313861643562663761333866363339366138356136
+39616264393637613230643061646163323931383662663138656430316166363334613936613736
+32336163346262626533626235383132373239323634666631613333326336373032363630343464
+37666433373461313036613162666636323433613632643134383464633438376539633062636532
+65636632333833396435623138353366643163343565343764373263643931363862373032613038
+66666231623961326335653030346132666161376465323236656166363532323437313261343830
+34363935646438323033376534656439306139336232393935343830643931303137663632636161
+37626439303737663333616166333063303835636131363630353739376464616433626131396661
+66396337366664393030626235616435346235623362653132613832326564373565646461303234
+62663439313236616232333837633832663862643666326263613539363564663435653834376234
+39656664393333313933393836356531383264393666366130663737636338393334623532646337
+34613138303335393536613436366362653635383539623939363330653033306661656439313362
+36663163623731333863376535653834386566643135326239373062653231343964356661326163
+61323034343731306663383135396136353863386131393430353065623332363661336534626533
+32636333623837663439383763343063316133316564333261386335666138633139666438653562
+38333638393531643162333766383933656139666438366234663839343736623638303832353836
+65613561646235333739303732363963623161343363636161623932653361616165646337393563
+38383832653361323166316339663830363932653364636363393937613532616439616634663835
+30623636633931336666306530613439306338386566663661353362663830623761356464393136
+66663032363239326239646234306362653239643430336463626465636538363439386137306330
+66366631333234313565623630643239323837343735323161366436383433323138666162656634
+62393461613765396263313339393131633738333231663137663433636134633433333662373633
+313661656662353232316533643032653661
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar04-u4/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar04-u4/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..da9168d97e9c1f9580061eb5e883d5083e6e1055
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar04-u4/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+31643364643932373130643763373836386662386436373637376266663334373939666236333238
+6332393336386332653834316235303638666663626264380a303931626636323863396538376130
+34323337646636393337633366336530363430353864623331353665393964646632653664313039
+3361663032393266610a303561363930323463616262323865363438383261303338396334636664
+63353438663437343137643230616439316566393166316165356435396632336664313139353334
+30376338646663346130643861373639656663373932393161313633333133356362653764393431
+37353164353139613536626138383338386532663264656662336666303165383838666463386261
+36613737376136666535643530626639656265343364653637613333646536653038386666633134
+61616663663131323738643966646231613963303037326637373531643531656232316661663962
+62393733316635653138616161323336303236666636383664633562623235666632616464353637
+36333636663133663662373937373764646336353361656361343231326139386263653338663033
+38356264373038353561393464633435303364383539653731366361323063353334643663356535
+31386631616464333035643236386362323331643835653962356462623531353536343939396130
+31643262303934396563343337353635353738353830363439343163356161663830313037333836
+35343933643438323339643562643463366138376437613734383037363164313534363932346638
+38346138313334386465633230336238653833323030323131343433633664396261393263363462
+31373536653330356537333561376166316664333565306165646662616565333933653435383436
+33303861333664363065383566323832353634343836376335643965303130383563636235623334
+63643463353862626237333264326563393732616332623238336263653031363130313735396638
+35393436393363643637616536623061616665333230666532326139646534663762393936326564
+38393662353362653635613962343564636565633435616139636230336364653134363765666463
+38313232633662633933383337623536623361396130623662353566373436343433653663646534
+39636639616664623365653066393762356439383633373931396537313532653533616233636566
+66366562646230666561313362353961383832313461323431363332663263656663616430383939
+32356339616639643863646330366231613836303664363633383731393239393234616331353738
+61633335383064643261303636643961616131326530626162633730373334636234343736396237
+62386537316236613434613034303733616630313039666661343432353733393531623639376532
+36653462373664343864633530343739373035626537376663353630323234383866613165643766
+36623534323833643961373265646332636634396164376537623638636663333437386138326237
+64396166663833623566613239363166363461383065663563336137313232326435313731316634
+38383365323539643362623434383662386435306464636363343365623963393337633463336231
+35373963383564376338303435633138613161656435306366393630306236343064393939383037
+33343939656161363436313432363234613933356634623762303461376631323133353031316461
+63323134333464303835313232303231393263656234316132613030353037336639623264333566
+64333166373864633663363466353566633364626464626461363230316433326365666462383361
+36663364313333303737646264663264623439303338666636613065653665623137366266623833
+62386331626165306632633431353264353833343935623131393066666130636532366633346332
+35633930623932633639343430366164363766623162313162316630646634666463333938376531
+37313435353539643836383864393836636565663561303766616236616563303630623937303330
+61366261373930306237613563326239373732306365343863376534323964356631646565613763
+36666134363266623630663037373833323137333238343730333431663236393166623764356537
+35383163343665386539323632333530663439663134366531653039316462383239633932626665
+34363131643937613938623937323339383838383936393636653164326439623465386537386363
+36663934376664383937626265313334333863393963656461633661343732633637623336613665
+66646333666266633335396161656465343337383337366261306261313835616331373064343436
+31633261653561643138613262346562356661643936643432313831383533633366616333663163
+64316264363032353030343964313331646234356333346363643465393866333536373730663961
+39303932653063333635633335636638316333323339656563313563356535363136613363343832
+63306139646566663238353061616237313934643564663636623437326364343661386239366134
+35376334653833396430333739343133373738663365356531363134316238306535316663613362
+62636536666237623131313636633663333961643231626432313130613961353566373863633938
+32383131646561393563363337666432353334613333313966656636656664343465326230376430
+30323261333735363435636137376239616538323335623430643331623039633138343036393461
+31386662613763623864623636633435656263656135373030373337666337356433326161646530
+30353262373339316361623330623330643138346130623337636538663334656137306434623866
+64616632396632323632363665366330373864386164346238666466383234353333373431643334
+32316633363930633263353830326134663036646536623264386536656430636630363336316166
+34363261323936306162343733343963623333346430386566343430346130616333346561653765
+32623335663630393534303236653138643234306533663434323239633833303130363235333031
+35653230376137663462363239326166623230353738356163636365383363363135326234663766
+31653163363063343939666634633231383432333263316633663136616333353539396432376631
+35666236393965366334303230633161616262636533326561663233643934313262363835313134
+61636266613965353138353865356262303331316131323733376638396135303865336566643163
+61393634376565353762616462356635333863323666363862643138353935353438666339346663
+30313133376333356634666332373963656133356238653530326636303535646630656466613039
+31656166373237383936323663663961346432366135326136366161316535643238323261323661
+31633230336263663137616638316434303562383532343730343836326130313631336333363063
+62336439633834313936623761393038376663303539366665313531613435383037663132386164
+37663265323736356138643464386131316239393134626139623431653264336361663532356431
+66616663646262356666336665616438626166643435663434303731656464383539333461353264
+36623239393630326461313035363465613634373065383434333032623933626637313739356130
+33363465663639653738316436323266616231313737646431643563633637346533343031373230
+31303231653336653731333135316666323063373465366534343162363135303131623933386461
+37356636313734323263383733633634336164613634383432303661613463373861656434643530
+62666166616431323532623961356439636532656161636335623764353338303032333365326335
+33653062623331636430326662316236646334343535393963666139353063363665373865303138
+37373263656238626666336639326163336238313731346361323062623534373664386637306431
+32623335666363393639393338356366313435623838356163366362316265363636636161383533
+32633239353763363838353639666563626131373535633239666364666665316461393633656464
+30323730393366346266346161636637353731626265366365393035643333653566353664386630
+61326137373532353865623436663835353361643661646538303063323438343132643261333133
+65303338613261343930323062366466303366363338353463373637376462306636646231613638
+36643536356533636265643132336237346531643730633161656132656164376663313563356334
+32656438393061653239363566323832396331343037356461336635663432653235333063653366
+64613539633339333035613336336334636132383265613337303039643135386665356562643030
+30646232316232383938613263383731613831383839383834346133383462326564336138656365
+37373231303038343133363839333562616639393236346538323537393462653834643566653131
+64663932363463303362613037303231663235353964346466613466633235386461313534613463
+39383437653336396465346330353338373534373065626634383962336536343730646231636130
+36353338656632316163343933386331306134383134313438646437643438643462616333343265
+36383961313264333934313133626435633433343935366135633463303139386561613238623031
+38613662626630626232666634633962656631303534613561323335633030623365323731313832
+37633231333535343463623866393634376637656138663331323732383031623834303766313934
+33303465666662666162636662653061393038663430323361303063613164613838616134623961
+62336134656430613336313032373436643337626139336332363239346165666661343066336137
+66336530663863643935626233363033363138306134336635373438623535633762313762323237
+38656661323339323662333130333539643032663736383239653438376265636130623031323837
+30623430313034323134363638643739653432356337643737333235303561643361343737623066
+35623631623766623532343134383265373431646333346533353738353131396635393731313831
+65643266353961323133623338363332616261383635373634323438616266643362613036353935
+63656135333663636265313431376164383932383638376634646236326666396439353366616631
+31626466343866306463386336636433356238653464376239383465666232323037623861636631
+31313234663862613934613964613466633436626238626161393535643435623736643438623132
+37353234653430633635653462653534616266636234633237653464396532366437303830656230
+30393732393630316364636230613665313964623863633937636331646436326366613864626133
+63376437646438373263356165363837343939663932393836383831363064313236666431393632
+636461656534613864363635646664386634
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar04-u6/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar04-u6/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..161dfe96fd08f792eccf20e03e7856e9f7159b9b
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar04-u6/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+66373332633535656631396536626636636262313232323839373766366239613835633033343237
+6163393531663637373030623339306366366230626162620a326434353763306333323133656232
+39623335363163666164613362353437656135623930376532323764643336306563663938623663
+6561396535663965370a396665343765646538363464376337396166613738306361656633623531
+64613633356132653636333333353837363730316666333433643136643932376130616361313463
+31346337663366613365666239333937393133376230323538663065303436343864363438353237
+32313431396230333761663030343264646465636562323761386336366135333062643965383864
+32363965346632393561626131323963333662356361643430653934393036613135356166303130
+64623037393861356230316535376336363661653235303063366339323933626536646166313732
+65336530643963376461316361316465666537373963336337346339346430653235356163333335
+65376539623430343364383433386339633439393065353766336230643339353133376437313232
+36636239353632366166333639663738323638646361353232666638656439663766303137616561
+62393238643365326330306662366630396532663433373137373664363866366561663161613961
+35623661623161363230326431646562306164646632333865376137346634633533633763333931
+32613433346138393235366335343332353732343330393334633639386266623531383661393639
+31373161343833373365353338306237386232666134613030333231623332636535326661343036
+32613336396436366632303339643935333132333134643764633062306266653137613434636466
+36396461333436303936613661323437616437316230616136313735306265313231306662346532
+63613766346462386531663831663166386532643035643936333130663734333630346261353566
+65326265653666323864333033343164313936653765616236303466376364636161636331353161
+33623965653063653362333932306337633936653537306237323664343739303365663161666633
+35306662656636343665626334666333396332393835316535303538376334633265326363353966
+64393336643061353537346430666665653966396338623264343263653835343766653362623633
+38626562643538343861613831376531383666323338343162393663633330643339313861663732
+30633832643536376230646337343036353463343438363764663264633165666537363030613839
+66376535623334346164623432333861663764636565653734396339633936626432306432653037
+65643437366565653663336533646234323038306139633639626535663637636438303232313263
+62613261366563383938333936323438666134343034663137633633393762336132356539323933
+37343930306365316138346465633062393965303861306430346431303739313430656530306639
+37656539353839626430363234623635333230613962626233323530663433663735316234383938
+31313530346138366536316332333533656335626235613033386639376530333337653738386535
+32343330623431353134356265386430636431323132636463383834363633653735653634633539
+64333032353436656136366136653366386633626437646330653161303835333437313236386536
+63613138383866353035386266626464626130633236386361646632613033663266333739343537
+31313763623064653364356164313562353964333235613437613466333964643538383533343166
+66363132663337646661313031356164336366333431653834343932326564653434383933383065
+37663761633035366135313831616236356166343038633336646136316137303265353062636637
+62383562343038353939393434356563393761363366343734626262393764333933366564336164
+30616666623530633732633431353334613334333835353135363130363434623835343365396138
+36343165616230303231353565353662666434623664643665326138393161383133386230313961
+65353539303862366130633435373166333064656635353138343865356333373262333236343537
+64353732663735393239353161303834346135303937656636323635306633633939313465396562
+35366230303833306234386631393431346131613065633662313864626434333063626563353864
+37323066386639626630666462663237313366366639653732653337626461633036363835356562
+37643134356464343961363935356339363736346564356663323537373163623638623662653761
+30366638316534396239306462616338383566386265616437346130393334636662396238326562
+34613331326138343539306161386165363438346266643962633433336534326166333335623362
+30376461353064646531346233633061613736663162616239396165326532633961313939623561
+34393837323335393637366138366662623239643939356430613632373132646162653761363138
+33356337663632353438316131343662363339363664643038363361333835633366623166313839
+30623635613562373335636161393036336464363835626361343439393836356633366134376438
+39306631356562666135353231346534343834343832643039636439623838373565643339333135
+65656133363566306566653130646438316333373838363132623537356536633435353034373031
+62316137393463656331656635623566376164303833626365323431373261313835623438343038
+32636362326263393064373337386666663036393835623965396261376166666565343533326139
+64323437366238343261633438343766616663363031663737623536336434363064346433326336
+65306236353237613631353130376134333330306538376432633839333439643262646637346436
+31336335613661663738363235313962323838393234333334323135613464363739376466663065
+38343233633364386563616561623438616236353034353736393235316661343561393934616461
+32386330303136333862316662366636353066343563333161373739373934383332383864336332
+61343761663465623566663466306266313530643663656564303731393436306165643038343333
+32316161316564373365333963333933393135323737623531333736346539613433376265663039
+30646364323930383532333938633833663232313030393338646138333131333664633164323235
+39323939376161306465653163373337383034393735663863323761653963663462323138353766
+37666362626635303766656161643964353438343735633664636537633864313763623764353263
+35366433373135616462363732613262363739363031626137646166363264303130663965376531
+33316631343330333664313531393364363264366263663033366666313163346437623133353962
+31346531303762366536623139323933393431636532636232323739613263636335346462613966
+38616231386438643836633330343763333334666163623363643630373635623538383530636466
+64663437643433323566393039396432616637656634656638613365343031646431616463376262
+30333732336162666630333262363930396261353336363134653733653863373966353934373838
+31373638366237616238326437393234366665363437646563336366626636633762393730386239
+61353764616632376164616265643937353935386435363030616438303336353235306231633266
+36666537306333383332613833383738376534366337653663373364343037616463316132323937
+36663361306236373235663038333965313761366261663330613737363833303363333833636463
+63356562653839383039333261373433376662623831666231353631383434326435646365343438
+32646238313362353937333534343139393231303432376563666635323730363863383966373164
+30353335396664396235323739386462303861376434663361393731316135376236303333656238
+61316665373032663232646636643263663037653438316632636439633533376330623531636630
+38363463333633383233356161386666613463383264353262653837643663353334303037656431
+32353137643639626133376432383562343065623839306636333466316632656263383535383237
+33323930366363346664636562623761356366356535646332653661363131353830616339363762
+38323362663563353063646265616435363936646336353436326339636433653635636364333139
+64623639356563646239376464663138643562313635383462613830623562366330623433643061
+34346139373734363332393938666539643135373530316136653335613066313666303666653839
+34343736636330353830666336646639656362626230366435306130636637613138313430303361
+34386466663162313135363861656166613839306437353131326135386532626137643038306439
+38323033356465363563346661613463626366326434626531643632383562653463653134313136
+38363230653363366538623930383530333431656431313061383238373762333830656164623062
+34343463346433386337356365346235353035336134343839666139633435386661316436366137
+30373166363739636632613334636537613832306263626663373037373836656538353939626364
+62323339303730636463656537333536366364343665646265373932646430393838386161393837
+37333639363538353138336663383530613737643933323566663265663461623734633766626362
+65356135313537386331326463393734323664643632656436663537366562393639623766386130
+35373338313939313963343035666432323566366235666637613565393632393862653562646333
+39376633643939396236356132326437633239646366393835316231626137623364366633333861
+66626465613864366436613234303462363534363961396437373731316261313233313666623635
+62373533633931303935326366343161303963366134366665386534366563326430613637633462
+32363965613534363631623663386165653664336235653634373036313734666435386666346334
+37396330623964633961333063613066613432353063313265633738303032633439616439383263
+39373565646437383838336534613739653064396138383063373464663863326533646461623266
+34316165653038316561313364353034303261303834623263643338663032396533643136343962
+35316531383666643736356666343366363433393862376532323335613631643732333361303866
+36346162316337613836636664646537383432383061333830666165303564306566366464666165
+62383634653230353130353663373631313461643039303966336666363635616639623537353962
+30626364633434303863306232613962613866623161373733666134393634313633336631626330
+303838306333326562373937316535656233
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar04-u8/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar04-u8/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..187c03a74934dd55ccc840746a703042f43ba85d
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn1-ar04-u8/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+32613530633231333330323835353063653264363439623137663535306461346137643834303865
+6332613234613538306664396539323632383633363234610a373737373539653166316566643338
+64333232383563383630646639626566373139643436336633313764303361663936333333633064
+3430363135653566360a633738623735333331333636336330633361353362383831356430303962
+31613435393336646639613038323164666636343466353261663731356566666564666662343766
+30306535623730343565303533656562323439653765323638396135666661373431313863333931
+38356265636330333066383237373639373564336533643638653631373666366137663063643038
+30626264366438653333303661333461626231616438346633343431383439613664343032616439
+39376364656464393137306537303935366632303835653136613834613438653631393232356131
+62643365383662306539326138633235666162316461343731346230353035396437343136346535
+33306631323830343230353433393065383730666664383034636230663930323139656263626636
+66373564303637653666316630643631303163326332656462393732316334336361383839396337
+64633433396431626464633562373938646361383762313431616135393566353736386636656339
+33373937613337303165323238333435653632343035306432626334616638366264306361393332
+30386164386236316131393063643233323437303139633635353234323233653538383430616263
+39653563356564313234353333393266626134303239366364333362363230343166373562353536
+36623939323763386366626532343838643162353535383031383130313666636264393230396136
+34366464323234393336303563616666333337633166343464316633663262383432303431366238
+34626138346631393435363061646539653239326561333130323530386664623235663535313862
+32613562626366306536353937393236326134653938303463653864326134613335303761666233
+62616632626339303033363963306664633031393634326332313037363536366165623533616537
+31363961306336356235383632633532646232363465373038323931333238666633613265666238
+66303132623762613933643532663930373731613164346337386232633466643038363565333638
+30343261633666303435333037333036616437653064343336346136313039363935363763376637
+61333065306534396435363866326236396538663631626431316366356163386134393833393437
+35336230626463343633333438393263383266616565393630373637663434313264366431613939
+33303339383465313936613863346637393861353666383961353234633763643962373132363034
+36656531633463343065306431376634356466666232386538313133636462306530646436663232
+61313863656533393936643662313835336532383031363132326665613332343638373662363237
+62613763613065363666306264313963336133333163333765646566336566623066316665636538
+65316339386230646338663435343332616666306430636365316439656464633239373437396131
+31613933373130356536336336633235643435356633366365383632623162313266373531666438
+37386337343865383661653234386262346631346361376261306566636564396337633136306665
+64396636323461646363323930643232353761343437646263313264663231343437663934646564
+63326130303133643466653437323934313565363264636639633435646539353339313037666661
+35303035333130383737363864306336313130366565323334396666363232323866333038663231
+32353465646536643032313034333139323938633264343863306138383334386333663836333464
+34363365316338383766643633613436303434343136626234313965633734636235666631636165
+30363663666136363865343137666439346138356337656432643438643235393134636236343638
+30303262656635326466363234386138393666346434313033316139386564333066653238663464
+39363939333264306264363664316534666232356666646630393537653831326465393430326139
+64353963333736393830353039323732363362626666633764323362356332303366623839663564
+61626364373238326536656432643633383638313531396437636335633936353438626633363761
+63373139633063316433633663653031396165366266613364366232343431376139333163363736
+38616337613335626134626237306463366134306235363563613337316235663639316637386364
+30366333316136326363643362326432393036346434383734313431663535623466343432653530
+65636331376232653365666339303165356634656563343135356233633931356438353563643435
+62383361326137373634623864656232646537336638373731313661366132326133663034383833
+62356236613264363234346266613132383539336339343331643666653661633134336232623835
+36396363306230633633313337646333623333386534643033346632336438383438613138663361
+34366161363639363766656665333635343466383838303933643464326230376134376361333635
+34616666333563333466663062633563353364636366383537303761663236333437346262336537
+37656430663835636131373532336634346162366130653438646533646666653535396463353732
+36386563366366666233386639323539636461383962353264636639623863386661633664336362
+38613765316631306665386266623433393563373635616165303064326164616436303264643264
+31613638633737643365333139336461653135366631663832663239376335653233626136343538
+35633233343039353465333032356533643730336330633532363966363132363662653536663937
+34643764373931313863383836353637626665663762646566356133613138303536323038363939
+66356531663138393566316565323436663336366530373039386631343738383530626636363364
+36656436666437346465393232363937303163663965643338376361396338383062313132623534
+64636431653634353865363734323739333062316131376531323962383931326333646337383334
+39373934323033646663646433323038633333373263633063376430326537656262383365636437
+39393538663339333034303965636164323030306663656634353438643730613936393735663963
+32663864376432383065633736653132643538333565383933393032373436653736333231663466
+62376434623831383664386130323565363864306565636466313362353236306137316337346365
+35643339303536623734373666623966643334633337333864316530396533633764323238643063
+30353863313235616434336234373366613034323735643131363961393765396438333334663362
+34633563363534643032653239663737373863393730643631346363616439616134316633636336
+30643437616164653661376632386664306431396138633036366339313466353339666431353865
+31646161363937613933396333643632306435313432383565366439646664306563666438613437
+31323433353563666238356464393837346663623735643866613135623138663165383337393865
+30316534313033333663626665333462323538356330316634656639326566613063393530313561
+33383038613866386238633661356233343164313831353630366163373831306532366464363234
+30383736373062383965376432633261656234343339363632653030383565366330643862613438
+63323138323136313834323766366234346464353837656466353236333430633431303536376531
+33386466653637336131386636353664336235663139623532303633353432356139303964313666
+35623363643733373832643938643939386165633535316164353735636233353336356162343862
+34396563653634613930636366343965343861636662663838366531393562333534666663633536
+39393563663137366339396632643465326136653463363766396337303662323637346266366133
+38653237623330333237363461393036376562666331396265613730646137336361616366636564
+31333238633935386262336331383665653034646133663066643031333765396530323433353765
+35333034366662636461316630653930326132623636353533386230636261643833343337663837
+36653863366464323138333634303863346663393834363166333061323537323364656665653137
+38376632316262623431333161633565663537373062636137666637323235323933646639343433
+34653936323834613764333962323836623833333532623366663231373934396235383966396465
+37616238653864313236343666353464393263306538383662336365383533643533383834363563
+63303961653835336638633237393330333335393765613130306134623932333435626333303031
+30653630386431623131346531643137616234386164653039623465313364613032303866343462
+64636337323232613864343963386539326237663934323165343063316433666161326565633533
+66613261376131366464653462643162383865386230306535316439393934613432623961363831
+36646261643533363736333963303335336335353362633035303661386563326236616564613132
+61666233326566646233633265303564626135323061333139303234646362623462326438396462
+61666232626636636665393832643130363534383034323932623963333366653532653162616530
+63383138626562333831666633663438653466656434326239333438623330323864313063663935
+62303039383565336339396335663163366563373437626434373661616531363331343562313237
+38353636313035646161353862333338623635376139363734643635623137393566336462306532
+35636261623031643838306433366336366166363461656162666239303736663432376633653038
+30653064313532663735323138633130623162383031643266663764396464313435373131626665
+34336632356464333632366635633135663336346533666561313733613035643261313039316466
+35383661336333663331636232346536356262306636323834613365653836343562373634313035
+64363139633166323538346132326334373561363839306666316139386631306366623539666539
+33343433613833393633613430373137333761393133356165653835313139636434366435316538
+66383563363638623238373565336262356333613430303431346631626531326164353961643335
+32323063363665306432376235646335626430326166383938393432646364393565316539303638
+35316633326563326661643231366562323339636165376431373734353763666366313562373264
+36373561323862663439666165323534373332613436376661623039313734343334333730376634
+663065306231306563346563626465643762
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar02-u21/etc/luks-keys/dev-md127 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar02-u21/etc/luks-keys/dev-md127
new file mode 100644
index 0000000000000000000000000000000000000000..ab208e3373e41c5e9061a0957dc7538793f094cf
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar02-u21/etc/luks-keys/dev-md127
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+66653939613235356334663939353538633830376638313435346463326534353634656366643161
+3136613535643261666231316139326162373965663136640a626637303331646238623130336132
+39323732393133313733343262623033396238623263626164366661353535336463623661373762
+3661343830386439350a623061623630333332346537396431396338333062323436373833363263
+34366337353934313663386464386438303633623632376634303564326138393334393631353238
+65626265313266333434633333363333656362366230653438376331383964633566613964336638
+66663333363662326634376635336135653633386566663134356661343335326364353065646166
+66346264346234396432333333353738356663363964366139646239353133643937393663653864
+34353764623762636132376633376265663636633765393737333663636635623130616463353665
+65343531656564643865376462363036336162346566656237633333383833396630646135663837
+36363136336466663665346130363034316337653232623637646338656661613537323665626362
+65393162303532393265363638333236646437646337633163323166326235373230306463323563
+39666338383964616338336232383434343337613062383866636462393165373362633661306662
+31636337356133343431363737653637383335386365376635306633353161383664633935656532
+39633166336566656666633232336331323132356462316335613265323233366665646638613232
+31343031613335316137666632336335393562396131323065306635336463653638323463313733
+62633465396132303732383763376562623235376462313662363561313633306337353164643338
+30363338383062626435393039336361623633396236306662303437336334393334656439373964
+30353565633331343962363430346331313831363762643339363865336363306631646537393032
+62353261626239616237666339643064353732633834313839373136653732363261613865343435
+35363439333932393562323936626532393061333138303161356564653163613937333434386134
+36636334383230373339376663396465666135333339666130646237343162643735306161353137
+61333536333562363363323565643639396165653339393938373062663164383939323836646263
+62623037656634626334303332656338613237643232396239343762396139316333623665333962
+35323335623364346237353733313732326435323939313334346138353435643730386338373864
+39643633316133346132353435653137623161663133306164383939613564393833373530343866
+65663061363233643230636531343961663931626166343236336439626535653236303761653161
+66643766333932663938396331353738393234346232346237656635323030643065346239613434
+62646535356466613338663133666233666633373233306132353031393761303935346662613065
+34396434376632366337323433613563666465336430633932613630656230303131613539313561
+35383131643234626531306231646134326330613536333334373836363463643336346163656135
+38336331656338376632613662666363356363373434323664313766633661663831626530616438
+32656634363930326332376630313738303363636463666263663636373430373064396662313634
+35353761616133346538326537386630373334363763313938326538393662353465333230656531
+61383230353863386161633534633264343031353631353935643534613535313737646266313939
+36373964623830373432653035623931383931636435313565613031373934636435366236346433
+37313938343234303030363638623865383865363633663461303738646333326631333039356363
+39616636653963356363366134613037666235633036303032393864333632316239633733393463
+62613037623763343761646631356433306133633930663934613039393064363266343632356132
+31383037363836666336343037353861343532343434333934346265346633396134383037353761
+61623539353433643964633466343534643362353462623834613038653938356633666466663563
+62623064363465646631316633313431323765356531373064363338373531393435356533316636
+31363638323831366262613430323964666465393066333861306561393465383439376338396439
+37626135356366396362626462653161303737623863623563333830323835653730646638303035
+64333832613833666235623338323761316338343538303266336663366562623530373266336232
+31626166653063373337303833633230383161643965623366623135633531363561626463363161
+34353437316436333663336639663536333539623366636561643933653065613231336438653535
+36303263393430306131633236333335303133626330303762353965636137333938613037323032
+35323235353466643663643931323639323165313863333431353661616165613765346235323565
+63623562363661643963343334373230366139396439646239663665633534643139636632363238
+38653463636435663138626232656631346263336262356630343261616665363137353739623633
+35666430313131306163396564643834316137623233303632383964653936396462346439396131
+66373666613064306134316335383733393133393066336437353866393939666135653462306239
+33376336356430343137626466616336376561366466313736393837356638646466373637653031
+30633366363565366134353937333930636334313336323434393863653632613237333932633735
+31343266646162363939653661366364343764666661653566613064343437323762616535346137
+33643466653163623532376365346164623665383164343135373235356433626133643338356266
+31343239643134383534666131613262663637353765663161623338666633346532633564653464
+35393936366138306235373231396331303936323566393239653462393339623038323464373033
+66376164653131303036376462343831613166636263333039646137626436316666333365383966
+34616665653464343136373861336261333366313161386266626332336336633139666663623832
+38346466386237623163626635363438656333343562336261613962636562666333363436653235
+31356361393135343434303764323732303662326338393461363362393731306236313938373932
+61363139353639613134663265363534616135643437623037333365326530333962346265316661
+37333837373561623461383032316464613339336539323332393865636431653132386534366534
+30336536636335613966346462643938633037633234343834303665653639373539346531626362
+62373935366230633033663639666630383536356461613932366466643865303235323635376231
+37666464383137373434363831386233316639656435663062396636313136666439366164373566
+30343262366234383861393165656239386563366433623363623065326165306637636363383436
+65313330303932396462626630613333303236396433613964643632323462363135343238393434
+31623866623230346436303863633435643430303337396262623132333265343330623436633561
+34616538303635383565343864313939323234306133626338393039313038363134346265663834
+32383137326333343038383139356138616238346135326164326562616662663365373632336364
+65663933383361643863336230383734616237313239663138313331373139386239326437373834
+34326630373163333538646639383064376635303636373433623465323531373665633237303736
+61616361396136656636333139366532373565626534663334353364353732653265356662663838
+38346630616336313063353537306335636562666362646566316430356664363533376538393836
+64653533336565353463653939356637613330353162303064373533616563633437663764666462
+66313332626466393835663138366462616532653563353036356164363634623732383463303033
+62666234383737623862373563376338323931626163616633303238373865393631663065656331
+30343361306163353233666663613537393730363064393264653738643230636437373937353239
+66653161326665653334366538306661396436393033613334343532373935313832656432336132
+62306232663730303939313166356235663737663230393632613566336633316166653531613461
+34633635626163303466656462653336313037353532363563373165323262386233323636626330
+66623231326335636565623962633764623531303761646332333335383937326363613465653465
+35633062626230653663343435383064316262386633323636393235663134626630396330393433
+65643530636432633365643863653437663431313861636332643039653834663634393331376534
+30333632383163633636653135383737346233653863373533373562663838616366373530643830
+64346164353764626366396465353263653034393038616461626630633131613863616534613461
+64383935333662343137616330336466393137306538616164616661323739633034653735366134
+65333666333064663163333536373538356434666165626334623839333263383766636661313662
+63613738373133343934393161613361633665326633343565333430316466613964326364343166
+38643864343430633765386533306136326430323434353937663831376566623263323336333331
+38613132336266313732303064626263653561323933633633383539633937616635356264356563
+30363864643862643531356131616262303866316164376561633033373232626531343932336466
+36643334666139613231396238313961396438343862393133393233336562316662663539643265
+66633931333831353831346334346365653736373164323938353137383039616664663532313731
+61313932386334393061393234393238653563366636386233396566626264646363396164333661
+34643231333632653432626237303538623062346266666431363466303665333162643435613163
+36383462656231323530643831663633613361383862373563336663333563613435656634386362
+34366564643931323635643162383034663836646662393536393861323466306630366234396437
+63633237633965396130326163353635303064313863343765333232313131303835626137353063
+37326365646136366633383663353431363461616238636638663639646338333030396334316234
+38326332366465666430626137356236396265306663626661346165356437363132613966383237
+63393739663633636335653732336166333437373332373839333063373432393937393332303334
+35343565313233353336393163366563313735363365316665363638666462613364643032316663
+386266383863343364356639333063386135
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar02-u23/etc/luks-keys/dev-md127 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar02-u23/etc/luks-keys/dev-md127
new file mode 100644
index 0000000000000000000000000000000000000000..01645c9e56427bb1f55b857dde460f84d9d82e4a
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar02-u23/etc/luks-keys/dev-md127
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+37306437323137396434623234666566343331626263653533306535373133353661666333663432
+3139313066636466353239346335613539643331326435350a653165663732376330303831626362
+66373362623330376538366162656563396133626331373330333665393039356665363661336332
+3861633663386535310a633165353163656430393064323766656636393065376430346162333761
+33633036653832393034656436653935666538326234663236306564386666383366666639666264
+33613136663866333762316161383261323563333536646435353731386232646638666434366363
+37633133643438343936343865373164346530333134386166323165383339373462323836353536
+36616235646364616235656638383366363931623534313963343639363065626531383361666363
+65643635333935393538323730393031343138323063366138616530343039313833306234333635
+38616537613631316464643138373931613037373337363563653033613830653835333564613262
+37363564323164646139343934323235376237386164303562333262343939373962323334366339
+33636665636631353430373962383831336162346433393930616462316637393265326363333263
+37336633643433656238623665643664343963643433303764653962323030323934663231366332
+34393833393965623935623138646531643334383962653261336631373363663165343932356235
+64363863346166306136353134363038623038613432393134316332336166363666663263626231
+34653264313535626465373635353465316334373765626334633737646435386237393439656466
+37346335666464353635323035323666666639633565323939666637383561633835663430376536
+39396263366366616434393062373863373137643963643365323865666266386463656331326362
+64313539666335316666663563646463366266656530323865636234616134333330346632323234
+61336165663163316465343432366137356363386463396266653434353236643430633736636465
+39623036303437633632353936393531363731666534363561616138376431666431373964316364
+37653232376563363532323665633032326130363261616166373033303633363864393730313361
+38303339396134623537376633623932396239306666346434303539303633326166643066333063
+37616238646261633238356130626631643234663635353664363232336434333933303836333466
+36626162316161613365626239643630353362626430386430363233643531373366616665396135
+31626161323437633964626664393966303735336639666466363037323133633664336639363536
+37323863366234313466366436386362393062333238663137373031663366313835643032373365
+38313638353064333436663462643765636363346138316336306432613439353933626335663563
+66376136326638393833613033313863613763663930666137623838613939393433326666306135
+33336438343234356637663531316331656136386461613861343437636337366262316231376462
+66333736326239333562313964353961666466306134633963376537653265623637363664303566
+64323437346432656162383832393263306130626130343939383839316234333739393737343031
+38343861373438626362646639366532346239383732323366333732313961646661633734663031
+38336665376563366561343836383630643739303465353431363666323832383163343764663366
+30373835623833616464303363663235356663316364363835353230616536353162613865373733
+31383732316536386630656464336266353766373363316433623830383363636139353665656231
+66306462396235666531333035643563623836636531633763316530343235363337346234643166
+31313936343532653931626431303066306437383963653532383264643262363433646531333464
+39383338626633653766353730393837366634616365646464616565396661616139326164616633
+39393866363332326434313334353334333937396438376433386235356664656361646166383466
+61346234396163663430393063633032313138373137323066626634336433346538303563616237
+38613963643963636664373238386334303333633733636534326466653363386436666232373037
+34323963643039653230356630643839303632373334316234366132333938663339653038666539
+66623866623166643235383233663261323035326665656633633938313833303666383834653336
+30396139663932383838626432346133386532343830313861306339646539326136376532386366
+34353030303464353933623138626465653164646237306661343563343032303933386136303965
+31303464663537643737346636616538636632653335373462396666373865613165663239633964
+36643132623462663963333035656533666232633331333531353164663961333030643936386638
+32663135333938343831303766373663383463323232646537363538383130383032366563643435
+62343462363862313937313537363234326663653530323137393164396562666662303764356134
+63633366383532353439316232303731383064313866363435663936383363303763393135316438
+30643461653339363866316532633364663039376639376238333930333938663436626435363836
+39366664633862363062653263333138633666376331653063313134376638633263336264313334
+33373137343430333338313230626364643764663162356337393534343539313338386635383635
+35376364613633626337343066363736353734393762353237396630373438373765306538326362
+33386664393132323763663437616337616438653662396330623135383934663364646439336564
+30356639353632623362323835356461343662616161383239626636663835383064626333636337
+62666663643236343862396662373061393866653064633461316237616135316562663637333036
+61666637633836313231346562383831373839643033633831643463326539313732643961383932
+62613762663234643236393262353361346565356438353636616437653465323031643132643662
+31356665333165663334373932356535316130643033643437633261626163376335333337373963
+39336338383366663433336665343363353562363337636466663334643161376633373733303531
+32616262663462396366636630386466366562616435616230333765613439643566353039303566
+35623762653366633434633033623562646632343038363266383931393234343566663561623936
+64366166303135366132366438616361613962623839396434333939373732376333616238333232
+31336232636463373733383666356532623765333435313566356539643863663664663839363665
+66353634346432383234343337353632653462326631393063396235643061646232633631653438
+65376333336435323265343238653565363634333536663633383935353432356435333836366330
+63373437616664376565343934323331653132326235656435326232633137613261656637343363
+31363332613038633565373861383339353938313937613261353238633133356438633936663062
+65373832363736396433633266363034373964373532646233363866363461306164343264346233
+30623733396466313533633931333338383539326264306638626663326133326134303830663233
+32316430383161646539336534336161346462633234616465373834623061343462316334386235
+62343536343935343762353639363338366564653630643235356332653466306636353435323836
+36636134366263306434306264316266656565376336376531636132313732623865313665623730
+31396232386230646161616533623061376238633663633634326337613364343239323931313864
+66663038383935656634386130333861393762396463323365366139636631333934643730323565
+64333362353834313430646463623733373130313363343861393739613265326262633534363666
+33306434383265396633656632303265626162323366343930323531653261613338646163613862
+62333436373266383033353331616465643661363563333763663930316439623763623739623761
+36646466303664623238396135363439353661323431326139636632303332323363623134346334
+66646362313135306635656338366566343863313236393630386266326438626333353637643732
+61636665333633316464353462653866343939313064363565383538616530366462613331343266
+30613331373232323731356231393230376635663932656339356635666361623036393938353364
+31393564623033653665383133626238383837643066323263386334653533343239643838376662
+38343066313330363263626235336364623161333461306239343364623437346238373232313262
+34363032663337343631323464646638336665626634313862663262366632363336643366666636
+33323466663634366532313332323266343435663530353464663439333136356435626564633963
+61653965313634666461353031316437313661626231356335376566396533303938383266356332
+39383863643031376230616139626238326230616166363039643335323338663633333538616663
+66633937646430376666613630303536313763306437343439356636636466303763326331333430
+36313562356230646539633761393533313435343832303332376466386565333366646365306336
+65383362333935376332303261653836323163343565643137316532633731343730393664346265
+66643539363931643435323538353839306666313739643761613932323736623338616632663063
+30356333376161333839393863303562646465313735633062643032303761303039326266343663
+65653539653034363233613838613331613631636430386236353236306138323465663962643461
+66383534306333356439613537336366333435363130633266343263643732336432366630346236
+31643839383630343165333063376233303365323965353139653432616637396638393166626234
+32613439306164326562346131353633376631356432663033323035306532356238666434363566
+31636238343864336463656138623366623763303938636464373636646239343735323039646134
+34643439396330313032663765323230613564313633653834623463323665353331613932366463
+65613062656235666634656432633737323831373339643334393234666130373931323333396532
+63623735336538366236633931633135326330343237373635663562323536363239306135316365
+63333865383633383966393137663230396266663463333332306232616232336230373932623935
+64376163336464636235323839663139643834303764363865396137343863393165386363313632
+35376162313763393136646631623632666639383436656132316534353937626332626636326261
+613965313865663334613038666365626432
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar02-u25/etc/luks-keys/dev-md127 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar02-u25/etc/luks-keys/dev-md127
new file mode 100644
index 0000000000000000000000000000000000000000..65d9f6b51d694ac41f114960b4a6ee1fad6ea258
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar02-u25/etc/luks-keys/dev-md127
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+66333865396634656131353638326362666366333364623331386665366631636638303662633238
+3461643061333936663164626237663461326234626561660a623633653237366563613366633564
+38653233383163623932376132393865343464393232616363613235386462343239343261646362
+6662303063363530310a303662623262643838373164633330373336316164356261666136393433
+66633238623339343437303434666662323531313964386461393061323564616462343536366631
+37376331343964613361643661633537666531356634396565626432646630343138613066623566
+38353230343738636164663938386535386131376565623163616132636362623332336637623337
+39396366623064356438333939623861323733303936303164323966666632636332653335316137
+61366537353531323130303066366330636239623066326538383933623138626166343064626464
+63666335333535353632353432623266386562346162306464363564393238626435636335383430
+32623431363563363530653264313164633730333237363733653632303564663438623061373838
+63303438306436326334613636323734356636323939343361613938323865313564626436373463
+37373030666133323130313664633235646464343232333630636635383062313264623136353762
+62313465643637343037376264393833646138386135386561376637363133343931306164656662
+30333738653835313230336439396236303137346237306137316330666362303762623864633161
+62626666366239373937393462313830613266366262396536643366306131313233656433623637
+38386461373231383834386236396263616334666436326366643663663239613234356166333564
+63373761393132353837313566666661666636303366386266623933633766393866326535613838
+65343662366535393633326461306566623166343431313334383337336230613339626631373535
+63363532633263313665396230373562623166386166633464353432653262353035353230363365
+30323535633439366466666530616234663162653465623066396139386362383765353431396565
+39383961353632333930323663326439643562363761303831646166613236616139373163373033
+32626263396238396130303333373037313835306437373837306462383131613337303337323139
+62373265616532323134393531353265643339303066333863613861616363636236313334633661
+38623363373033363663313538656239333763303632303764636561633462643435643832663835
+34333735656631643936623561623836636361643637393361353239643537666334303535356230
+33336432633133333365633637346164643730643537303232373363653737353565326337623037
+32303166613333653236666166376130616134366663626236636464323139373762623738393830
+64316136303166613633353236333332653332653633346433306334376161373835363334306464
+63646534303364383231613538363432623435383232613535666563393233643639633765323535
+61353736346464306137386530613362396432336262653663326531643735336161613738393633
+61343137366337646435653265306266643530303134613461386638613733303265386336656535
+33306134663232386364396232366561383063633361396465386632363432336335326564366162
+34383535653364616534336438626431356562643831623166343866616362316330643837336439
+31326339313936653066316231353337376431633331393535356663646338333330646631613034
+64303563353833663631383431353862666637363064666662643862303133356638393362613537
+33373364313264383239663030386331666633636639303831356464653430393232623438646466
+37353365643663316439613033386439383637353735313265636634343662613336356535363765
+34383038366466373636633839356130636130343433346430336237396536656463356630356661
+35623162303235303133653363313438313131623738623831613361623763326633306432323939
+66356533643037393531613238656633343562616639636639306439376131393833666436623434
+39393066663230303938363238386535353463356539356333633031303566613065373264313935
+62393738633833643735326532663065633538636431333039363530353035663834396338613165
+63623732333765356461613636653233306534643137313534626266353966393739333233663831
+30396538356565316664366134323739653031343232386634333939643736373333306132623930
+30363766613664636264616164396163613932363764383066326332643262633435626335633830
+31616639333637313462633666323262336138346462626461623038626561323233386666356666
+34323066373165643535333766653738616339643262393739343138656263326436373433386134
+64623861343236383161373431306436313533333937666534333365643264343137636237303838
+62613466396464363036383463336331316230623732356233616335373636353066613733356664
+64333331316330373931336234353438363239343531653135636263386433323863383539323666
+64653631343335646665643561373861363963376463613563633664613538653236333835646563
+37373737306461666537333830316634376337323366663433653535393833623438376534666530
+31643839663766343661613466303865303533663832326131323131386436343037346634316133
+39373339643061323162333265393266643636646262373536383766333138383930303039633464
+33646430613565366433323066303632313630643039333736303739326332316338373034613632
+30616538623735333732636364343637666237356239666633396362326534613434363836646466
+33646132613634666434656364356236616463303363353633643936616135653761646661326238
+34396134313937643839303265396331376561366663666631333265333233383130336634663866
+62633263336537333835363338373161343439356566616235353965313134393365343432386134
+30313463616262363533306161623563626561383863666263636163393737643761333138373261
+35323461306135373764343632353162356634326330306337363838626530353731663863636333
+37346437353333363832326365386535396636353930376663323963666161646638393438306531
+65353936353035646637383835626461653363623561376537643434346161366637333537343537
+32376131623738653163386332613131393531616539613039663239376538386464393031633761
+36323638386561353364653963393765633638613137303632646665666433656563326132623563
+32326661383838346238336331663038613938306465643562643738313732613865343531666437
+62383438353633333835663163313339383163613562366666313739363866333664393963663161
+36653736333165343931333936346436653165303639656231303933356532393761316539336531
+34386164313933383638383465616338373336636333383561646338633532346131303239323061
+62313335313336363135346438303938383337376539613436363035313161396265646434303933
+35363461633032616637633734396531316135346433663832326435316232373938343561616665
+36636665386530356630626238643063383063646530333338633462323763373434326631373465
+30616135363935386533343836326137343035336365363664663034393437386237336261643564
+66343335653366333464336538333462363033393161326439663036666634323430343934386162
+33666264613061386532336563356534393236633966646563663132613565386436323132613435
+39313630343565663036393438316334653863646131393761373834616639353333353335383565
+38623438623136323139303866613366333062323039346531386334373463333139633336653134
+66363731393464613131616162623031386564383339666237323533383138316131653834343931
+62323435313235353463376137646430373662643264383837643531353464363633616533366233
+64323065313039656233383766336330613031326335643866366334376236346433383936663332
+37343164663938613030306535646230383331646635616565646263336537346434653138306335
+35623830653730653736336534633331626439326563353730636131653464653331336337343065
+36623961326366333830333234633230633033626639363032303561366137633839323938613533
+32316639366534393762393632333139303038363739616132663933616436396163653533313239
+63356663636530393033383437633931626439366232386536393237316134303765623561363034
+32393562373137353336306463316364316663393333386531633831326638343838386563623536
+63353766626264653639303766373265386232363965383564666666313933363431653838616333
+36303664313135363466343533663838303535306562666631343363313766383964363936666337
+36616135346333336134383966316138313936386431663061653834633230323464636435386231
+37326131313035636531386533343065366565333262366334616135663939393938646539383637
+32366366363639313733653732626330613231646362663833346336303261616365653333643434
+33643233636435323761636336326561366566356430633638656165636564643136313539373735
+61323432646263383531656463363166333937626430636362613430353031666566346666646466
+66653334316237313562303737613333613663663737343831373733653432383236386163323862
+37343939393330373430386263313430333233666134643436356236343433333566666161663062
+34343338353335366461373038373661626161346131373134336132623331353733663861393538
+33336332343836663463393331303434306466333464343965346466656135666165366538393834
+65363034656164373235613636373532376665353764633065336139333431383234643666386662
+33613132326339626634636536626332656135666630373034343334653638376263333461316562
+66356638666561616533386634363261326238613336366562306338343835343839313864383737
+38333538386264373439383432356666343438613666656637653536643038333963303964306266
+37633130316162306231623363386339333035313230633666343961356531363766353737633833
+31366463373337393337313561663265623132616539303135653834653962663238666433636539
+31633065643766326364623931396466663336643562393639306631333330623032663732353565
+31373032613461623161663865656636363761616434336633643037613965396564363564643462
+373461306636333932393238373531633937
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar02-u29/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar02-u29/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..6f71dd54e560c1edb7ba765477fe516f4d85b329
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar02-u29/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+33313233346535326563636665333838353237323461623339623031313962323237323436646632
+3932356464323436343436306534343530383964383362310a353338313234323366386364343331
+31613736353237333431616330303362636638323262396362333534313435306537643730393630
+6139396238653336630a383239343630666462643363306463383966653465313633663837666632
+64326136313466663732323664373030366538373164336232323633663366383863336434346661
+39646264386633373435616330353738343838366132343931613137353138326330396563613535
+33643234613236373265333631346338323332656230353934363266363134633638333637373566
+31393962346236633434343634393263636435373435613238336462623465373763323233393439
+31326430336461303238353730386436316562353539383831313733376632396636323538323931
+35666338663739353166313565393838313836386162626535316261373761363338353361633531
+63663638613034383936333661393466333965613639313063666661656637646362326361393466
+66353239663838303535653938646634386438386630613039376335363665663862376231633937
+38373332663232353264316561663961376465626135313963313230303863623165313535316335
+62386463366363633564623661386238353133363938366261353435666435323531616337653062
+31396164303637353866306531373831326538643533336265353135363362316235373434363230
+35623064326431663534326437353634336239303633656533306138633065323863663961303231
+32363565353335613234313466616163306330633239383961613330353233333966383061333932
+31656635353963386538333764363134633963333637616336373338643138646266616630363966
+34343036623964626435346630343536653230616130636334626562386533326634343631636331
+34656130636366666330326136326436643739616132623635646531663739663864646239616366
+36316531386337666662633039373032613062653931613439643966616138346561356533633239
+64313537643333653034306336613466336630653431343533343361373264306666623239373930
+65613837653061353231356538343333393639326136616634323134303837653763363134666235
+65666132303066376265313934343539646266653161366133633735366330653931376262323035
+63383737643930376133613836393538646434393464383039383331373136656639616664323537
+66633562633562313934396131313464346435373637303338663662373533366135636133343164
+39363834616566653239353862616161636435643038323831613330616632363537303133353838
+36623962633434663730323333336531663361353432356537646361323363626662346566383262
+61386361366263393361373932356661643266623730363439663131653463326463383833663565
+33336437323538393733623432613634366533633962366637626335653562303334623138346161
+31373833316135376365353165343732633036636332363964313234386163663137393661363035
+30386131393538626362666534636165373462396339386439313865653139633839363562356565
+32373266303530646536656332633931653664393636336430623439306331333130626638303039
+33366630306637633137626261366363376565313431653131333039616433636130643163653635
+33383131616533356361323437316336663539356534323464306230313234633239626230303932
+32663462333963666132346135313935623935653430346639623538653164376230643937633361
+33376234343031396661666363653961306362386237663735393761386663636463613562313764
+63633232633834313939633631363139333563303532633866356638393930636338623664613730
+31623765353236353362303037353036323362613162663664613638396465613332633461613464
+62313562663765626132663861366566343662613263366338346135303034666339376332376632
+38613264616334666238386632633862306432353132656533316166346565303938396139613464
+62653361303365326666666236376237633337313933373465663132616233336566346239643332
+38653134353264303838313361636638326635313233653461623833646633316465656538386137
+66306236333635343734343062346362303362613039626663613337383137616431326430323237
+32646161343830643061643433633330396336323038333439336631353630306532646563373962
+35366332646636373636363836373936653262623463623463336438653566316462643137376561
+66393366646539353964373464643861363733613933336666303837316438353038636431626138
+38633135373666336135646436326137613861343837356536366263383233353535343438346232
+35633065303235333034343130323661396666363332373134636665636537373865373737323834
+37616262613263663837316630343563333031306638646364343734323233366662303365346363
+39623333333566383762333766336335383964356661616433363266613963386438666430663364
+62323432646234393639386262393464636631313439316262663364633965383930663837643937
+61646539316231356462393863343231633463303639623865646237393031303034323963623336
+61363633363962323263616364396338343938346534613038643664323231343232393334356262
+35653362386666643337663933383962303833343665623132343463613636653563656538306338
+39393033653365613234373236333937313566306663373130633338636661383163336132386334
+66366262356165356136653537383038626235373438386431383038323265643438616333646465
+38333266346262646137656638616264346434666562663635343131386637393865646537303363
+30636364646635353630613132366332636236616538613666303338333764643332393664373163
+62396362663261353938373134343366396162656565646564323137656431393937653136303435
+64313831353065353738303361383665336465353035353632323465623166663866646234666165
+63626431383265646364653261323633303637336436613865623437653731313362616231623161
+61313334323635623163356262383036393737376333623664353735623464353639323733633866
+39393732633932623635383561333035373032383638393739653230623761393431613464336231
+39336637633563643964356432386166373638623261323630636136356630376662623862636636
+35383338663733306336663761636437656166386666626137303037356338613765303030316539
+34383232373230663330346436656463306637353832376664323732656531626636633430613963
+32353665356266343034366333613362656134623462626339363065626632646164333962636336
+32316334306133383962353533303535396439333861376566333039303537366332353062323635
+32383030313738333835356633333264343664313435353637663233633263366164353365316139
+66386133613337383961316439323963353136623735363464333036346330663066643365333963
+64643863613838353361383663623738376536643966626630356161623039303834313062346437
+36653732313733643136633735613738343437343138373337336131386362636236623833343134
+37333638333233333634393464333763313833613261616266653136316538633766646132383532
+32313938343439336361663764356638363562323530303938343362306132383531333231613934
+35383438643061336637373533623663636137623037353434326535313262613130386539303639
+63393034373764353964316531643834663931363631303435303530663738353037323439623364
+35633737306462353437333639333437653261633130613133633431383135666530363366356238
+63616135303134643638343466393033303635616333363833633463373062356537343465613035
+35323065393436666263323130613432336234353639326539303966343762383666383736343434
+65623562316465396463333035663035336463343666376566396337633061366462333239633732
+30363666343635666462643037376538343266303331363364336338373436376662383939353335
+38616230353731656661616336353664633961656264326535346664326631336235356139663830
+62333636316531326239313063353062666266306666633032346330616164613537336364376166
+31363032373363623034363763646662363532613837343763343237393165643866306331383832
+39383032666461363431376138653463363163616434316163343433323063306431356366636233
+34633334633339666536656566333535366463613032626336333539393732643131313935383034
+34333631393566323163373237336638616262613966663331323965376466393062613766653930
+66366265626635653838633762323261333735643531316431636638613531356465333835353464
+36373734343864663662376338336662333866643965623162353963326361323234643663663434
+64663638623739396438643264323666336661356530393833313931646433393465333435306438
+36623730353938366137326334653335653337376366616234376536343634333464643666333061
+66643531633538383636353139366564313764396664303261653831393562623035616466653963
+66303165333536393036636337613265656430666163663261313965393862643165613731663637
+35343531663462643136323165343063393630643066653364616432343831356536623665313363
+39373539313233653264393732613939316565666232643837623961623735303765633537613837
+61663838626462303638396135396539643237396231656263613439613331323735316430383662
+62303062313134316239663066313734643064623736623338316365613737616136353264613863
+34386437336665623531626334313066323762646334333831613338313835303066383630313932
+36366562653466353463353763663930373039393133653164656664666335366337366365636662
+62353036633839646133636431653837373330613561313966633061373634366662316335646131
+62663063393366393339633861646136336338393364666431353566633536336534643365636335
+39366537383166346536663734633830653165323938356638336232303137323633666465613038
+34303234626266303631346665343635353562316664653966353461363039326231323535643333
+62643939336661653836333065653966346231356138626464623332343265663933343263663237
+31343834363466383233646435313931663665363231306534316535363233646539356334313666
+343366653938336432333565363030316566
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar02-u31/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar02-u31/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..a6b7198512375246e3e989beb556a8b181214cac
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar02-u31/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+63633566356138653762643664313964636630316234333362663039643432386335616238356364
+6536316638393230626432313234653063613065323465340a396534396563386632343961643765
+64653366383664653065653339336136333133393166643934393630306130346337633739386566
+3734393130363031610a306435333534306636643633333937323463363434623436396465653231
+62633336666561373266363235396563666234373465343263623135623062313964386230323838
+38306432393632366630343535366635623563313435336534393261633539623535366431346235
+39333833646334353939343262363437636431643935613130643764373262653337326138623539
+63663036366133663863613862396665353330623933363834383961323633376337663633633037
+39306537336538373436363763383866636538386662636637323536376130613933646139353931
+38356236393932633162386237356435653531303166663162663031643831323562656439303165
+61393966616661613335356564613066663031383761396238316138316162626337373334333732
+31383231626236626338396636613237396230373235343333396166356662653136386566316563
+64376230316632663335613064316637313266396166333138653939643432643935396637393463
+30646435303764353333376432316238386139336532346638313466646262316565316665373837
+34643061323932316334346534313433653363303665663062313463383761303736633266666339
+63623634613439316439353732316538636561346161316464633135343833626234323634343634
+66333934346438393964656338323336633162363333636137353635326334663430643238383737
+64373162393863393937373861323737343961303164323137643339363866623335653361306134
+65666439633136616561316363366264636533373061626637633931373265396265356239376662
+30373337363232636632626532633863343537396332346639313864303761366562613266373332
+31646539326663636566393836303039393438613663633331376538666330366439303636616661
+32383831336232343964626432313939643130333165366539656465303862396437373737666339
+39326232353963303765633861343437303762313165316634326237303239313137626463346466
+35613432366564343738393530376337623738343838393035653063356334623464343163326161
+34323465316237396431396433363733636161303435306432633734313165313765633462613765
+39656131333036383933363166313138383536356133353738663864383265373632646232353530
+37656334323266626535383437313836303234303638653766393638363337666663386362333963
+38326434366531386336653163323163336564373935646334636538383235383361633437656134
+37626635393966353165663830633933346236353963333034643131623730393530366264303134
+64656463663564393635616161363039636437353230613730366439346535323561643139366662
+36616136396631626235363933346434663137643861326130353130383831373632333264656137
+38646432643462626566333164623937313633383162353131323537306466316237623434326266
+37656663633030313039663131306365306135306538343238626334333737633330383265393736
+36656662333239666338323131616235316464643538333535386661313165653631393062323634
+31326234656464396532303338323039373236306336653633666639313933326437623462646230
+38623231346530363834646338643338383631623639383830353962663163666362316665323861
+66623663343833376165626565646565623235386335393962396164343630373466336665346563
+39656639346263643035393066326439613639353231316262616633663466386266373135653931
+65623965393261356231333766663331633031613362313934643930393033363636393563653337
+31616438656630386363633439303163626339353830333763343031663061386431616233346132
+63366266616365326431363436366264346334316431396565356632393764333630663332343238
+35666236373466333130393039363965636634366363326538633964333037393634633061376666
+31646661396663326263386136323938363064316362346332386461393336616631663562653164
+30316639303837646565313836623263646365613935623031353465346430313961613237363566
+37623236623264646264356332646564613836343465363232313665343630333338643535643838
+32303164373337313763343138366530633665636534356432386537316133636232323761306461
+38313230666235616439656535373530376332303064613463613037393434306636616635316331
+35363434373737643064373262326235313464396631613266316631623436663261646461353639
+38366235346366616533343266626434636337306162303661633061356639633732626632303232
+34366530326465353465643364393337323065313362613939383436363938616337366134303031
+63393038386339333062383061663035386237353065323233346161343163343466633865616636
+33333631666139343561393139363730323466373563323262343961656134613234313539346435
+65623733316666643933386135356433643162633637363730363830313935653332383331303635
+33353763336237323663393636663833386165616539346131353066303763333937616666396535
+36616134633131313731313437356633363832633566343030333134653266656433303130303265
+65303863656634656130316534633565656466323961343065623736363937396363333364343166
+30633030653332623066313033336531326564373562336238636432366563313837356264333836
+30316134323630353061323230636336633264383263633137663262346664343465373232626635
+37663261666430366435376362303763313863623631633931346636623662633336306339613162
+61636666646665376330356434326138623836663530666261616239343830656466663830333339
+62303630343833656164643236336362356562386137313265336535636535646236643831626663
+33643636366665393861623262346463386531646439663138326338643839616662376134386133
+39356530363265393132343266386439626634626532396664646634663066623234323536623332
+30376131306365336264353863636638323938663137393130646133303463363162656661656166
+66356261323963623762623461616264366433646131316138623862303239333665653561393737
+65623131653439636362396262626530383138663566303535616438666230343839616132346664
+63373839326636366635396666633835366637376362363738623535663834313832393964646534
+35613231396633613265346562653230363764373139616634653363323433643239313338316631
+31353136653235356538313139366138643465303639323132326638623737383036386463386264
+37303136353463323964303936366138646362656163633232663133363165343832336137333233
+64303261616564646535326433653666313331396332356164663566313062303764633265653462
+61323362653432316265313962383666663761383531653734656561313966313330626265646130
+39303161333133326131626235633461343137383265316132326232383739643862643234613264
+30396138323330613036396430383235383233366237626466316638646265613833363137386633
+38303234643232666630383761343062666539306436633765663934336132656633656530383163
+37616135343332313233386439663335356462373132623761636639373263303935356332373063
+65313736386334326530353166326366346638633132666634623966333361616333616430666331
+39656461383462633634656539343939623633626634633831383934356131616134663136636662
+37363632346631306538653137373432666666313266633064383234643631323235343835386637
+35353064613531363962333832336661646237626639373163396165376562643430613766303339
+64366538653665636239363239396661333762353564383163613331313836373739626235373538
+63323233666237326262373438333736363066363163396133356234343164333734346230313139
+32363065316436633264386463333662333238386130663161373935326435383562613165333664
+38343035376639663530623931393562393337653262643765666439323361346336343832353339
+36306536376163386461663134356430336631346430333633316635366662306332663638326236
+62613464636530303863333666646561316136663466303630336266373365313935333236303433
+62343362333739343539636561326535616634353838613432623936656339376437616564346635
+39623638373838343466323565393132396334393539646536323531626538343936666163363965
+35343432653761313362343365323364353433646264656331613130363761336666663266633762
+64333966343235396261386161646462313466326330333830396263303766663136623865616330
+30383037353533393639643638346561643361363864333936363038333563633632343762636263
+31623137343031303231376333396262326539616234383036383863383765613866616432633938
+36333032373239306130343034343262373831313835303038666465326463613338363833316136
+37376631643033323234623436393631346462616233366436363661363836626133393063303765
+35616231613831626262353630663861643037626163616136393963373264313432626237313636
+37363937653733303961313362353963313561633233383431373435623233633263623362646264
+35363737376163386133656239323438613537373830376332366165633065333636616531363430
+61393130313364303034623865303063326439313435356564623962363835636630373336633635
+36643064356133326361373661653962396131353639386534373631623530653362653132323335
+61643366613734663735366663383261373161356163313265366430653133343935323262633739
+61336539623263333261646335313065303536393662363337613431323366386430646135316234
+32333036633234366366383264383332616330323136323531613531643961656639636263656161
+38386361306532373966646530383739646431613361306365316461376335363731666330656232
+38663239613332353536616630333135316531306463373338336665306638636161303433373066
+39663361656263383261643031353730363263626439353039323065393737333834383138363265
+30386666613261323061313330616536303630313662623733333935616331633031613234333337
+636334373637646566333663343461313962
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar04-u1/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar04-u1/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..430ddf816f1bfdaa0cf1ab905dcd933fc08702e1
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar04-u1/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+30303664613235383739303337666531656665666164383736343631623465323131636432333235
+6331316339366239356638636631633535343133373861310a633433636565633237643630626161
+65393965633432616662646162653762353665613730663134356630333037383436383064303362
+6439373238323938660a316537656133663537653531376130333135303132306430356334613936
+62653231343231363232373664336339396164393238333961393031396665303663316432383036
+61663436646330336539313438316663353965636331396335653832373561393735303930663037
+63656436633234646366643430376330616361346435323065393261633932306261383531623331
+32306439373139396265386465643163326664613435316161316431343639393265333561663161
+37373935333662636261646263313134336438333065313831366266383738316336323535653130
+61383937353632316632343038366339336230313465306431643536303139653932373366383464
+65303238613262376539333065633938613764323064613737623431633564636163343461366462
+32613136663466366236613931656436663762633631376633626365636564386131353032623163
+37366338346361353966616131616133663939386535643037323935663938366530313465356366
+32343864663339636330376330353439656562373565616265633531386433643333636261653239
+36343939333637376265383764653766363061663165326462376663383163323433663132643039
+37623531363666386234653735663166396638623134313263386431643363623430346635383762
+65346133666634366663313938343931353664303038663164393032353664383830646164376236
+30626638633736316362326234323338376238343037323461383730656630353261366666616339
+61333464343831653461613635376237376337363537613364636233636633653131313030383238
+65343462323837306238326538386532356538653463343533616134663233646138396566373066
+38626231343635363136376161303365343963383966626335366462306338633535323138613930
+66313237393764613134323661396266613136656435313866316538653938393363626136663034
+39633161646136316162373737656164343338643262376134326632306532303364346165636433
+32336536373064626361616431646465353739656236646431653439376630326530353161383333
+61306536356665383238316435666535326439343366333264303437306265323966323633323739
+62313936646337373563373735656535326261363063336538306635646231393333653539303336
+37343366336339386362393232643630333439656563303733373238333836623031316534633034
+62633964373231666634306530356636613934316366623761633832343834386161623861306464
+38626138303662666664623961386131336330323932376363633838663933383461383332353432
+39363662366135396639656132623433343463336335366364303061313861366130656565666664
+62363231326265373834313264643363336632306662316162303063313561356431346538353531
+66326337663664316261623966666230363335303961643934373935653265373338663931326164
+61363232393736383237636636313432616334323539346163633661636230326164613139343461
+38333733363265353438346432353666613164383362663062626233313133383664323933333437
+63333836323964393039323433303537636130646437306531663463633766393033633139666530
+38303535353632386631613237616563356230363566636436383630653130356262643930386466
+34343663656231643336383166333633326462333065613933306363366634353562313133386561
+62636138393436663238393635306133303937343338326164386561373438653430633236333433
+62663063343261313035353835366561656236366435616339393166346233626638623633353066
+63353633633135643566386536356164353736326539643132386535633436333336303732363464
+36396230386262363134646163643733343539363564326434303733663238633330313662333239
+62353434626431616230623666663266346338633037373934386331613135616434663733623533
+39316566656637373037386461313933333261656266313064636538316264336438363538666239
+31336636633466623630663936343933333737633463363436343439663336643564616438613036
+62396561646661616662333031363961623732306562626236626564316361663063666130343164
+39613735313334346133333933383039303962323164663037663332623964336166393230626662
+34323934633561393735393865376166346537316262306162343565646434333761326233323561
+63653031363236346435396334656238336163303461336661636561336433313466666564343734
+61366135393966326265363131356261656638373738626333383636333861323637303839343463
+62373530626631383263666639313162613066336630313666363637376431636666633531353361
+39353631323662326663613739626636353630306130623234633736653136666461396438326637
+64383936303537633632346635633066643864336333336662326632313436616363633138626466
+37326638383661363462613466376461643532393662646532663561366565623762653764373063
+63616532663239633038313633643933383664393138383665386265336130366434666165386239
+38653638303634383631326266346433363462626631316362326635366339393132366163383533
+39326130336532656561653035343265343635313931313535363438303465363031306234633362
+63353835663063623564313731646461333536303061303931346164396239636336373761663932
+34613866313263653437376136343065316161373361386462613139396133343963393364343039
+64333734646332373238363239386662353332633330663666393639303963623432613139326432
+64366139343864633261613734343737663938653934333738636262623263366466643831383161
+62316630343062663939393739366538323662636463303533396535303637653431356138626532
+31626432326639343133323736666134393432376261303039643937366164346666346162313563
+30313566623561383161373231646366346163366463366561353461336666366666383035383734
+63366231393264326662666235656662663132663733383437353333343661623836663866633839
+35323366633039633963356132613933656462353837313265633834363338643037373162396337
+64643766653836316662643136306233613261643461626530323738323365313635376332633136
+64383931666161373761623731653038333062343361353163646264633539373963363264616265
+63613964346633663232626265633731313166386637323238303435613833383132376564383864
+61323034393334313664383938343836666164356238373665343232626435613664653933363862
+36613139383336663466313766326362643736613664393230663063396165363830376162336633
+61666363613532323131623662373664383435393934663433393239386462313632656332313936
+62656531396133613239366662396331306531306632646665643461663139333561333261303031
+32643736623835616630313934336363643965313933663231363639366438643834326237333237
+66353539326332363333353664363231333365386437363432343866663534666364323462396135
+37383737343761323232626335386533383464333732393465316632633332633135646139313563
+62383939363762663366653239346438656434356135326633316330306165643464306234316234
+66653862626439633266383139363738646533303734386634323363313234303031373062326234
+61636665383364323136393133386131376261643234373563313863636632323834386363623036
+31353633633265646338323137626634613933393337353038633563343432353165616334326362
+30336264333534653266623630623935643032633534366439646232653466373262396561303438
+30663666393234623561633036646265386630313739343030386562666439393231636532633535
+63346633643130383365666633666536373465363932643838373664613665633535643061333933
+62653730386237323163633338653431643863353862633563633165323038323266636433633139
+62626237393664336630366333306537306163323566363365663437363462656266663763336133
+31323165396439386565363065666230613238356533303138373233353464643936643662366334
+61343139613233356439666534376531633338383866643066666665656532373335326465353562
+62353730643265386662663133323137656439386233336464376561323834346433623065363930
+65653339613739383561616563616336333932646232393362303331383561313161643338376136
+30336662343039336263663262646439326635346432636661326130636239626534346132326235
+31363436333932346633313333613330613863663034356431643336323866313764626361363233
+66356664343530386264393434636230323231333465643438353362306634656565396636613639
+32373662346137316436363766643632373566636534366439633339396531386266663630633233
+31656231333135636236646662326365626665336235646365386561383364326538326264376233
+36336532303036626331313561326139343237653766383336646262666339623433646239653261
+65643463623031306332366236343033363134303238313139396130303837363133643139303563
+63623433393562643232663664346361656565313361633230656533323463323666373937373163
+38663864383331333365373530363664613166316332323266333139306632386433656137306337
+31636334656630323234663838643238613834386639646330336361316234333531656564313230
+35646538316238613739373135306466643561366634666638663565383463363161636136653637
+65306631303431323562313865323538633237323563343539313131363864666361336565626632
+39626364373933396339613234653166333635363233353461626635376236303933383831346466
+63343935356462373334383030376531623036363561353163653332613838643539303436383932
+31363565663466653165356266653761646261323833373430313639626365346662313564306534
+31373239313262363563663035343739303539323138306566363664646261383434363035353435
+34356161356537376233326663316133363364303065623765643433396535633866663234653838
+62316633663036613739376335653935336139663965613865616439396336613037656564383861
+323937303238623832643236333233343432
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar04-u3/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar04-u3/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..a07a3023f04788ea62009ed3aa1021fddd7d18b8
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar04-u3/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+64616234356530643965613862373539616662363435333731646665613935383665373232643565
+3636386430616238323465323138653863626336373731610a336132373365613962663462383136
+38646464303236613831396532653638616263333631313734653732356434626332336339646534
+3235653632333561660a333134343336376265643030316166396136666631666237343134643839
+30313866643037383836336533613531633563353164373562616632383234656332613661636632
+64633133663237376130343463373536343766343434333564346339346562383661643261323838
+62383830373039666165326134393464346331613033313261323835386432626134323931386664
+37363464343037386631336566363464383066643438333661353663646333626338636463626565
+36383039376364636538623139386135396539613636613030316261386234356232616165366563
+35623462353964316433333330623166623065633863653339643831316465326337363366346464
+64656463343037656432353866316233663732386331343161383337396536336436326265343633
+38316637333937613831313561663035313364373936373134646362306131323036646463363335
+32353361656639333264313036643938323530396639643235313337393833623266653965386164
+34343034653338663935353933623136653136666133346638633531323862383932383835316136
+39623462613030613736616362386235326331376432386133626566616565303636613536376531
+31393764393634666238613434326264303862316132626439646135653130646430356364393934
+36306138633337626635376165653233353563366664663037626534313763636361386633393132
+32636636326661326166373765396636306239373965306238663430323664346339306266613030
+63656232666633356561386663386662353332383665636663326138306262313864393032326431
+36393933326637363434343462633336633133333065366532383966343531326330306365333663
+62643337633035363864353938353562376461616233633239323561313438626634386466653437
+63383534343731363437353933373338373236323162316165333865333636386161363337303931
+63336464656138643936373033353730313632373165303639303439663561386333333631653463
+39366261383434343861613438636535666135383536656364396135363430613439626137353965
+64306464393732636164323862623664636165643837643765643736313733373039653762363532
+65336136636237336432643337396132333263376563663862393164303135383836613634663431
+37346462666361626139323939376232343065373132653731343765393835333562663637613235
+30383966343231353034616463616561356537376435613838306661323363323662666632313565
+61323338333230323839643062333834666233343064663161336635356132326337666130303966
+38373166333031613063306366383030303736633639333236366530366634336662383666333536
+65643431303938363237366661353666366631653366623465643033656161616665613734646536
+61336161396265353032316239393730663839656461363532653631313831323061366337656535
+31653662373836393166376239626264353535626264356238386461393138643235666432633330
+31306539356263346539316339303437356331336364623930366539646437626461306461616162
+66313538626464623661316566303537393539303665346235323635323731313136653333366134
+34633062636462653538386239643032366465356561396563303339363039643938613338373866
+38346632316137663839626364636261656434303238366562666361666265396230323332386635
+31356636666533666664363663376661303131626334613861336530643034366461633837346436
+36333166363664313261303531323834313130616466303735336236663934356666336336383066
+32613762346339306335343537346264643136363864666431333765303862373065343632643764
+65643536323334313462383163363138316362336137356135326336633766663038346536393337
+37323666653239643633376535373739333037643132623231356265666264323930623637366334
+61653163373336343831363932386537643035363234323831643233323931393163383166666661
+30656434336633623463626664643362366166633032313031313631643931663639333331383061
+32363062383435306538386131623032313661616661633639303965666438636637333638383535
+61643432313331373364343330303735616334393334366236316261613934363265356464626536
+30626232613734366131323565636430383030356466373962643064653135616131656633613333
+39336661643335396339393038323932643464626663386438383635356133323832383566316537
+30623530343765373636323562366137393766306332636466626431373839363666636661353036
+62363534376331363736336165333432643062626463613738656537616463643538333661616635
+39393232306139323834383637613164373630326664623930336666373561386161653432346637
+31376435303464663963373662393430666266626139663837303166373962383064323838313936
+61333736383138636432363239393338613366363736316236626639626637323763396462636531
+33343531316536333862383932663636393130393561656262313264663562303561326633373364
+30373739613933343736323666396138303832653537373737663539363861316562633431613864
+66333833666132343264663338666466356466626362643536623930396334373730306366643537
+38376433386330613964653561363230343962313763346135316566346131353336383132363438
+62363734373236343337323739363739303762393938636137393661303739613938336637656138
+39336336653536643839323338646162303439396565333661366662396266333464396538396636
+34663764346366373133656561376330626533323536396539353130343434663631663261653033
+31326633636239356236343761663635383762343535386235326561646539306665626134626462
+65356234636136353863376463633237383963623832393566376139626338333138316663356463
+65663838653164643164653039386334386564636337386362366632643863656163633333386236
+34383464336562386565323838363261366633366432613738366230646661303463643233643830
+36363935616233306333326163366664316434336335396266666537336531626230313635656638
+32643430653330383439376438636166663634653636313635353632303732333834333465393436
+33313033326263393637366665616535393131663031393532653333396235353139323961376331
+63666332646335353733303336346430663933383964653763333964313635343364323937373065
+31356661386161626462393937316430383530633230623030343865616130396261656565646635
+38366163646565336366386363366265373635356166393735653136636664303831336166323461
+39663966356362396466366564663236356665376434386635383166353564366332633236343935
+62636639343632346334626633663837626465313831313365633263323332356366616361326662
+36323536643937373663353133333139373138633663643464343533373165653361303039396364
+64393334313533646365653964636231643231336364623831373235336137306535623731313935
+66386564343332353163326664643633393662303238393432626132383839333361623732343937
+66626361613937366134353433323662356137356330666163336636323765326563636231653866
+63326132653261353762333362616238393063663431633835616630343136353138636534326466
+62366662323462313861313631366634653835613964613265356431353434363531393334336431
+63333934356261633037343964643532303339363738336332363735613237343061386139343733
+35343964613630326134623237323433633633303265373437353238643064613165313865613363
+36336135396539326135613038356161303334393230613564333666613566613162663234353638
+30363064396261356266326463356337646132396564393863653164373231306561663633336235
+61333766646361373265613231616430643738653235336564343136346230633936626565646366
+36366264346433386133313232623038366335383163386438303065353837666531623830363961
+35333232326666663364393965363935653636326633623238313261633164636630636233353762
+30356666323039346339613163326535386466623362386134313531643137346431613235346536
+30633936346439623538343234333030363365646232656163623038353835633639633033373833
+62373961343639366366333536313861613236646336393537333532623331346464633461623164
+63653134343736626138353332663633323933646538303131363962656633386537323537393665
+32646633666131376430666234616131316530636538393331363564666565343839333636643439
+64346131633038636530656134663539333430396636613333353536356335313336656266343864
+63633738333436353436346434623862383234656433353635393336616439646634366464613331
+34663433663338316536366263383466396235363566636639643035666633613834383631326334
+30346131336661643166363964623133383238373033666232326463306633383237333335636164
+36623837666232643833386361326361623763323264303733383133343964653163333463353939
+33626238306137666561633931636261343463373633613938386462336566353733336238333736
+35643962383163656462323966356464666666626564613763393231326436616530613466626465
+62636532303465656262666232343966323063613036636335316463663161373539313638353266
+62386136643464626139323465323762363935333130616436313537643532323666373961313834
+64303663323439633539323238363639623936633139653963373264616362356637303664656363
+39636235643433376335363232626563313136313364643236356165306435663237616563633239
+30306264353139363234356662396135323161386534613663633964363439383235323363656265
+66326135383461643739643661343463366334663035313036653165386535306236313362363838
+66643563656436363337626630663630346536663931336332343564613938653834326464613938
+64336533616664373363306632626138373236613365303564346234383835356666313830313064
+61626234313765313536646336646663366339653361343063323230333262313564356361313138
+336433646532383435623736616365313433
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar04-u5/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar04-u5/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..4b5a54d6e55371ddd95e50ce0aa6da4c0dd15d47
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar04-u5/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+32376635323033646632663033373764616463373030393238306339616236376330643062643364
+6632373231626361386636306433636163636162326138620a636539356163363133306566333238
+37386564623364623762316162313836366139633032653561303461373864623365336464393266
+3831646463633038300a386539336632366366323163633739373639653338356233653762623766
+39613061313633376532316235623736323666626136616463353531323262316562393734376233
+32346634383135386438393565383465316131343263376135333038663439626563333836663738
+30313832613961616139613961613761303366383637646136333439303932373734643837646238
+61303462383736393030626661663035306337333863346362356534376430356533323862323461
+37393131363935643739393937396537396534373361313635373366313438303536633261633333
+66626233316462383866393561353935396632636632353432393462663864386333343730383764
+34633366393761396138373235653863666365303066633364376331376365666662383438316137
+66623661336263633934373238333539643631353630376565666536326537366130346235353332
+37326563396139653936373734633537656361343837376263666537366261333837343165393234
+63366636343966653739373430353636303964613266316462313735663431363734656132643932
+61363962656264613464383936666162376233613837643338653666383538316563313336633563
+61613563373930623065323933653539363439656562393033303335323730326332363166643432
+36393932316662356631396234626233343365323464363762346166316464323964323438643466
+33386334346530326263323136633135393836323262646664613865613138343737323734343166
+39656630363161626239343833646232313062613733303138663161383739396135623763346464
+61646664366564383962653161636162383065393066323237633332373762663033343136626335
+38626565333965656461313430373139366336376239373137636162643366643364323164616634
+31343663656165356137623066316363373232363264326163383333326665363765353736386635
+39316163313461393039366433326563646532663362653232333437303031636236306339396533
+38386538323337323438356436643737343764363261336564393863633762333937636361313663
+62373637383138323962623337303034383037386131616634346261316330633364363961643839
+65393634303934333130343333663361343864356131396665333935343263633634623931623366
+31333333346464333539373737356139623163336339373363636464316361613537386463326137
+62646434306632386334616165613363373833613466313333383132623865336236656338313431
+31356361353430336431356663666137663331386233383636376432306132343466323437326164
+63633934336135336530386430383766396665656131366532303936326362613330663932623132
+37666536663634373064653231343634356634363935376338373730663635306135303436316335
+35613961643534616261373439386533386364393963633966633431356664353533376664333438
+39306639666662333666363737613538373635653438383235653534363134653262376535636335
+31333135616662383532336531666438366333663232626461643062353731346561396361363638
+31633963313935353065316163393266653564323262623264353965653131396339396332363934
+38396132326636313532343539666139306161363364633465653332633639373662656164326464
+32363238336332613262373539323865336136376137363361306630313834613230613830306430
+38373262633039656230633761326535303165356431393239623161353832663064636265376535
+38323532393662333131326466393432313031353566393036333632396363633233346637656530
+32633739363465613233316339646262383535323061323564373735646235396435653336346535
+30396437366338396434633738633034366237626466626664613366636536316437346364333965
+39326438343630316263383663633238353963643337616235323030663739306133333137316237
+38343564663531303163333134333931613135636665343732396637356165323732343361313638
+62396365376166353031323966646337613563363234613735663163313337303536376339356538
+63363734616438343734333630643239353638343839346435333438306637386132396561626537
+62646537633962373232626436633936646162613735613530613163383961383830386661353832
+33393633336564303431363638363738616638323365323066646234376131363833613635316365
+65633237653465643264666665656134306338633439343462616338363964316464306536613336
+66373366316335653830393730376665623065663163613566613730306539643966363136663234
+37356234633639393933393866393765663765383932373462356635666434313237323236333062
+65383936386562363738633932313537656436316638353665383030393663313135366236326539
+65653262326130613361666263393137626432333130336166336136323531316561383537623036
+66366231373030346666313536333962616434626330363036336261346136656135303963333130
+61343662643836383264666339313939656664336366666162646638353066656431323330363062
+30376333633633313531366536656331323834373938373231346333663733666534376434323765
+63666662386136356335613563656433656564353838393136356633383633313766663537626633
+66323237386266376166663931613863613939656137663938303035366561643162633461666665
+61323631393761613637323730303064613562373031386536626438366337376237363163323139
+32353832343561353666386135303565366364333430633833626534356435306666396234626165
+32346139376330303835363266363031653239653865313035646565636137336637653434393039
+33366564346463303831383235616139663732623735633038386435353231653866366137366265
+34313761353838376139643961356539386636373039616361396437313330353138393337376637
+61393536653563366135373563653733626365623531303435373162643230666436643461663762
+64656434303363373635303364386562306238323464363334346664386162646666336366663731
+34363264666263666661316531346539373031633436623738666665313139623466383737613761
+62306631613234343666666635313431623832396130346465666235626237636438643536383235
+39633630626237383336393439383737303533316135633961613332373832666232653866656338
+36646236626563373130653635393733383861643430383730373865616264633363353834363563
+63396565353233376165363630363439326363643465363466346461353137306161646266313637
+66623262623535633237343836323062393931373864386265396530313163333931656138353565
+37633262353734653137356565316637316639326439636464353861643239656662613037383537
+31626630316562653362323561353532353064393131393461393663306366396562343436373134
+39376461323332656262373138666430303164363939326436313438343637633264356239383135
+37636331306261373939666233336233343630666265306366656234366133383666383638636463
+65353135316562663537643931326135323631393063333861306537383665633835303932366237
+62663564303162653333326439396234626463643637316165646233373266623235356665346561
+31613031343962313439363161393765393035613866616161623762383532373464376564643966
+38396631363965663932623135363335383933643164656661353663373533663364633163356332
+35626333663137396434333130366566303563663466323863646239336162633332663432303635
+33303632663635663536333061343436303064333336336666613537346234323231663236643636
+37306634343666316131626266346165306631343366613330613530666366343939663538383137
+66333861633637646430353061653731623765343135326231633638666664373165646232376336
+62306633613633633633663936623965623262656238623164386565376538346135303564353665
+31623739666366316130343366393133386333653863653961653330323164353136353634643264
+37326235346438616431316439336334393061306435313465343334613238613235663031363931
+64363162336234616466393539633738633438633635613332613838356531336239393165633064
+36393833373639326338383763366365373733616337623034626437353963393535373566393766
+36643934643634333630666135363331663631373335356665326466303531653837663361626637
+31323466663435336331383236313064653461383864326332373463626638663861636338316466
+34383938666661616537323139636666393034313030393434633533663566633139653338393034
+31343032643963643032663833643534653163353565373233663139336536353633383162663061
+39333761376466336539666131323938633134363431393930353964303737336361326331333730
+37393264623461396139653632666238653135663438643138383930303234623565633032333038
+65373761393631306135613032363033363663396538353130396338626632363537643035353566
+30653931333939663362326339386565616563303462613530396531643939316133643533303038
+37623435613636646433626365323430383762633236653336353165393361653639363434363331
+65376363343431626530383063643138623265383630336461386132363530616632306664383631
+38343434663464393138653062656130633966326536323035643235373336643232623564396561
+39346561613561663062336166373166613862376439313465303639303438633435633230313939
+36663339323138363433653061373065323264373332306133626437613534313764303737643961
+33326337376364623936633030663933386230343363623435373737653039643439663631316162
+37616433333336636338313565663965613937303334633364383465316132343831363066303130
+39343738333761656163376636626662636566363039613336356437336537346362363532333432
+33666639363663663137376433646638633762633231346130353161303733373539373634383130
+38313563323532633663303731643463373031653464303739363764663334376534613435356339
+65656436346266353439333364323931396134346632383931616565313039353737356335356538
+383765373066666461333265643031306332
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar04-u7/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar04-u7/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..b1aef5796fef94ce6037e722d0b16ae123e4dcef
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn2-ar04-u7/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+31623065306635333036363563666637653133356162313936616434343365343736353962323466
+6539653135323237623763616536663536613935623464610a633163656432393233313036333236
+62666235636565646630613137303535396139363861306139623265623430623361343831303331
+3033613862336662660a373439303532643431303361313935386236666237383830306563613233
+62656139613739386665626232643063643665386538633330323564616662303331353162366636
+31333561643038653036343232636237396631363633373664383839626665633965303530303837
+64633839613036393930613137373531333330646463363430376630353536363264613834643465
+37313137366433363838643636383833653631353039366266306431353930646230643064316466
+62316632643165316432336635373035656365333963366366363466653939336638623830383733
+30363963646235313962363537356432336339316466343836346133313934656634316631623862
+65366561636538626265303834316561613432616666356166333061303661643366333736663231
+37616664336566383730333731336331353139303365303534313937386439396131646362313230
+31333936333637663839623432383865346433383863656437613163303261343330393261376466
+64646264636234613463396434633430353663653564313136623666663539353933376163333763
+36323230356235343731633131393030373263393739663466646264633839666261353339303537
+61636535636131303762643462643561633736333130643566386665343535343838613861656563
+31333030346436633762643466613135386461663930313332333534303862353835623630643736
+30343766633364363163353765353438313633326166633937663338313963323335313166376239
+63626339386462656566633138336137323034396636383730356434646462356137313262346534
+31646663306462386236373631323965303664356238626230353762636133343032353738373366
+32376438316361313239326139663431653963383938346239306431396236313838303536316162
+37316666333532663836303565363265663335306464636265363632656235623065393830343435
+32656139323033316561666161653966366539366133396365313739373463393836623032333839
+33323636376131323035643332346539363261363733666563623462363736333066653230313136
+35316364336261373261313262653766373762303430393933316333346264626463396264613461
+65393531336265653662643934663830386235646535646231633165623631396137613131643739
+62353465363734303136643939616331316335653835393530663437636564393864653266313133
+66633963306562663632366630376333373263633333386566663866343230383362343566386562
+61663130313337626135386635343961663133363733343266646135646663383833383330363737
+66383033393939373263636263303834343164643330393234336665636139356637666233343562
+33653364316630393763636163666265623633313439613336373431633962333563633765326463
+32613830373039666261613162306339303435333830333264386433663963386633396132366464
+39646266396437316335646632366434616137373635653830383463343866613134636666636432
+65656563653434623937326231646134376238616565323930306432363865386366626338393936
+33386531333961663336363162373832323161396662303966626166343939393162636536373764
+62356663653636366236383136343861363264353337343166353132616166373766316530376430
+33303431656232633064613162663038613430316662636264323830343636326261383362393561
+32366262356466663034633832376462623230333366613261636431396365663335376233353632
+33653939663631373832356438626638353037653135623937373635333266316333633531623032
+35613565346530643831323166653066643633623439336166313239396131343831363563376136
+61643136323463326335353430653238373966343636636337623536316231363731333966653365
+61333966383434326165623731623438323932383261646532356137656132343465346565346432
+66386432663165323866633335376362336133383062663439613238323665633464616564336638
+39666437356361663033636562643364333661356136653265373665343363623062636566303734
+34383434326466366137353630316264333832316533623530653138653637616262313064353863
+66653632306338393664306632343365393638633364386363663962396664353231336665376537
+65366332326235663631373731616336356261396264303166643566326533313536663335383062
+37626234663933323436663838326261626136383866613066353137363066343537353262356132
+65653461363163663163616164383033356665613631323833626462646666363835623637613539
+66346561633033656234393031333630346230383133346238616665343562666233626335356461
+39343233613236663533623761326230656133613066643063623061636664373136646361386133
+32656530353637346562313930303330653766663637343438613532393135303731386166663835
+62316661663736366137646534633233333635633865646336666166353162663732373532323135
+64653737643863323537306230633035383434313832633162346130376665393037303036663938
+35663339363934623732643931363032623833356638656533316131336131396639323737343062
+61646563356131623637383935636465643864663430336265366164396466356563323138663237
+38336333383332656562623864336331336232363733303464373565316332333136663532663666
+30343863383034393665643032323162626534326466623434666337653031353530356664346330
+35643037643936333434653339373836323532663435376338333030633639353961356565616265
+62316461373566333633333732613038636637626638616633666434333730613432363836346233
+65366161333463633031656162633061626633366438636333626366376530396564623166373564
+30313435326336353536663363636234303866393636373562313537653366663133316539373066
+61393162626163636437643837633632336438323566666166303466313064663830613838313661
+30353437333462306531626234666661333962376631653665306634616238343333613663356437
+62313236643334363561333563313261346565626135353064653633656438393162333338326434
+64393038613962363838346331376137663661643864663733636231313538346636663931616335
+33396162333933323130363561663362356338303761386431376563666663336133646262663037
+30333461646135633837323730353362373635303939383530666262353761613139643235613532
+62643639623362633639376266636633306535373665313462656239323132363563613635306438
+33333865363762363535376131313263653236663366666563633139353039636333393861323636
+30623431613731366237653634373464633263633439646462373062376335393134316638316436
+62376437306239313837353464363965646665376662633333326532626365306336376130363638
+30626539383037333832616164656638316530306637623130613333316134373639383439326434
+64396662646363656434656535326463633735386166376563326637303761363130323236333333
+36393766373631623237623633656232363430343130333063323139353434643432323438336335
+36356432323839613938316536333436616438303638336331373837633836323939663537373165
+66316463666638613736343465613937366662646365323563633732636664626466396337373363
+36613635623461363464326665303638613430633937333236376230323063633737376630396335
+38313862393461613636366361646162366365323639626431326330313136306432643636333062
+63343164306666356535623530383562353139363261643363366534636261303532613965363765
+37306433396662383364343936363030393633643065656361306362363664613935316532323639
+33393063323662613938393063373039303733623236333038653630316237366262346539326239
+61346639363464346136646439623362653934353931343339613661373830633963343237353232
+36616435336164306636616434656531613263386136383136363164623864326236343866313933
+31666636386239613562393764626330353166386230396563613565656532383463366134343937
+66656163333362363962343866666163316661616336393166323365636230363936616133323465
+34396663356662393837323730336566386236376637316362383138393139323038663664333935
+35643030356330623064623866643639336435303336376565663666383434383336303161323066
+31646166386438336134396236363765643932376664383931626464346265336530393239626135
+62393961356232343031366165366465376637313132353266386137383964356533616265313631
+65623062313531626137356232336638666662383831333535656330646330663030633865616264
+31343934613861386361653032623733356536393263356436356166626633386537396231383833
+65623930333235623262333939633139663366333363343262356264626435353263633830306334
+66333639393239303639343562323761653161363736363630386331363039623331363039303263
+64373339353739306262373836653037353139663263383334306431336535373738316433373166
+62373634663436363966313936386539313133373331343965343364323833643062373866636436
+34336336336261666637376564303630646439393338393435633935306331653834666339613031
+36346261343436343039316432323831626432306232326363356532386432303235383062383964
+33616634333539343465383766653636353666653633623264333664306463613661393166346130
+34396632326266303233336664656566336232396130303139333361363435616261623766316538
+66613231393639303937623864393839393337316337333432623437326263383532356166386530
+33376166333763383662343231616637643139623831396131326562343630616436343930353838
+35393334326237316366626665326232633435646431306665336130313734653436326237373533
+35386664636638626334643632396431363335353539653466633164393033626537623562666337
+36323033386636656563373762666439336433643331666331353630373038353561396531356239
+64653864643836636262623964666337646631353663336630363665303564396336663434333637
+626632363164313634653864306437366439
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar02-u22/etc/luks-keys/dev-md127 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar02-u22/etc/luks-keys/dev-md127
new file mode 100644
index 0000000000000000000000000000000000000000..170ed6d5f5782740cdac48341778244841deb9b4
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar02-u22/etc/luks-keys/dev-md127
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+61306464613734396638613038313662306662333534383161396464393263366134313561346531
+3539326231353464646234626438653339383366653864630a666461326261643464336133643066
+32396139636134663632343937353363636431643961306435653464623136363932373363363734
+3664303335616637330a383536313430363364323063633766306438333436383761353437303464
+30666139373431623937633935333165343763643737346564333839643733616339363264313830
+61333162616639656662306233636537386337376133353561373539663233613135313232663536
+31653931336566666363326165326334333637656363343963333935356562663137653431366434
+38653236626538396162633235633231306332363064613137646638646463623234656637653762
+65356363613164356331666661386337313562353365626533376365343237646535373964653337
+64396631386266366262386565306665383335646336383834363765633335333864343838316461
+35373137623139323431623631386265643732613865643330313963636664313939653439316263
+38613061303737646430353532633539663833326630633933353166336138366337666436303933
+64373035303735323661373934633064366265643739626661306231643431346165313866373138
+63326365393137666265626335313736633862646665663331386634613535316337353837656439
+65383631653561366132646465386433393666386431393932346536636531333337646231356338
+62383861396532336435323235383465643162376264363237613033346366303463303936626661
+64373535393962613661353234633531656539636362306334353032393537323266613864383737
+64626339333663323962396630616430363135643064643133346461303032366265353965383035
+61313533303235666636393837353962646539303463666164626237383734356438633963303038
+35366135393431663631336237396238316232653966653032393633303032633930626436396661
+34393565346439356337326165353739663233613563623464663431326439663065656434396539
+61383732313530616336646439323235353334633031343164626238316164373431653231316435
+66373639353530333061393337303765363535343237346663363038323732343739323436613338
+36316362353266653738316364613561633839623531343136323933386635663036353732616463
+39303833646632313031643931393336626530336631393635653562623234326634326530316439
+61356363333765653137393834393565393435303334663337396162656538343362376430393339
+62623761333962396463633039653862376336633038616536376566383134333364326135353565
+64353433326532303738316239613735623034353836376362376237366134643665316535353632
+36646466353836396266373563333764353361663461666436383539396263346632613364623537
+31646234303938666662373562663831613064343933356334383334623735373433633366616439
+36313736383233346433353464323136333934653330323162623966623664616332323935633239
+34636263353763333435303166626162323036313136343437313866623333643934613864396662
+36656139393836306362646234663565616361363231323332386635373737373461316233663261
+63323938386231333139626630623534333131356162396163646465666339363839323336303464
+64393932383263336439303535336233626331393938333732346237396233333337613439656332
+30613132313665653962323530353237656239353964333237643261613465616166333065343732
+34623738323264623061613134383262343831313764356666383866363035646464636263383861
+62373431343237633638313831323536646531326631356634393438376634356534396534333039
+63393465363633343736303663363430353830396361336630316432343463653435626636303934
+33306433376563313766343132356665353562323364653930653635303430333030366632353531
+37383466653734636537326266643133346138383364373036353036396233386561616531386263
+61633763343136623831623465653433343765613139653562616664313434323635373330383163
+34393661636238386431613864636334383532653266363137333062343839323833306664353139
+61393935343932323038623662383930376136383239646239373637623737653763323162366633
+32386439323933663737666265653463666437343062346335356134393831346565373436363032
+66636336623132326563366566623930363164396437636638323137343230333462623165666362
+30326266386438356534326438363332323934373162623438396266623534306239343966396530
+63613235323364303737666365336262633935616562623562393038346135363035383330393966
+32633935383364323337356166633632643334306334333933643061303232376534376436626666
+30366434633737313639646136343438333864376638646633646239396436393139623531623738
+63303463626435326231346134666463633763323635343264616564653036313332623130383532
+36343334376563303438346539613265343639646164363737326262643936303737626638323436
+38643436393437616332323237343938656663333734623461373862353637346563363235643265
+31333735626561653236653039353665656136363731333164653233653630313734356239376637
+31646332346330356132666330653638313064323230626534323132386636663562323161653531
+64383531393531393734613139633236653533633231376537373964646133323631316639656532
+36383262333665316566346636373330626563393939373637323939396263386466306533343938
+35636562373865623733613361373565653763643763323438633039323162363637333331396564
+37656662306137376336303237616137326534616166636634306236656364653764666438613339
+37306533656330313339373661663539376666663831393432393565653933323731633563373238
+31626433323137663066393833643438393630303063393838396163356133343638616362336361
+63313739363466633461306632623137373532663364356330383536316461646361373265326538
+63633539353937653034613738363062623062346536383161363839633433643633353465636533
+36646433653565623764633239333735626163383532663261646562393432353063623431623764
+32356239633631373234663531643735393665646565636333376163613330316639383933306137
+32313536353164313861326434323238623632393630623733396463653165663365656237623663
+66306132333639306665636266616535323463653933383033633336326433396130313164373036
+34366136646535346261346532616130366333646466303932376439343036646364613965613465
+66373035303064643063376366633462623563376136663935333062643636393334663463626433
+35366235383939363138303735656433343033633364346138333133636433636263643830313738
+34663838313831396565653136333336333734366466326565653130323931393734326335386632
+39653439303261626266393836306365643737643032313664373538323365303366316461356631
+31613131313436373931326539613735353561373761363966303361643631613237353934343437
+35633839653565613433626130353539616361613565363231353932396261356533313462316538
+61393064376165376433653963633936373065666536373462316663636563343530633430636664
+30363939653165653136613363346534396538643738376265636463643961363266353061396133
+62656234316533633737353334633064353063666232383038396634646634396437373534633037
+31353436356231323861373734303337376266626535346439663234643966396131346437366436
+36613930363637313631386561323163663563616339653037646165376537663434386339313531
+31656135343766613030343262396236373365353337366161363132326165376237336630326435
+66626662353136306437633430666565356366396162383835666665383133383637336436363137
+39616237643265663132326338643465663061363730346130643464653436316630306664663763
+64653163326463303764373235316132333431323631343730646266656132396335333361363233
+31313137656334363634396263623764626139363465396438383539336330306633653435383966
+39663132353931366332653031633162623532363565653264363061336563366662313631663165
+61373333643465366531656437323739656630623239663137623664633337386438346336373133
+37646330313666623639383136633863646463633763353963343130306230663538346364373238
+61353463613932383130633236633837313638383439333061373436303634363331376137346238
+31376163666161303938353165366564333265643231363061393366383639303363353835346164
+39343537636464396636313163616331313533316464623336376262353534653832393730363930
+32323363326663316131386330626562303139643063323233353861303561373065663733306365
+36363436356630303938613639333462653933633330333838613430343631323262653830383362
+62666363393034623638316530343230386566643832366330333733343232643638336562653132
+30343139663835656165393630653266616131663065636566323035626631643730646465333937
+63663230626239613264643264646532306662333836616565356664663962663939653235323761
+62353430306430393561613266313034393639653635333334613033633030386433643364333739
+63356132396238333463666530643036666464393163626462316264633636636664306237616636
+62316431663431386336326165303134363863653736393661346232386661353031393366306532
+31656330643137336330303332363566313734623965616333626631303934343932353838646664
+31626266396536623966643230356330343064663130323232373166393635363866643136633434
+36643033613432343138353338346135623338393535363161393739613965383930613034646362
+33336636326332316365623965656539343532613333656366333333633664333835323233613633
+34333732663534316438653164323766323233386136346338326231613732643737663066626364
+36303434626130643734333666623532663063306665343161613636356463643430656135356238
+64383737616631363839343234306264626561626235636236353732663566363163353831326137
+64613430393163643639376137383032386437623034623965323762646364643466306436353137
+323539646164333066623765643231653730
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar02-u24/etc/luks-keys/dev-md127 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar02-u24/etc/luks-keys/dev-md127
new file mode 100644
index 0000000000000000000000000000000000000000..33bb5270582e16a29ebd02a54a26e8ba68bc05d8
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar02-u24/etc/luks-keys/dev-md127
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+66366561343639626336383266306361393135326662396665366264336433323263386434656637
+6338306339376639343239353237396237373033376433320a623636306638386163653530633661
+33623666643432393435306131396366656339663630383164616535323265356261623335336439
+3431366266323565620a656535613864633731346362356639393163663032326436313636616263
+65393830356166346537316435363465336663323166653561396661666639633231393263343334
+61383035373037396437336436306431353661633463653936623134353863633334316666346564
+38396139663964356432393461616266653439376130613630343939643437353163393932313238
+33366566643635383964346161356463343934343764363139353234633965386636336662653061
+36306531336138356261313935376132336561616132356632343832666536656534626463326664
+64626331663430343066626430353566333636303363366436306536623264346163316233653265
+62666362393963373838343761663762643133643433636631653363336162633162376138376138
+64643235353735313739393535393638323033626531333761393630336533353064303932633337
+32376165333664356335386463383438656436343063393238653465383836383233343338633663
+63623731376561646135343932663937326664633736396430316135323138613864366566306464
+63313936393365306161626266376563646566613637666631303933353333636433373935666132
+63633962323137646563336261623866303031306334353361396539303866313864323163346563
+37373933666364663062643436326634623766623731643139313838393837383230386539396130
+33323762343735346335383362363733663735616265386331616634313165656230393135343863
+37626264353335663264626166326565333064383663656637376430333334653437376665366263
+64376539626535313866656335336365616330323764653964336639623334343535363737663933
+31383363613535306263626438326365316163643030653433653862616561656564353039373764
+39613164366236666239633364363031393461396264383138616632326431303837636163386436
+37343238366436626161386563323038663933633362323834663634633238643339663836653361
+37306330636261333633656232376537613638356262333965653063323134356630323264643565
+61616632363237326239343664626639356335653638643535633931653031666162306364616262
+31303731316364303634353739306336613864393838333665616233613732383430636134663132
+61393637393733333234373737333532306361663866383435646565333262386336663836666564
+38363237656139626134633637373262306365393261393163363931663337656131323632333334
+63356335633462646430373039626439383736383866386630316162643336383565646438613236
+62336531336337623234343531383630373332396632383661393966383266656666326432666565
+64376432306361613263613631313837353663356133613730366439663364636334323437363363
+65353835363330373630326263643361623130393438636139626639616663373161646431373561
+34396536616435323834323866653532653861373831343366333934376632316461303862356431
+30666431383330343062623964613538636239356436326434653165353563643165656230346532
+65653638373766393035356639666139643631653231386536346566353565313435666163383866
+33333466626539636533633863393535633336316461386331356436366362363664343062636434
+62333736363535373466376163326361366138333936366132306332313835623638363763393932
+37663563656136356463663866643866613338333431316337313632346332656335666339636636
+32363262396162363935313139326433353466376334353363393164313937353364636533653330
+63333033313264373633373034616436633737323363396466633531666233363565333835383265
+39306531373264383735303863303533333930396265383134313464333465303833306634396535
+37386166323635363736313534653863623235346633663861353462386332633965626334616439
+38376363646465326334633363626565363134373931313161666630356634653931333464653531
+61373130316535613264376237386336313838613563333666363930386466383534653038396637
+65313434396638316532323166636561323565343231623762663039363831303339666466653139
+30323436653262643930373864363365633938363133623238643739366662663662626566636535
+63393262613738396636343934323235386138633535316562356561323736343662393339393966
+34333337396661353462653737643062646637383063383966313239336333346365313735636366
+61633266373931656364376130666163323062386439363266646330323330623564376535326236
+30303766383530393532353234363339333831356431363161383239306433393031636135343033
+61333938353466376235363636336431363430333733393733363965663238303232323264363937
+39633963343837323135633063346162613336386536316435333961316564633630303836303930
+66303962663531383862636238613063653236653066316132636136656566653637653163653037
+35393966383561353165623136316138363535376433396134343263653133336430333665343330
+62666362323234666436303134303364306161393634306166313732656462626463326433393364
+65383635336137313137303730623964373964336232626532643637653537633963346265373233
+30376239373931656161343664366164643263653138626662663632323133353334366230633230
+39623466623139346437336262353961333362626336616662386531636162343663373537353664
+35393232313537653034386438633663383738326564373830393964376261363532316336656664
+35623530623630633732333930336435636639383635346262373563313362633664303063386562
+39386561663633323432363561643235646461393262333632646566323063653236363537356364
+33633166386665613238363837363139393934303434303233646266336237653162383863386538
+35383265623833363938663662383331636534663165376637366439643130386536383533666136
+34303432663965316133626265306433613437323637626537393035616433323166396237616164
+37383064323531353965636165636234306365666534353138346430626666363935383934383839
+37336466363839646639316639663861343739333036306531633030663765316434633165346133
+63373138303132316138663764613930323261653562353965343639643566633066313938323663
+63656533303362323431303162366634313864303436363763393737393735343863316161303232
+62633465666530623861656462353034323730393734383732396561383466646363633364656631
+64363536383562613864613366653163393562653963633634623438306535616132336439643664
+66613661323439316432316631366462333539333735663230616662303632633239653436346134
+39613464353563343533623065373838326134646164303537373761333335656165626434333333
+30333932346336653262313761326461663366316231613833366539633162646234623234633561
+64386464333634366463383736653530333363643161313063373838643734383061623330346531
+63336664363739306535303366386231386662383239313264656237636138303138303565396662
+31313763623831636236356361333730383332383064306635313865323538626663316431343035
+35333631643563323931653864633664376263643332306439356533623436346164383133636664
+33623762333764613664623637396133623364353332376532663164303363613938663266343832
+34336265363562643661323332616433383437313762356361646662353936343265333738363961
+62633364356230326433626436396661323538643634626661396338623637323265666630346562
+36623935383264303930393165366438323038373432386332393334636635353663613666363833
+35626262373764396231303630373034383961373266666562353332303933303738316561313166
+33633036666365383264653339623264623037396163323139386566303230616466323664373737
+35353137633263313261333533613233326537343630646362343163613838303635333039663135
+36396432383165323465313264313039346339656662663362643765666562616431633734376432
+32663133386237306134366234336333366665363663656533373664633939326231333065393931
+64353339313431316230373335323161633564326463656461653561326663363132343761376430
+39363336666163653631643930663262623430616563333965633530333165323961623337666535
+65386337366435303039373562323636623861333262613661316562643537363434386333316165
+37363965316130306464613834616162333065303932653732343636333436303361663764653136
+30663230336162646430353666343735386635323165396433613938366437623262393135303461
+31356339356630393235383134386365343934353736373866386132666232373839316365623966
+39346561383637303134666535613535633735393635633934313363666133653564383436643666
+36356134343736393864343637653632653661373764353031663734316436306332363832333938
+62653238313538653462663861323335393762643237356338643832323232613765663136336362
+30643032636535306235323834323537616339653265623763626530626637313036376461643463
+34616335626237366364386163666166366564306139383266623431313265353066666565386230
+35343963646166303762313438343234336238616534333237353836633034376364346535363534
+36656433646263396538383034303966633964333663383661313263396636643661653232393833
+36336331626463633838326334323835613033643066383338313730383333666230643761636533
+64623635633134373230326133393763656634323466346130623137326231363136633036613865
+35663538346664393865396634366236616466306463383063356466396435623064616538623635
+38336463353030653039316535313061353663646230353037653130303631323232323564636262
+36363664653464643330616333336337316661396438393930623038363464356361623634323236
+39386232343539306330386436333265333730386633323061303865303333376339366536616161
+63396365363338633338633537356565663831323630663462336236353832656438323232363432
+396561626565346633376131366565343637
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar02-u26/etc/luks-keys/dev-md127 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar02-u26/etc/luks-keys/dev-md127
new file mode 100644
index 0000000000000000000000000000000000000000..a1b82fc80d2f190d16ab5969e8622cd2beb14ce4
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar02-u26/etc/luks-keys/dev-md127
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+62323033303737643765383666666134633834616336613737323937326130306362373663656566
+6332393539306133333661636132633732346162633730660a303164396162386232643739323331
+33353462303433653432333936646566663537353466653163326236393034383165393834653836
+3264353964656337630a343866396465666231383334663765333066613064643439376266303664
+65333631363236336339306632313833613261376231626631626330623033333232383465316637
+62663162353437313735313663633865333665383237346461616161666138613066336265666563
+30653463666361336539663437333234303366633635393065353234623939363133656638323039
+36333437626330323231333330363763313564373636343339633761333364313833666539356464
+61633336383834306138323131313235643536393234343238613562343839626262666530383362
+62353564336536376633376263666634646261626466303835363932613430313166643366656131
+64353466626565383934313162663139646634656333633462636436663061383466353566383566
+61346634626139336564663638323862336430396339353536366461336132303161386462396136
+31396362303864366366376436383130366531653234653666386434616234646234383137653362
+34313330336332623061326634653637643532613536643235373239353963366163306566303465
+62653533643861346334353238646231666634343237333231363063393831396530636163363863
+38333036623766613766376238666138643535393738386538316266336434393135653566383837
+33636666373935383137343831663533333930323731336635313665643961336566323965643063
+31346534336439646662386331633163346561366664303034626139383234336566643431633836
+64623736616639326463653631393664336337643061666238313936623561376135613737323537
+64363463646162616536303238663135343763353966316531353635616238353839616638333233
+66333662613730633430643763376161356332343062373136333038626239326538646639613766
+63633962396163656138356539303562646432346631333735386465373539623236313066383530
+30613464326232663366353534623733666261633330316437306566376435313865633639663430
+65626233633932323736643735396538306566653037356661633336613230303736363739376337
+37646363373937306166316139373839376165653262396663393239323465656137646636363634
+36386239353933656264366434633333633931393363363333343465616635376465636561353832
+35363535613838326131316463316233306231646335653739353764346465323163323761346136
+39346663336565623866356162376438323735383862333163366566343639613337333666323133
+38383564626238336161306566383532663062663063613330616362343764333730393934383133
+34306163333862346266383135303732643233653366333064626563643233316435343936663239
+34303536326133616564643565653866303639343237613031323731363030653339393333366431
+32343261613931373862643262656333313165636337353765356366663066396565306636373738
+36323730383261376466643866653837316336366130653938323464343062653034353063346461
+37393135393162323135366462663039646634316165636132643761356133303332323835363965
+36326234303766643334643763353361646235333662306465353937626439396630383239363261
+37356466663731373537343938636233343133653961386361633936666530653536643663373263
+64653962613037666535323536623234663561323462323564303532643336663532613235626431
+32316134343463313735326266313139663866396138366365303738633339633866663630303930
+30386331316136653163643731353537326136386137383836363632653932653532666130376433
+39636136303834363464656664643966343836343733666139646235663532613065636564643730
+64623862636135383938663930663739373532366132306434633930366235303830383336646466
+66356163376233323765663838623237333936623838376239623739666162636231363265663233
+30636463373734366461346163643563633664356431333066646632623661363065313934353665
+61633466393264656132356134323733396634623339356265626438383062353430306264393733
+63316365323164313761663865363636323365653435326561306439393631323535373538643034
+30663534386632616239343065363365653236636362343261663332663038643038343262393733
+63636564653763356261303230373863616561353035356338336434313062633239376533623864
+32643733363430396166323239643361303037653738393131663066303465306235343338643038
+63656433633232383232353965663732336631313631623331323137613539623238613934646533
+32346565303365636633663161333439653734353837313336383634646530396335383037653633
+34306331346363666363323464313237633765326264383035326639346365373464636132343936
+38306230336432323966643266383062633432663036316133333864353566643566643830626261
+63643336636266353162623939396562396465356362623561373064363766356231623162643664
+30376264396632323134623739323464336532613732633063643730383738326461396633613230
+64393331393030636237393730373463333166663063393066363065663633336330376164633730
+39663237313433643065623136303534656631343830636331376336343139303436323865636132
+65376237343661333061666231663638366130373739646237633334383466373861343533666530
+34623566386166373566363565313237396236383864373330643836316536646336323138366564
+34306466346464343135613462656530653838386134363836313031653565643731363534633466
+31323339393263356561663465366537353835663030626237653564626464623239636531386635
+30363935346566613532373462366332303564646265623466396530636137393264656263636632
+39636230373732393464613763633633636465623732316565386565343439376537623031623637
+62383631383461636335393238343465353266653966616632306161373730376563396433303438
+61666663666166636235383166316361353162626434323335633665336231313163636436333132
+39653162623962383832613432303462393737636661373034323132623836336130356638336562
+37326234666463366430376439653333643331656631396137333033653330306535393830326165
+62343439623665633961356563373433393433633966646631626635376531346239303762303931
+31653364643931623861353033306533343262313832666636353333343739363439333461313534
+37336466343064646135336632643837663133653364356439623162626364396664653864333433
+37666661323432396362313664616364333337373132323938316666623335343130383136303631
+34333035653138366230663435636663643637363533663662316230326661663230393262376665
+66303434373761393235643762613863656434623466313930666636623661386639383065636466
+32313134376566656263643866333766393333643331643331306531366532653466326236343437
+39393031623435343966346431343137376563353838363164383865373766383061623239363437
+33313838343439336438326631353033366639356437623135323565656466363239626630323962
+65346236336530623736666265346437333034396238303163383133643236353464623032363533
+33396532313033383964396566613936626639303965666539363865336534306361633138316461
+64333161646233376339616665313632633637393331373032363734306135353932333932376130
+39336565633938363038316165303431383937393266616234366539363265613537396663303564
+64366235383964303864633961383235353564366231343962636430343736633365363166636365
+37343765626533363239613832313832333362373065613835366433343730356635656438613030
+33333331623636626264636639306330333365353932633262323864353536613039646432636430
+39323462633430366638303463343530396431373266616532313233623234653864313132643338
+66633534656434616635303963663562333931383031636265396534653630633432356632666666
+34623832393137653230656537343439306139343262343261343531303738623733373431393738
+33623063303963613436623331336663383564633561393164623062663463393034313862653163
+35663266363937396132323734316238326137623866613362323137643936396132663438636661
+65396238653466336238633933643665396663313465373535303835633766383034343635333365
+65353833333032333333626533623730326131383231396461306335646534653566363666376437
+30386339643632623933646162393163306637613833306261303634346339613635336236663430
+63633835303932636636393633643536393661353939613531663139393530363638616566393662
+37616536613938393038623139643164643365303163396337313762343838356436633466396531
+35313861613466376332666565643164636334336234393962316465656133643539626163396232
+63633935613066396333653138666565636566643839343535336635643533383937663462646461
+63363336373936353239373933333735666131643463623330666566396262353461363436303963
+63656636666232643465333836303666393364653635386664666437646439333235363237333333
+66366664656639363564303530643833333461396238396230316635396333336438323866373037
+34653765626366346463353838396636316535363866373833363030346230623732366462613830
+38626136343161373539333032353939303431636432396262333330343532313864633636323334
+64616236303237393637356233383731346632616436356436346663353365313864313266323132
+34353931643131396135633130363535366664323030383938316331653138376531366138313639
+64346139353832386138336234386163313737373733616366643438643030336166653236303839
+37316131376562303563323034363639636637626162383338353334383138343638613435323432
+39353237343536636537333963643736373134353035646362636235353532653134343939376337
+62336337363162636430343436666236616534373162636264336333313766373233623137633961
+63653861366161323630356631346638633031383762333630373434336561306331313864613933
+363061356537343838636339383062343436
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar02-u30/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar02-u30/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..e087ac143012def410b9d58eb275acad0783c89f
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar02-u30/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+37306632353137376135626162366461373065666463666366346633373563363738356261353031
+3332333063376631613537363931393135396438663432360a623235386665333635626230653461
+66373363653734363266383530333866383135363564353066333938623534343836363564633530
+3264353163623238650a333666653230636436356362623762363733626334386234363562343530
+35356564363466653666323031353263396134316464643637633330383765393165383161313563
+39383031393637663639613565616165663662353736383230313438313666356536383966663137
+39333132643563666637336330323039393433666236396233323362636130633661613634653465
+65333131626266666663313332356134366562313730316130666130366231646436396136353432
+61303137363430663563386339373461386634303434323239376338343066643461396334313432
+39306636366136313861393535613462333439373834643161636435643366343166313932346131
+63373764373232383864346532353534383633666631666166363966366165663136376238663664
+32343864623564636433393430316365343737363033373661363662383930303736623761613962
+36633730356665623538363861653530656432323130333663363031373538326362373639626431
+39636537613761323866613333333938623131363331333236633337306437626666363636376435
+32373439363031643537623665376633366231623834616433623030346561613461393561373034
+64653634306133376361303831383236366134373066623931353531326562383836366537393330
+33666561386131616338356534616639316436623962313962393135303738333466343965376135
+64366361663433663830333931326334316134633532376432376133643666646237376165636637
+37613237646563306164376239356234343230343166623661396633396465346562333831313134
+30393135333031373932346438343761653262363331356230316462356636306533353163393562
+32336161326232656437613832656637663434326133366536373935303436626633303430316561
+66633131633461383139343933353862303764656461313565303464616230343233396430343535
+64343262303334663864356338643463393338646335623666633630346232373138363032653332
+34383036386633303166333565303962383137613261613436666432363739633162333634623630
+65646463653433313832633836396566666333323931356161643733666136313765373338366633
+31636535353665343362623431393262663838653766373237313435653631326334663139636238
+30613335653238613666623865633438303566313332623163353061323465373834646364346666
+62616136306639633234396664633964353462653230333539386263306436343232353534356430
+32343939656465393839646163373735666433366363376165303936376164666336646131646465
+31643565656430326264393463366264303333356332643932373135623862633833616665643163
+34333430323163613832373438333934333835353532356632343363653532333965396230623230
+63353066333066623832316332396538353138656565326662373937396265346230336363326436
+39616339653430383237373464656438363066373631366164313864313365316331343833303662
+33313566633431343736323964313835316662373932313132383132613037323664336233643464
+65643632643564636664346466613439386564303161386238346530656135666537356564346465
+30633632333434353263666333326265376532643861623337346134333861366539353166326262
+34646134323739306563653230663665346639636662343861326561386164663034626534363163
+33383262323962343937383866356664343563383762626564653032343261373836633732343336
+32373931313335356337663536353331376565343365373939313836626261613065353963643665
+31653531653336353939633232356538306361643637386435353830633031326538623132663062
+61613538396337343736303362633631323738633766383236613334326334643933323662306333
+32326234333833373763663239633066346165353462373461643736623237363438353638343532
+66636162313639343031363930353337643439643434336639343961633336616238303239313661
+37353961316330383538343834613532653539343363626139306130373031653337316432626530
+30313664303036343364653239663933346332313964336634333762316435303062393838626164
+35326631316438646564333661393639356136366233393366663162353561326635643061643337
+30373861346334633639363562626430356163346231643233346136313139313933316161316562
+64386135363236363464646566383464356334376565356463333837663239616564623533336136
+32356539393534626233386235386533346164623433336632376138316534366462383266626663
+39346237333934303033393532383337363032363464316439333038343431343130316465396135
+62616430663663653462323165336661316364346135326164623964313036636664616133646262
+63613231356231366662323633303865613139643334323339326563353162313331323462306138
+37306365303034303862643031663563386363333566626665623639366665316139653335346338
+65623638356463313538396364366263663634316131623165643661313135653239333037663263
+31376636653936313638373435363665373961643731666437393865313431636333376633396364
+34323634376132636639333137326266393264346165376366626238653563316665376434643338
+65643039613537313332396161666665663436393631303038646137383933336237336438353735
+32316330323337306432623831373237343639326331306133373635353561633538376536396437
+34666236363435373233323562343038643163353865613436326266386263663132623930323638
+66653465353131626637363339363039306130623136356538643234663136383539323436613664
+63646138373830653561396139363861363362613131323964623738303663376330656366633261
+65393536366635383664313231343363396131323331663364636163613531333037383330346137
+61633933306563653638363865353834393838376235613639643835323138353938323463306565
+33303036343263363530373362346439383433613331616465373939646431393865323766376532
+63393738346561363938623230666264366236663231346365653165623366313033323733353333
+31363233376538306437336535663263326364643763666434393139653666616465323362623765
+36623864643233383363643533613530643461373935353362376330393661643435323963613066
+64366234633239373464306230616430643634306132323566333235333461316565396565666439
+34336634353132303137666665663064616138313538303139643162623166356138623239386335
+32656130633838313735653639626531636130343564303534326337396264383336323933326532
+36303932323632376464376266363934306334323734363666666335326261363336623463646637
+39323936393738643732303839373735306531303466373162343461656232613136386234393533
+66656434366337616538336365643938623330343663623732613338373833316538323266643934
+63613835613163323962336561663330383965343763643062633066333838303464366262636262
+34636361353532303830306665396561623133313466383631613837353361666162333565363061
+65643363636130646435623063623763636339323230353262643064636134396332373663303664
+33396430383236303031663562346465306632353234666237386335306362343861303636663362
+33303830373165383463376238333839306630633032656435643738346635393466356265346165
+63353637336465373033316666323931646566373662613435643837613862373630336332346266
+37323765326333383034643764356265313265663463343230356661363938373565633961613661
+65366366343361303262343635353031616230333532376334646135333030333336303836343938
+64373834303264353938313161356635663761323463303664343738303166343535646533666337
+30363435313864373161383565656639643534303261323939323964306230643061663735373535
+35616631643763313562326465333537386338363131653866396336613036333135303263343363
+61383735666430323463356633346430393135616236326536373766306131376337386534366564
+61626666643765353234343839376334366166363666376666383333373365386334333966313230
+39653137646364383832303766613761633338373031333237373461393161656639626535366437
+64316464383066626633643764353539646434663063366338643335366437343163316138363463
+30353061616162326462333432336638623830616464653866393866356437343233383632333732
+38316139646563393937356634383765663739363462613830333863313433626666613832616163
+63393166643562643036346231613233633461346666386664303264386633656136366335376439
+36626135333239656564333966613033363265353638613065336432336534323736353036346666
+36356363656133663432643563316436636535646463646165626162366339373764623965333634
+65363663616232373338666239343765666264336564336364376239306339313862393365663732
+64373536666435626431313862656431626438613061326261616466316663613362373330613061
+65346532646634346363653164383138626134353034363762336433336634366435306266646164
+39333063643431633966343631613931376631333833363933396136623639346136306232626535
+36316238323434396163316131376430653561346231666162363233363637373062356439623863
+36386536366665663939616438643464666135613866353538376364366666356337393663613333
+36653738363437383465303932316436303066333332376234356338663534633638363466356333
+38656432333562383337356361333639336166626561323866653965633764626533623632666238
+38333739656130306165343630626436636666343034656339373433356635316163636466613737
+63323033633537323764626263633366373366353232656565663861643432326131613361313338
+31343539623236656162623462373939373361363831303036353630303634653763393039626230
+66383866313264383138323731366563313964653237376234306265333634653638323832376137
+38383739633461343931386564326332323863613661353135306165366164643434323464373436
+653561663635656130373134663438653337
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar02-u32/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar02-u32/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..1ed483a67fd57f52da61bca52434109705cadff9
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar02-u32/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+64313431643961313433346461393330646533326365393734326530646463303361303134303533
+6663363165366637383561373365396437646666636265300a326335636664616531393931353262
+64623332383232353135383564396661306661343034366232653731353633316633663066366362
+3633336466326334630a316137376237376238653733326434336363336265333132343862323661
+31393436666264316332386261636433396265346639623031376239363036313339376636663633
+65393366383831666435373937306361663766323832386434363461663536386164316237636635
+37363436316361303265643566323563623534613964366334383935616631373238396336646439
+65623865326462353665616535306463336231633339626536386532356636326138343562656137
+36323230373534333939656562653936386437623537613634343963396336363531636635636137
+64663938353763613131333739646639623965626566363434353062396664363466623561323030
+32346138343539363731363433623631633230383330623862353134643735393634303861303236
+66306434373163653734396466623564363139626534383035396465303265663939346437373833
+34653164666335646263326234313434653936643536343937393164353261623365623963383037
+34373739326564356265343062373331393066653535396630346666313335653139643339353962
+64616339633462636437366231353931336564656335383163333765323333363565323530663865
+38313664646530653530656133366135326562323335333563316261653334313334333133373639
+31313465666263653136663466333164366338653137633430656436373335353661316239633131
+61366338303662623263343465306666316337373735346333613532656235343963393161666564
+62616663666261316435353636383461363738366533616439303430376130343365366630386661
+65303837323265376639376334353137333061333439393763646533363763346538613361313933
+39663364343536616666656165386231393663326662663539633135613464626466386336393463
+63633236333936316364343162636431306262356232386264656330376635626235653365336661
+31363336393966316361653065383233623733313639383438653936383838326264346336656236
+38663538333438623533306637353263623138666538323662336433333836393135323236636438
+38666366643839633762343933613031343632623639343638643338313038616138343534333734
+35356331666163346461626239396636393666333466633936366438383163366232393737383435
+35653031613364623839623761663930373833306265303337613963633061663938356465626664
+33353463343662396631333733336266313632396136303537316630616232363938366131373136
+62333738663134323766616331326230383738383462376161313633386266316532366463333763
+34343835396439393463323234613663396361343333636165333961376164393732386630613733
+63633932626231623661623633633038333732653236316432303066323737623366313263613433
+64383836313965373932393661666662323836376239303034633134363337393036376566666262
+61633837393633306530653434633237623962303565656133333662656431366265323436363162
+63616639636138613635336235373634616365343164326136336231323131373665353262623533
+30336533623734306332396362653931366661616339366636373963386566323137386362633337
+63393361353437613965313736383434393265356539373465343163666438643766343738663162
+39316135313238326532303036323636333630363334633861336565333931343066633936323739
+66316438633165626437393666343632396630313064306561653037383031666134646632656137
+35626234666161343233313636383930643532373230303137613431616432623439616562386330
+66643639653030323938636464343238626564346564626362366535656165393035303364393465
+38396137323933633539303830303635306265636134383566343563323139353731303233346631
+38316532356432383433656431326233303836366261326530643536373364316637653661353538
+39336166366465376232663966646265646566383139373065353563383639303537623662623730
+39636363623931323134373739316530323238323562646364393539613331376539623864616335
+37646434633137323163303266336163316235313765366664323138376665393630663638623739
+63616666326363323131363838393165336639323565346438303462316566386233623838376437
+62636431643066313038333737663064316261303531633165633233363462323261326434333163
+34316232333964356431336333623834366637626637333962383566383531373830356461636463
+61306434643138346130396534393963393239353939313066663531303932346466323765306565
+31393033336137663066366436363034666464346439323730356265613837323539386262626630
+64333465393230653037613930346362323130643632333534363032376132303537663033393637
+36336631363361633863636231376639383034333133613637343137616464643935383862393532
+62323965343239326238313365343132333165316266353038373761623038396538653365353031
+30373935613664663665353438356338613832653631666635613132326336363763373437326338
+38336564353961383932393032633363633832313235393534613031346437613938353331326535
+34616439383864366339643065376366633462643337623330613136376664396439313634303737
+32373934336434323837633931366230383832663831303638663964633462326166383264356534
+39336134643731343665326462376338353235353238643439363262613737653661666137653437
+30346638636332303439363239316534363430663133396261623531383536666432303163653238
+31323230636639643332376337346530623066313232336161316330326631626466623039663034
+33623665323862613961656332366661313837633161626231306465393135626338313330346636
+31376264643733393061303734393663396139313364393030346463656365393637626264363539
+33313438346233353562346663626533333232313466346664623039663432386363633736663434
+30656233353538323538383061636561386234376337613731353336393863303465653366663163
+32656364663435343565313637633930346534346466396662366161663030643836343966636230
+63613862353233373632343663353135393265366634616333613064383233383465626230383066
+35643166343563636164323235366234316665343036616638613864663364653439646235313734
+37653833363963396362356537383963343831343437333866343936353662333537326234386263
+66646536373839613765363665323633333765306436323636623333633164346563333231323533
+35646331613338373664363736363933353936653030633966373734303566383137303561386333
+30303037303763366337363232393131396437646666663666393666373231353162313065316237
+36303931333464386361623238356663626363316263613837653932323262303930646361663830
+34353139376430616630643039656336626530333336306366313732623937396535326339346537
+33323337303966643963653563623966366266356466303166623932326239313836386465613466
+61623639333837643633646332653539316334616664643861613235613933653938396666646533
+65376333363565343834336637303064663933373461303033366463306131656530353637653330
+37373039636332393734643765313562653634393465663765643435393630386635623836613030
+63376530653338666333326338353930663330396331346539343733623538393761616637303261
+39356166353431386164373561323739636132623133633539333936613031313032613339333636
+34393164623363643862626239646363376238363831383430323230366139656532633365373866
+38386663393036633066396361326266396636343761303363616264656466383563323664613236
+37633832633861613532616236656365386139636666363164643565666232383531623966313666
+30333035353438666331323438336239386263376466343133386661346637653235393864633338
+32383366363836313464653862653238663232333533393130636534376165653933376330623630
+34323633346436343738623666663363633364663031363263353132623765343637653964616539
+63646430323734353763383066373162353966313761303966613262303165613836393464326338
+33306239356432306161346562313162666332343266353335396635353035373465383735666433
+33376563336634323264346463363964396436326633363937396261343735633330313136326435
+32356630343739313337643234663139326661366235383536303663326535333563613633336232
+65653864643833323732383935373637633739653463313762646361363038343832306632666632
+33366237313964623465643862643336346465653665656133316231353162393730346239343666
+64343266623461326436663131623337393633323831336238323062373032343033643761313432
+34633461313336323837633934643338303762303131396564383562383136313036613662383561
+39663965303366303065623532666136643838386437323063303263633231323763636161323764
+30316336636532643831393761633134333163333431643432613038646663323638663266323634
+33396366393636393435336266346663313661316563353035653661306561306637613030306263
+36373935333366333031356232633163343134316365396462356661626436333539383064613764
+32396137316362656437323732326437313033343830353530393933613231666464383837393234
+34383332643134383233653061633065636233626338383837623239643266383963316334656264
+31643534313865346130633264633235626636313034393561333836346330396563646334326263
+38393161616330316362353462333261333966633839613938386664663739396135393937386263
+32656338356335666632393230383334303334393130343631333761316136616430303365626534
+38326637666633336263323562366262376636393564303339356361333136656636666433656434
+31333937383932316439656230336437643735343563303861616433646266346436626131393266
+37313737336234323861623939613963373735393462643830373032663633303335363962353134
+63393334623062316437353433343834316665333430323834646436663732663839326631333362
+373630333732626636653836663062626363
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar04-u2/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar04-u2/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..a92616179f68d68fa6dfa2770c24779dbea11635
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar04-u2/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+31333038643036666335653334646130396436303863313139643736356537613338656538633964
+3166613161613838383466346663653332353537323730630a363335306435616166633730386637
+33633237613130616531366261303266626661313630623431346436376563333239323963623065
+6663613632653566320a386263613535363064363636623364313130326137353533303838633332
+33633763396334303230633664616338656634653635613230653334346132333130353936353633
+64396132376331313832396335383734356536316262353632316231616365383462653731623835
+38353035333764366338326262313831643033343165636436633935666163346163316538356664
+66613235663432633061343161356238353732663039333266616563356566353264343362616236
+62303636376435336466353934626465636536653135653564636437306363363835333863643334
+64343361626339313830396664646532323964613634366331646564653931306239613665313564
+31396363343934623966613466326436373236373038613535396365376436326563626630323739
+34643130383232323765636230383966663736353765643131656233393734303039366434323563
+63613732393531396265613431346338316566353231353066343762323839653237353737623466
+62383837636338353434313564303130323636323566636132356237666235343437616139386666
+61316438363935396365633237393561393035393462356138333837323137373638346334366538
+64316536623364356634653735336232663031346464626635326366303533653666656639376335
+63353665356363393230303334343661336362626634333237356132623162333366633636633138
+64356539343537376464306366633662336537343438396133623630386264646163363864633565
+66613732656562636265343033613466393336376561633566303935323738616665663431303363
+61313461626264623037393063656339373833313961333162616262656534323565633866653661
+36396166333366386362363361383439626563346530303337616438326334333865346239393162
+38343931623261363965353162616365653433613361663863643433616466396439383333383435
+63376364383136313339313964346531373764623432343361333039616365356436303065653233
+34356238323339346334613131353933363935313033353631336530633539376535386361613739
+38663964626434316531633737326662313964666433656139306561653635363064366463326562
+31353736376266373361333738616332343535636234346236666530646531663663323239316337
+62653337653630316331653462633564323432316535326238653964663032363431626339366664
+38333539373937306566393965366335366231353139633437616538353633653132633631663533
+31376131363237363539663963653233613864333335633437643534663832636430373639646136
+64383233326365386433383133633435303237626365363134376637316430656132646164623739
+64303265666332633261333331373336613866663538643838316332376635633766663136383666
+31313230356461353339613237633932343030346430303239363463613631323462333436343031
+64326238666463313266373466383364386365323639633633383135663765613763306538346534
+36366330363230306537366431373961653138366566656439363561663964376263333332316131
+63666434363933376533613338316263373861636566613161363337363962613064653438636464
+38633332303332643339326539313839626533363339356463323434633836393565356262396137
+66373133653562373961386632623338306634643363633565333861303438353865346132363838
+33613661646130633862383363396430653763363031393338653635343663313734633139393830
+31626235356363306536326437343464353133303437636238626562396337653632346365643563
+64313836383037383666376137313037353865386532643136343161626532333339643933336662
+64646162633838666662343366363965386264333061326462613031646262323362333637363034
+66383931383431613064376337396466326236306264313736663338623963613162636661376332
+63363831363035353265643065633435633663313432376536623732666236346435376232623536
+65313132346266613933366631643766383334653331363535643636336331663239313030303132
+37656230316563633965323533393765633030333838306263313264643461393666613265323865
+63303534363534623564613636353535333835383966356266613966653039303665363433636261
+65306566666334653262343366346635373639373937383230666332373563613566383961383034
+34316164616135326632653265373538613034333939633033343163623636333634666137386366
+38643537636637373564653731383230656537633163313232313765643739373034393834636630
+62356364376433623736323138336233663865316162376630613436626561393563616139343736
+39636535356665303533393266386361336435653339636231666139623438343039396263633134
+30396365633865313062393564643333383130636362343632643130656465636232346432393962
+36303039346262306361666466306664316165333236666462303535626261656533666636373565
+65353033616435313462343164623337323764383030666562373133653438323933333830623335
+63353931333435336431663965386634313731666231646366376164326337636466616237306634
+30316464376335356161353662356638363635613165623932316263666639663766376631383331
+35613637353733383039663635626232353637353063346531653037643431633764666238343333
+30383234623061316261386131396462356562623832313036613433313239366166343435656332
+37396462633733316264383833646235373633386333373265653739636533306664393334353832
+30396137373563623730353263383561303639643431303232386139333039646635663835303333
+38643733396662326632353462663839393532646465356366313466653262343431373338346431
+64616633643166643132623232356430386462626165636632646566656361383031633537656437
+36363133306438353339363661343334613462303434346137303131373364343838646437646266
+64653264313965613563343763333538643238393530346333633963346662643134643631383532
+64643337353233323463366236316437643065666131616564333535663761386565656630306339
+64373235313030623336313863363061313133613361646138373636333036363233616565353638
+35303666333032393736306537396537666165333739663331333264633539346236663731653964
+62376431353562303261373334326262656466353234613535306239373134633566656666333461
+32356462666331333837393263363666383537316332326130636366316432353930616234373132
+64643866353334633635353432306132633936303535366337333534306630396533656362663536
+31353065623132386264376331653638366434356263633637376433393263396365613830313934
+30376538393833316635383434326533653232636339633939633135626139336231346232313034
+39343761303131653331393566343039356433326438373630373934353461306661303530333133
+35643232346131646463373461363931303665623832626661303430363238616435383934393032
+31323233383733333263366662396531333132613266633365383166333861666138326531396137
+66623831643035393535353332646136316166356135336465623164323933616333356539653061
+64326261386363376430333961626264656236343438323136643633656639393764633038616239
+33323430303563653933613235343637636530343965333039393663393237643137313065366561
+38343334633833653933353837323430393330613964333066636164386466333030303435306662
+63613165643665353539643064303766653161636532653365633063646335633066656331623336
+61613564323062363131323331343330303937653533623339363834623335393633663762616463
+65363832316262303438353333336130383036653335373063346537303636663931353661623062
+36383938346338313366646165376435376436396365623132336533653961643965653564303837
+65666337626339626636346138326166396436356361336435643332633939353236363066346363
+38663830373138643235623465656134643433613737393330623962346465353237353732643562
+32663666306331373136343131316437643561646437653961313463353766363465643966633864
+37646163633532306461666336336133633738643733363436626633653666346262376236376639
+34313233643338363961646563346431323338333730363738326432343063376463633731333333
+32633830643762356238353665326261633336623735363166373733643938366465333765323738
+33303134633134613165376131616237353061656166643931653565326538646465316361336632
+64343363633265663338353930643938353664353665396364316436633339643233623432313534
+31363834346336393534356165363231353438646237623532383263363330646337336535666337
+36313331353032656361343535386663393231363236383364393265616662336264383265613064
+61363262343132383166613434396463626536623430393232346638386233663838653135613733
+35333065636563393736616339313931373563373231316639623136313230316630306139666533
+36396265323864666133353663346633643233363436643234613939663139353138623762326663
+61396665336337316434353966363137396561396266323761656432393331346136653637396231
+62313239623039666335316339313036623137623031623162313961343462636330666639636531
+38313134396437326436653937663731636233623236323032396233333632626336313837393430
+31366135653332643365333931386263653764393036323639333530626537333036653261653032
+33313962353765613630653339343861616266653761643333326530346634353734626432653534
+65323135326562636635376563313766646632376238313339643139323763636662643538303265
+62623961636632323734336465346163666437643161373565366364373136306239343763353261
+38386132373837613735643133386334656364383865313731666233326263646563633633386265
+31633532313335653765666135333363626164666139323833656131663035383837663638393832
+33393562323132613538613034313238303234326439303738636233316363616336393537653432
+323234376138653230333931643237333136
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar04-u4/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar04-u4/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..d01e447f3c2b83e72d7067dcb452896b9655a4c6
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar04-u4/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+63643036336137333465333939656430623461313830633461303633623261386466613862643431
+3266333665353663663166363933643165356538316430370a623962343765626532383966333432
+32333462643363323435373761663564323335636361366564306434623565613339346562633831
+6138643235663339340a313063666336383537626130343963373133633764343931343831633639
+64636237393035626365366238623564373166376362346434363236666333653361666335336238
+64613236353662383863643336656236663932383562656265613337626636343065383332383136
+34303232343734396233656165336531303137666231336334393065623834616564353836383334
+66333634633565363239386137336664666466306561616264303062376361343237313364306537
+30333537633461383034393338323762653737383438343733616432326337353361396336393832
+30316139343236373738346362643461393135633930323965306332393432313666313238333434
+36666162306639343337616365316461346161313733643463386536326662313335613034356166
+65373263373863393166313834663139616566663263356163633033393533633034613232643436
+63343731613936616264396537366337663039356630356332306234353539613739373461373131
+34613765303532636436356533613362376536376334353262326561633464313631383835373434
+31376463386164653935623333353836346266303638363664646662633131373330653730326166
+38663962383265353739633534643638613265383366373137663165323466323662303333393731
+62393630363538373063323264346365356635323934323830343231303163343932323436613633
+33643065353330616562363430303036666565656531323330363931333862336132303662386438
+38333734303537313338616366336538313765303333393263353639363630346237313735666135
+65393930303463316536643037313330373030643336633062393533613663323963353566383233
+32386134393964306134383461626261333562366562366235323237366363303533653137383237
+36663830643665616534333337353864393164633964663334633534356239333366333938633165
+64613538306537363031346635353662313738313236346662323462303038613165383539633861
+32616130303237393934613433653536623463646535336530353661346237353030663465396265
+65633062316663343461356431623830323237383338643337306231626661626632393634393134
+35336331356333353836326634353462373363323265633264336563333031383833346264313064
+31383164633164653933653731623238636163303333376462636134303234636134346566616562
+35346264363735313461343439303536663963316263366630373832303230633765346333616331
+31393933336335613130653066323636373262313139633563343434356230303935616430383765
+36666332306463643964623765373538623362343431323065316331316131386666346132303166
+32366333333862363666396230383461653937303931346130336239343532386664353833313261
+62643436636638656435653263656634313730336638383738613465393965326166663661316131
+35343863366362303635613065626336323134626465323861363832646330306333376434333534
+66663638363937323238623465633736316338643636313838353032366566646263313937393563
+62353337386234386638626532393939323363653532623835323137383835396132376136383034
+33303566616636663337663637393965643138376361323535613163646237353438336333336265
+31303636656561663561343630326264393138353761326163666233303563643263663839666565
+64386263386534326666303534326166353766333230373531623735383562393439376136666533
+39353363373831363166613764343662656432383137346132326235303430393564626138393238
+30313964306339326637306430303530346537396664613836613038363232626639616264353664
+32643531616330336361363636373032613862353762386434343163613162356463356639656138
+38616235366636316365663437323063666434356437643733666366636664303961353835326334
+35353366326162373066313730666235316239336134333635643830313532323734353364643733
+37373362316634656437663238393439303066396265386439383932653234353766396339616130
+37346336633136623661363535313337393030373661323165623662313763613364376131666130
+30366234373064633465656139326238316262393965336534663461646335373333623066643063
+61366162643562363662313061636264316438646436646538666437653636333464303866666465
+65356632613739353839336161346637336566333133303135613363313834393035633530326239
+65613330316635656139653261613166336261316333336531653064393437666462613535386530
+64633139323934346466386139643134633365326162383061626565353565333963633734356131
+64636234666636613134366230366433643135353834333335373630353535306334626634323566
+61366166343335666430353461343465353333663462356562313530633131613930313632323663
+64356538313161343234633865643533376433623735373532626465323330623430333930613837
+35616261356538363961323433663862356633623163363236646665306466663939616661313564
+61646438336636316534323163616534363633383937663563306632313466306334393535343230
+34313335646331343663343863616634646263323534306266353234396261343232386137653530
+32343431303431633939643835663332356137336234353835386536616163613637623337316661
+61633831333537646539623034636131346230666538353361306163666563313436633663346439
+64386330333032386231623936313665313838653834633331613336316336363531303561343333
+37393431393461376430663963366566353363376535633635643333663865323937386130346237
+61623032373461323932633838373863363438373563373231343434666330346432356262303065
+33396138346230363733663539356537633930333264313565306439396236333238313931653062
+32336566666233353565646565653234383763633331323238323164303234316364376133333130
+35336165333833623539393565623535366534356135376163373839376139343261626235306637
+30643966373633313931316237376138343536383632306432653266353833356362656235653437
+31376631323636653462326332333930646365353534373031306536383964326366323134653635
+32333064353766616461653335386564336261323265373363376235383265633233646431613365
+34373332623334396139666332323162303230396631343734383936626337303830353663336466
+33303834666339376164666131626535646262626134626432366638323462306135643363333662
+38626630613066663837333165303066326639633131383830353332386134363862346461343361
+32623261646533316262323535376263373734326430653337303234663164633866313837626135
+31326632656333613932343834373732316635623261333032376132613863353861393032616464
+64656134306337666335386532663232346632633737393430396234373731326663333737393034
+62316665386332313130666130666435393335306635373034376165333665396466393561316539
+66336562376333333061653166346664343135366636326566626235396164353837313831333936
+61633130303830313566396436343861366563353530343133353761396331653666373763386638
+62343566373262336466653034326133616439656530326464366537663530643762326139343738
+33633036633439363731626365383536623737363764336261333837323831343365386335336661
+62356364623361303538663036346561373564306439343036376433323762313137393538383633
+61613030633462376135653932393239636662353231323238633563363734393035616362643365
+38383132643936393765643961653832666363353462303462613765343038653633376338373265
+66623134366136663135396131363265636263373535343632643936653037383932303639636136
+33386431333735393931313932396162646334346637373065383136306430366134356639633966
+39623235343739333661313431323337313963663263653138376234356563613163366333366332
+64343661623334353362633830616336396132346462613162663132616135326133303730326536
+31366131386334396566323835616135343162313866663562343666656430616161636338323162
+32363035393139663938643435636330383132613639323735663038363061316230303236346638
+37386338326536663538366331666135313934653236666665616165383033376138633965383937
+64333131316230656562356263376136306635633331313739323964363134323865656437336632
+63363138353164333738333735313136393436666464373965373361626334373939633332323066
+64393834366636643933616161656630623064303862656538623135633934623238306662633037
+65376530663063346564353565333763346163663432306531373933306532343062643931346663
+37323832653031366431373836623463333031363332353432636361343965363938393836616563
+34666335316233386430333763666137653832356663353837663565633430356465323761323934
+61353765343638343930366330666138373664323761313562373230356163323235356530363335
+65313765613737383937306132363534326636613039343062336463326563643561663031616230
+37633236393363646638656366383163643366343963343437393266366433316163313465323564
+31636133386339343532376234316362653639626463303836643865373130663038656633323464
+33313633336136323465333634616339373736326435396331393038666430646231333634356161
+63623234366538333265336330373131633036663437323131366631383364663863643431343838
+62613863633762663166343230643032613135376535356131373830303733303233653664666362
+31653733373764636638643465316130646138633734373833323164646639396532333661633836
+66353234656334383864376564306339333939396165636166613237386563393831323032393534
+38356136333466306131633538323938323638393933356432363331643864353862663838663137
+61356661356264303365306639626362396363383337313436383438333130643363663232323765
+35636432303934346261663765306435303830616265353639396334633036343263646134363733
+333738653361326662656261386666663365
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar04-u6/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar04-u6/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..f60a9557d7a9be4879cf6b66ff4a4136f2f4d4de
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar04-u6/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+62383533363536323537323339316233376637656538376362353339333435643761333762313463
+3133643163313834663164303831316336353039386232310a353238356537323933346136613264
+33333537313036666230613963353661376166306432336336306264613164613131636266653266
+6134303332386231650a323363373035396232633833623337386136303136613037613139383962
+61313731336436376363383132303563363035633861363231306463393733336436376633333533
+33623263316437306232346464336632336530323965353931386133323562636263393931613933
+36653563636363643864356631366538613632303661323231303038613834646261326136343237
+64626339383533663163323234663761623936363133313933653136366164663763373465623438
+66366131346533353465383938313930616431313837656565633139336237373133396433313366
+65393732306639623730316638623530633535303631363731353534343834666663663036343261
+39383438626465356262653735613135353966303361363361376466383835336461353233636530
+35343636396239616235313464383031616230313562613338393630656631333063626231643966
+31323734316234363838303638383461386537383830353063633762343263333961353964613936
+36663630323531323831363562626464303164313633326230356637656537373761333062653333
+38373738366164636364346633383932303935626463303433616135643936663765323930636538
+39383566333061386533643933633266633264616164336363643835666362383739653038306433
+30383839646337633533636633333033306632386632306438336464623465626537306332356434
+65373437646535643334316161656335356539386662393763383837383532616165363337363235
+38303935333965323934353862333561303030346661306234653831646235303366396633326161
+34666632363666633133313766643438353564383936653837623537393561646139363739323235
+63643433613732356462386234306665363562613330623264363839613435373930316232663839
+34376361623638636232363430636264643064623164633336386561353361316637366439323766
+38666635316333353931346231643562633137356264666233366139336365653362626564646539
+38666363373733306436373038613464376138393063313431636430613238343034333632626664
+33633830363539303038623262613531656131353534396336303037643464373261343036333337
+61363761343764373936393764383365316536356338336230366635336533343062306330336162
+66343335666236393130343534646532343963656137616537343062316564303265626433323732
+36336132303562353535343237666661633365376461343061356265383131303337393764626264
+32636636366136363939613263343563393532613538393632653139353634363162356230613039
+35666231633966373830333739366465383035306266373130373564626566643235373961643135
+36336663366535613135613037646665393365326137366164663134623939613037366637373433
+66386332333164653361313938383631333363643762623065396536313438343638656166373137
+35663634616365346532636462323132623633396637343839393732373066383838616261373035
+37313766383434633739316161393033323264393930633938363739653132346466633438643761
+35306462363530393464666466613430313164373461323637343632396632616563363664323965
+35666461343765386230373334323230313566323062333932333932396161623738316534333830
+63623365373034396138353663356231373331366539656237306537373733306231623066626332
+64313438646436613962396665306639643662356636616262323037393739373039646665653534
+35356338366137616261363264346663336439636136363662643761396164626632636635653962
+64383831386133633339303865353233343733656264373632363731313636363430343732656665
+66393631383039626431653361636635376231613332653536633638336236333765386236666236
+61633165323933376362313634336238656365633337623935393334643736633738373532343464
+32333139376232376431333864633433323165336639336165666564393334336339353765643433
+62636434386238653037363336356531333730313031323430306634663239313534303237366435
+31336264333864313935366531383339313931616631366539333565376261393835393233626563
+32626166383436336135613533323039623962653035343161623762653765623733353035666532
+31613262646165653765323732386633653637303530366330333339326236393136646131623130
+63666461656235653239353862656230333834363866616361613138646638366164333061633237
+32396265353332353435333730323130653064393333646162366132633739313264313865646539
+38313634623465623439643038396264616362653235663964633961396663373961393566616135
+61336566316538633461336439653763356363613630303231366631646266366634326538303933
+36363366613835616666306633356236323962656630316331386363303536366131666531343432
+62366531633432636166353636346238626130363638613134653063393766616434306632613966
+61383933396435643530373666393638373830653131383661343865613234333066323663323631
+38346164623762313564353937663966316165303864333536326635383533303164663761643561
+35616633383564353265666335393831376633333165353139386338396362376337353031326331
+38323438646662356463366161336132366433336533333035373464643335653736616262343564
+33336437326664393839626365323130333138653837323965376463666337633765373665383831
+38356465306265656566663634343362323235653738613566353765643937393766373436353839
+37353037663335386261353132383163643337663161336434366234393034306662646333343564
+32613836393333643834313333653530383038316165633964313033386265653264653234643466
+36613266366631663230363834323564626562363864306637396231663433343732393036613735
+37633735373430626361636232613936303839313531626362366337623233623731613466366635
+66626565653939373065343562623130306564346162653635643433366466323162306139333630
+39633566353835666266333531623731396565383562346635316466333735383730303164396538
+65643736313934383132626662663836343839323262343838393430633461643134616565313136
+35666662386331656336613436366465393263346166376131626236303064306432393638343436
+30366331663431383837346339613331333932396439343861396433363161393232313334306562
+30326564393037346139376238323139383139616535353638346634623237313865633035313435
+65623763333136666265353761643033663030666330393932323831396230643931383863363362
+34373031396362313337303464613538333564393730316138613831383737613665383139333138
+38356239303337666238353635313664643631396461356165656637396166326238303630366130
+36373033373139356131633466653533623262326139313264326164666165376233613030373939
+30346530303139373039663166343231326130636165306639396231373762306665646237623830
+39306331303433323737326564656434663464336636323961366330653065303964623833303735
+64363064353235383236656538643465353337636338333930653765373964616633366637353031
+38386564613739306532346162633138373964623237323631346335623137366131356536396230
+32366231623161373639653564313539306430323432393732643830646432393363306230313535
+37373734333164346464326263336334373463333761363737386666653830636136393031653965
+37643039313862343734643564333631646239653265303932643764636261326661383331613364
+39653631316635623737396562623835653265663630336361366537313338386631326266366662
+39393365663261323830396365613031376666633465323332333239656263343338633139643833
+37613030313864656132653936353035323233366539346133386466303162373338393735363032
+30333035343038326332663731313961343361386137626630336235346362613236633537316436
+31613439333430386634306534303438613466323132303439363264646463323237613065383431
+35633736363161313762653465343431623936646135346535376464393532356334303131613030
+35386461303137313363386466393765616530373835663565336638373365373961633866386365
+61626261613265633439616536613633633365306166366537353436383265653937343334396263
+66636531666332316336663132663462363333316230306133373062653565303031643336303766
+37653539333237363534623362633261323438343030383139613039326634663630306666343739
+38363332336138643461623336353833326233363263383230643333376537396534653062386630
+32313663626662656532383331316632613362303165363533646465396339303736643735353130
+63363964623631303334366465653631323065383561366264623437656634366232306634626665
+61623662383661633737336531666563343365666231333633323139643564333862643765373134
+30313735373966626434643530383236616565356636323831623966393136633862633661306361
+62323361646130363434303138666533376433363839323139663238363730613566666238623765
+61633230326433376663353733393663346335363734666339333465623938323735343161346632
+39303161336230363363633261363463363536336165346432666261353230366333343536653037
+33396566326563623761623439666166306232356538326134646539623336333431636461373466
+61336566316664353831303635316361363833303838313031666165393735636139626262323439
+61366263333237353337306261663933646331356163316232366162326363306531313134623864
+66363634393366613132303664326632633439313830353337373836613432616663356166363364
+31336466643462653737323464643130653232646366616565323964363632306333316362393138
+37396663323838343962363937343266303831323438373161376164346162376462373234623134
+61316465383863376162626261396662666161316139643730633562636262303734333261613430
+39303864333233393432333839343933633766653433336462356366646531646538373236383030
+303131343537653032356264363431346665
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar04-u8/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar04-u8/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..47e14e494edb7ed0ae917c7c6855791179d5d314
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn3-ar04-u8/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+39376564643338653262623036383134383238323534373733373166633837313563333131616461
+3162313334386439623939646464323930333364623035370a356237356263303036313933626634
+32643630383032613663666666303230323838343432303730613036663966313231343634386366
+3163656134326435340a363662313966343566366531613334666237303537656563386438653736
+35333365353131343035393832353734356538626461346366313032336662366261316239666665
+62346435363063393131623564313735313639623663303763613535363636633163313261343736
+38323437633733373363636338623637326235656638666635343931616533393964333364616463
+34386635366361613835373563613532326366386337343138376430623433366337666566363831
+32343735306666333238363939656435383066616234353063343065613736626632336132326232
+32343938383765323666613863393736353465353665373738366334386335356332353262326561
+65366262373863386630303630613832353031663962323538316634343562666439383866346537
+32363437336334653032623732666430303234383562336362616639656431633839366464663039
+65653064323463383931653538343761343561373332383032326365306161633730333233343031
+66653861623964346562666161343562326230313262656335303532666633366265316439346363
+32616232666339386233633838306162313632626166326166386564636464363234333663373164
+63396435363338323866643539663961636236643262343533613838626139393632623363636563
+32666461653338313364303931653533383730343334633233636234623631666239646237663763
+65623831383633666539323361396335323238323339386432343533623864356562353831313534
+61613035363536623332653863646630613462313830366537313466376434653463616135326433
+32653532626331333737616435386532613161626362643933323534376266336363343965626630
+37613734323263666464313862333536633965393162636134323863666364343164623930613432
+63363166306637663236643336663031373434363963653037656164326137313336633533643531
+33333962346233396536633836653964323934383539633161393634323132623532363232636163
+30353930366130356130376530393162626338386430313930613665326230303837386663396339
+38653031663036656338376134306239656135336636363130343839363539323936353032336635
+66363036333037663836646338356139626330383331343835666535363434326531313462636234
+63366536393162313137363335626461356135386263366137353961376362333633653662376364
+30386336336364636138633532623034353534383064663036366662653935623134353964326633
+37316136636533376438383530306564623266396336643063323437363762333531623031623666
+66353331653965303732323838306364383931386538343865326235343436623237393664376665
+35656433653039333736633134373731663865343361333838396465363662653138376136653634
+31373063653935366637366564326531633064643061393432306432613339376636353836643762
+38663539383664306165363334376232323061663138326262303330613938643434343564303733
+61383163363166356332396161613138383738303331376338313839383131303531623164643664
+35383235376231316235323133383065306633303337393134326239326135323536613166343963
+39356133326661316537376339303061323537326463313937643765303430366631326138623231
+62383065386463626466646239343166613437303963643833323735363363303861373835613631
+64646134386364346233666435613936633637636264353161626632623464366464363062343132
+62383339313937613664616633653563646330633135313737393031366339353363653134363536
+64646533663330646366353936373532366166366437326134663962366634656339316365323465
+36373637323865656132356135626337303235303431653066343130633262353539366232333765
+38383534333535353566366430373563383233656466613537373261396533646134653933666363
+35653361343738303638393838633030613638346634353262353834623235393832383737663164
+66333736306339366564373665306634616632646433626439393433663164653339633138316661
+64373662646661303232326462396334633334656162383162373865383361313932323263323333
+37303061303234633133323534326132323336663233373639383132363530313464663830643636
+61633232656431356433663138656363663661393465356362306339333133366630643238316231
+31313434633530383265393430643131633833383334313337343138653961656536306538376561
+62623931303536326562363037613064626537663365663733303537633065663438363663323966
+62623766323830336637616334343030636235666438313132323137333064343530643637313764
+65656332613732353164623439643039653962346136393662633233373139383639623034626362
+63353061653532663638646635653165386265303133316262376335376338326334356566336332
+39343736316339383632633732666438393039663164303835353061363031346563376639376336
+39626139333433643464616434666138363138306331333666323738396366633634373035346234
+39663865626230363639303261323063616539336433653337306261383836363463323461353932
+65323736346438393333353666626463303666636635646134633434393237653937353934626232
+37666562666462316538646234333630616663643166653064396535646430633036323035313366
+62373934646634346330626666336233663433303139363336663831303233653066343933316162
+66313338366332333166303665643637666437383835623636306531633430363635616135383365
+38623234363431346434363134306339343638373164386239336432373431636565663830393237
+33643962346261613533326166386638326463666562353534316262383365623137356439366637
+37336434303337656264343062396361383065323261313332663162303530303235343635303565
+32343033613531396430613536316439366561623937346565643965376638653066623335666431
+66323466623131323038373165393763633762333438356663343133316366383734306337613631
+30613861643165383162353731623731316437633636626632346335336663363136363132643234
+32376637646466376634363566383565393162393939353030633566643664386531656538313334
+34663835656532616361313962663733623239393365666636613266636130653436326231333964
+32643561386530306462633635663735373539326566316336303830396430386330653535346564
+36396164656565656338663235316336633137616662353138636439346638333439386339633464
+62666430303039353162656533643630663163333966393035643332323030373131303165626663
+65613231623231386531383133666436303035323333333439643963383962346165376364623061
+65316537363033653265396662306666373963333637363435633735346232363361316662653034
+66353835656361626336326636366637333437636530386436353362393134663564376264376233
+38363639376266623132663133353535353231316630623366346231666335303866366263663261
+36396338373639346562363166356532616462663033646537396131633636326462666236396637
+35363264393038613339616534626165653465363462643761306536636633346437613036633263
+36663137626437316130333564343661646538353966623037336335363531646564363963303539
+35613334653964393534333831663538616365323734313165303932353030353364363339376563
+61633663376564303365313461366463616462336336313032303065663438353863323736623534
+31323461373532646430653965613734663439663933646437623165643331623730353939666130
+32653263303539623532383839383166666437323737643337666462653262383464313862386636
+66353166393163656537613934666638356637303066653866323061356562386234646563623732
+37636563333761316436356538376461353531313064366237633238363761323766303666646662
+33626231363838633432343235616135326139333333383661303933313830643763623365643639
+65666330666336313662663737616630326366383431616636373136643832353763653334396536
+66343431316563336661336330373033386661633066646662643433373463383962313665633134
+37383239633965643561306231306163646661366539333530353533366538666333623562623835
+39303437653130613861386164656438356663636131396164653435343761366461383832303365
+66346537376662353432366333396638373966333262393634323363616130346431336666303335
+62326531663463323562313062346565363465653535626461333136356365393333643330313161
+33333439333831663665646535653965313861306537663134633232303937393833626135323063
+66333433663536626466643935303531353036656533353430363330613938353130363461656634
+30636566353631646431613533666664366166633430343236366239393735666335353364343030
+33346363623031316166386337623837353632326263316636333033386338666663653261396134
+35336433653732643161393462366438633665343831633136396261313465346639353931643038
+37333465646239313865323661303337353334383265303264306661333663363266343066313764
+66336366393732333433626661333934633139623161353930323864363662303432316564633861
+66363833613363666132616134613832663764393535653764653462646434373566343661333566
+63303961316438653437346566656531363262663335363964306131623638346133626336343135
+63636366306637346130383363373030303464663366643539396638616262303738386464396462
+63303263346562356633336337396163376165393236373630613664616331393562323930656232
+66386161656134343231623233396239393639323462393762396639633532653530356435666661
+63643038333763386361353164623636383239336430623962383637343161346639393937633632
+35393863346631363537666263333630636566313833346566353863303038313564306336353339
+32333536333232656537383563623031623365653937666465326431323337393532653131643961
+65363834623463353361363937396466363035646137343666356161306438343665303730383361
+646134363639313739623938386336336532
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar02-u21/etc/luks-keys/dev-md127 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar02-u21/etc/luks-keys/dev-md127
new file mode 100644
index 0000000000000000000000000000000000000000..9394ac070e8411be7d8f229735b94b66b9966836
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar02-u21/etc/luks-keys/dev-md127
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+38386335323133616634633935336536326138343230313036313534313566336238313163633634
+6365313662653137346533376330376166633631306238370a623836666330616539623733393732
+61653434656364646261306263333661613731653162373230353964346238643439653239366533
+3165663539343265610a646137646561396565383363396563666336393138303166393064306133
+37316536333335653463386132383361366530396230333662363433326239343530303866366365
+66646634363631333730613364326134376461626138623865653338653162383561653264646563
+32636131393565363931363332346639613534386132613932346463303737353431363162306538
+37306633623038633030653161643631346131623935386238306635306135376131313866316138
+66336139383862636133663462633262393336323966306564306437386532303465333566636135
+34333430653031636163336463343332343834306662633465333030636266656633386530306130
+36613839356130343539666134646639346336643339316430376265616130653761656362373037
+63656533663934623533333833353136326237306665393034663862623236313136653865313662
+36343231396430643733663837363265333033623665643964623865613866653062346535333538
+35636266383266356137363437393739363332646264313761336561373539383534373033333162
+39373838383765316663646238373263626434376366643734663735656335643237303831363330
+37643665333766643063303339356336316164336366643632383431333738396136313462383039
+33396662343938316531386466636330633961326562326537336432643266653430636437396630
+63303030383635383966656564643364333264616439633330396435393838383334633334373239
+61616633313065643139376334633030643966323966313665333537633265646238383865336463
+39366332383537373637303161623562613234633636313763656262623434333665343338396234
+31376662303432353039333166393635653633616437356565393430353737613033646538343361
+39623864656332633034633761653164353932343766633830623439623162336663613762653539
+64373035633333346431373934376461383065663364386639643762613363393936373434353738
+63663263373231373735373332646238363734313165393835386635383862333165333066663462
+33386564623334393861653764643664666464646434306436653334303762613664666337316533
+36333738336633646135313361636564393936316165613430356664383564316331383935643332
+30633836613537663639643931346139666165623566303039613966396563373263363033326638
+39306236396665303864356366613631376163306532333436353863616432346231383137326431
+34333238326232316332363735376665376266353763623338626630383366323339346436393435
+63383331303362616536343038363436363634313737623665623133313436313266353261363835
+36626563366436303537363938373361323061303466623638313139316361313438616364393964
+30353563356533333731646465633466363635383363633138613434653262396630353262396564
+65393233343036343438633137313032623839656563303433636639393666663232636530396130
+38376563623338643338303033626136363139353962333634363364623764646636306530613166
+64663530656465393964316539366337343863623538333538636563663832313631393637303462
+35326635386162386465376530306235333661333337623464323330613365373531646265303563
+66613834366433343038663332653732643430386363393439333763623735663565366233613834
+66383237353165616165323064326435373131636436333731353636313766663833633330326238
+32353965373961353363353765333833336138613438313430373030363533386439333536383362
+30326365646330613132643661636232363138633662663066333635653035613735356365366638
+32303034613833343363343735303831366333663236386663316139366334386633396361396135
+62316438333732393564396137383063373935616532316438346164336630333463346632313966
+63373435303536646165643636626133323163363338353833393561636433326263646266333139
+63333537613437663132333064353734363435613138333763643961636638363537646362623235
+30303234383638353737363032306333626563633161373533396564623038303133396439376638
+62666539633639656138313563316335363330623233353431383433303735663034623965313930
+63646132373536323439366364366437303365363762306135336562303735343436366338303864
+31633436643835343165346461346131343637326563656234633234643265306638666130623861
+36343930646361366633653165326430353736333636646362343039396564623531656264366238
+32623535316536626339313434326436343538393734333536363833356631626339623633313562
+64353865633331316138303130333731313339396233303363353464353564666364356336643039
+36303738636264333165333235306234343837386463346432346633633564353161363538616438
+35633563333065383734613732613834326433633939656665633832336333646363613465393133
+62343738633261333236613236656435343136663737666437653736386466663234653131363562
+33636539333964353165383365613062663639636533363431313462366564643966643663643765
+36613130336538393735393633366263643031313561663330656639363731306235656132316562
+35306538313663643966343266653430653439303764343138303931313761316439633936653730
+38333562656333633037316162396538613338613962333466303036613431653832663537613066
+32383439663339343066623661373362353865636433663938343465346234643835343564633031
+32613361333436336362316433376361616563616530303561313831396564316533663364666562
+64663639313030623162353463383130656262643834363638666635623836343533616531393265
+31303461613763316132306235616138356662653665343264356336373235376137633061353738
+37646133306465613563356166623637373437313335336462623235363132626335356363663134
+61353134326564333131613436386330353464636164373265333266323662373063383533356130
+63333662653861363134353535326264613063623437333637633636353362343634303932313436
+32653066653032333832346136343132336230393530656365373063303261663533633536353231
+37633439643965623339313361653230383035376265316633306538663436633530336132316534
+63663036336461643564363634373638353137376435343962343665383636303865306230313635
+36666464626238666538356336353165323130356635653266616237316332316161303633346164
+61393662626231333732356630623861383930316634333130323633356436346137663862616661
+31666462353464386534653235346233356131333037313636343632663032386266353638336166
+30356334343265383134303763363131643031656262303430333464356238313035303137353062
+61633134313639613539343065333163613561363762653066663437386239623865616261643931
+33356530323739356135616361323263323265623231363463306336323066303364646365323265
+66356133336334613134356166386139653633623730316138336365386236663664323734386163
+63363236613831383632326132336538623566643633343938373863663231343561333935663336
+39366639333832663334323731366138333335643137386333396264616134623564376362376137
+66346566336639313137303539336535366262663663656266383636333031333935363530636463
+34386336633438373263353835643861343538643932353464643938663935636462656234363366
+66356561333834646664346163396262363430373062373338396264636430303035363663663833
+61346462646336663561646234313462303439333532333330323863633934633364333263353236
+37353337303663303336646564343438313136336636356563346436633835353334303961663936
+31626237636339356230386564646663623630336364306562346133386538366232336336383734
+63656635643564336236666531356362626332393437336562383361636166343565663635616130
+61356432653761313363666235333035316463653365663335623764666434353438323939303632
+34633761313361383936303331643765353465373963326138626135623832646163363534616132
+63396233633536343665383938356134343632396134346436306137316330626631323837303266
+39633337336332386634363530373961663136363234376630623830353931333865393738333132
+37633131363630663566353530326466373235653361643361363535366265653839323432326434
+38303361326334643331356531386439313533633834643538343930356131376166633233643736
+39353439313762356334353839646339616635383131303231383364393261663966643933373131
+30353434333761393137333137356566636233613661373666386632326431343966306463306430
+65343233623031336133323437663464663536333961316136633361646135383561323564353762
+37363135653664633531316231653964373036366332373734343465386434343437363963346439
+63346264326463373364323830353966656464386631626563663136643561386162623164643965
+33663735346561303936303165623133356263356539373832656236643664303162363131313234
+33663965663138373039623564353566383035323532653061373237376266323564646434656334
+61666565333662623632636364316162613836353761313763333466306138323535393762393532
+64353734356135356539306534306162316239303066323561353737623634373135663363313464
+39356139373062643131626137306531386337383737373630353763633066373031313935616635
+38366162366336353130363735626164333364316536636362636238636533366563366338366633
+66306464613563653336333835373631613364656437376663393166303037313065666165353261
+35646237393238613561653564383635306335363162653835623161393933623464313861626239
+38336436653337633666356564373738386663653930616263633530626634303432623933623563
+30363434373466653562306662613031613238643163396533353634343466366434633833333339
+34356436343833623232343931303763613863386334356333633761656434383566373737626461
+336438613465373834376636613065303732
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar02-u23/etc/luks-keys/dev-md127 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar02-u23/etc/luks-keys/dev-md127
new file mode 100644
index 0000000000000000000000000000000000000000..aaa7e80c605b31ca2ba798099e3a1dad1dfdaf0e
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar02-u23/etc/luks-keys/dev-md127
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+39326463393565663937396162383231666339356135393138323164303165643339363466303431
+3132323737393162343132633463356337393564313461650a656430316563383466326464663435
+66653334376361633936633237373730343366623634383335616132316635636462386336363964
+3966313662313531350a616463386465663965323662336239653561633732383665646639636635
+34373138616464313835396435303531303434383935336161656430396162313532336163643331
+39366133386639373663323339393738663439393266396332366630616263396231306363643834
+39323935373735346439663736636631633261373939363435666237303038373434356232393435
+33396135323934363733343737326537383164383530646433373831626235616565366163393462
+32346462366362616562633936323064623530326538623564343262346538353438366333343637
+32323734373233626462623361323730663264373763363731633966633865333666653130646663
+62656664333338313262333635393930653634396533323237393137303637393765313333613066
+32383062356436393130333063646261643131656631643662363366323637393161316135393038
+38313363393865333637393734633635303465383765396132373865333234363932333634323134
+39613232306262396265633230336536653365343834333936336139323439326536623936356562
+66356237373862343836663839633439393935633136306530386533373164346436623430393230
+62646466666639653738393338306532613434333231323962333332643865653430393032666337
+66373435666334383531383331306535626464616537373665373035373262326431336335656538
+36316161643238363763313133663236313536643237303831636464323838326230646161623333
+33653433313034326436393434323632333030313336666166643036646539353635396239363766
+65633165356637383564303936633065393463353165613065383135313130663163336139393162
+37386431616561346435306661333639376336623834623138616363323266646637353539326239
+37353834343133376131663635313138336366306530306336353536643136613436306666383265
+62333638373764633039366236346135663863363663626531316566353134643236323333373038
+34316134376564383037616130613035643633383732386166316533373535343235323535643434
+31656163663631663936613164653966366431386366336464346465663962626333333832336532
+61376366613761656637356561393939316362353934663431666666343430363165363861623837
+39356661316562346538336438643632613138326661386335303530363563376130356362613538
+63346335366665393866313537346165326637306437376264613734306238313139343534303063
+64636463633232363264326533623165623862656666323965663766303465353164343964666630
+30346636356662613939376431363764663134356164343963333537366339303536366530373062
+64656561373334626336636163316265663031656135633234356462326432353066313561336130
+64646361356263663834333132353834633637646435633430353066366232663033336564323836
+39653735393935386362653838346162663430333439353534326333666538663730336331343737
+39303766343832363738396530663331363636653361343964313764623266643737613138366264
+34356536616665663137633733326662396533306562393364373833353038366664356336633634
+35376636376161656531626333623562616361353133613335363430373934303165303166306162
+63306431366439343663636537326234643735343464363232636338313430343531336263653263
+33333234623533373965646638333037623432333364346435333131663632623839363537653561
+35376265313262373230386162643530623231626361323331323962363561633337333938626562
+66313537356631393835656666323930316236383839366135393738633263346430303036396134
+36333133366536383065313362646661636561343665336362343663386666663639353230373733
+31643733626139663930343639636663323361386133396635373364346662316166363462343035
+31333565353031386530623835366364373562353438363532313434646339363835396230643938
+34663637636439383330303338346136343165386538333434653563303766653439646236623837
+61623661373062346138376363393837393732373764643039323261333736383231656166333230
+37353166373538346238303535666635346563663136613565386364653036643338373736373731
+61316438663133663061353033313931646435636131643238303438663736386139336333646134
+38373131343662316331303730393732636139383839313033366330373230353131633862653639
+39333264366164386630643663663532383236303036656534383164616665386461383038386539
+38383231396564303033343631323961373461363663643534316262643061393135643137323461
+65353237646439646166633932313435356139356536353862396531663039643537656537623966
+32316236396335656636656536373935636431343766313261336531373266653665356535623562
+32303638636464613738353733366237346263636533373061623338353037613532383461333731
+36613236623537303630316165633239633130386533336435636630643561383331636235656336
+66636362643530303535623439386135333436666536316463333363353536336533363166613031
+30666330663335343164643166386461636433376530333166386535353834663635303336663435
+30656435616237653334373361306133336130336333323935653365363033353066343839653932
+61303064363863636339383733393530386630303764643235643965313864633636386234313038
+62306239653933653238346463383739666133356633393830343839636362616235646661653036
+34303739613161663466323238666365393964346630376530353761336562653733303037656633
+32353965303061616335306333616264633761363538366663363631353132623737343432663230
+61623830333430306431393462343839386232323661343666616235306364633964646537373236
+30346432363266366535633764363964646237613662633164313063636464323534383635336537
+37386434643465636263373161396131323763343038386565633138346665333363303034333831
+35646563633937623065353933373666376166616163303961386334633763386662636665313633
+63313464353735363630653866366463373337656638346134333832366639646361663131386436
+33656631636263363137656666626365313632323936353330316130663134386536326465303933
+63356633393464323166376561316536313134353738373465626530356664623437656235363634
+33303637303361633966646262383432353761316434613633626263333932326239633637373662
+64326536386239376165666532353965373933373535386433343965663863363166656136383432
+65363933336639396134373863323164613133626231373334356365623235383438346530303238
+38623333323738353365646539656239363565353737393131646363613038353663626539303332
+38663139386635306164353466373138306261653336643461316161343964646231396437303531
+37663539363835363133326131333736396462366130383061666465303230623331663335303463
+36323833653262326361303731366338333661396532336531616565333762366333366165303532
+30383963306663373136333039323162653730363431666132306632363462376233326634633031
+33656335393137666664653131383965313737303365613232333933653634326136353362326339
+65366632373532333831326235643239383666643839383630346330313130613865333033323738
+64626535356230626233316438613230663664323437663333313263353839666335353136313730
+61303331303939666465626162323136346462373230396337303434366638656639323766633635
+66396630343735643132393866633466366238313136393132383666363331626361643431383063
+39613361643362613963643566333864373035613261366662373932353564346663303632373966
+31336461383662343530353666656636363961346632343639383933363930373535613030626161
+37626432326566363331316161386264643031303239623130643230363538616332383731616131
+35646330383966623537396666653936366135613362383663653761376339333031326230373331
+30353031616562643133626134633665656532356135616333613963323131323637396337346262
+39616635303862353365666164633237663663393934353439326232323735643339363064393938
+61356165626233346363313464353634333538633534636363616239316437373037333437376637
+34323538623132303164623031333032356335333266306337346466363735376235366466363165
+61323334626434353333393139653639356138363363373339626138396166316635636335346336
+65306665643432613334666532623061633634653166613066326534373136396630373537396434
+62356565343836376463623138653465333132323663336662616634303434303764363231643534
+30633262643832633763316665383965346331623763383534346465316333366365666633666135
+62343336643838376631396633663936626439633634393736326234353961613761623764353735
+30356662656332323866643030363135306436333666313133613637383464376533353736356138
+35383234336530643265613936663430623635666665663633626164613339326132363463386135
+37663633343533383833356439346536623831666639623932326635393637326537653363323031
+62353466643665616665613833363463623562623635363363356563643833386533643365383165
+35636664393934346165643162376632376465653337643838666265646437386239633836623236
+37333336643130313135386366393235373664333265323031353736343338343337656338616239
+32643565386433643131373436663838633332336133663039383466663638303030363336343263
+61616436393836363335626337636437306538393762353462303064316139393064313139663963
+37653766666437336666653332623764633665383438623634633361343534393666346361353462
+61346165353339393463386661626332616665643438666265613335653832326536373230363230
+37623661376362363831376461633530656236396432343862623935633438353564343833663933
+62376464653137646666343133323035363762316164633939323735626534363665393234636130
+323532373738346633386631383835666266
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar02-u25/etc/luks-keys/dev-md127 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar02-u25/etc/luks-keys/dev-md127
new file mode 100644
index 0000000000000000000000000000000000000000..1896afb0b6d84c766861c0fb655a3469f1edcd7f
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar02-u25/etc/luks-keys/dev-md127
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+39666263343031626434393462373434306566646161633437373533303136386234346365353231
+3032656535306362366330623561333066643363373936310a643264316638613263643936323039
+34333165616361336132306431633966613162346566306663396135396137333938336137373233
+3532323364306439380a633830376164613438336439623030643037333263353639623934663338
+33643633303733333230393735333934326639663561346563323831323663643839373866343239
+63303739373661343836373436383838636662326438666461626166353735613535363735613334
+64323333326430383439663936626531326238623961393939633237663663636533356230373531
+33656437666165306336663661373265343637323236343464376562366666616261323963363764
+30373139336534656265616334356633646133313833316266633966633634383131323330643933
+36366434643262633538353934613935643438383037303138363161313934636561353266613133
+38313264383763663462623630373935633364346538323666626137396563353132333963326334
+39313936636431613133636165353663663763383631376564333336623361346164613234373138
+36646232333366613030396232313134633466623137343237373063343735663632353637386633
+38386266653231633364323639643934386636306435303339376665383430366465346134646665
+34303434303362646339353337363631313437613366396235336135373266383831303864646436
+37306539356532353465633339643339303430613164336562343166366661306663326134353961
+61353135373130666239353735636362313538343066666365396430383864373865316663313133
+37303731363066323432393838343265333662306537623536333130633465383232356430656466
+39383132616662656166363364313731663062613936643037353831643435326335373961623065
+32303537663331316663363764623335633366346633303433613938383262373232313030306138
+37316632326365633762623866373036326665356563383666376635336562623732626464396632
+66356231653966313534613632663736376232323964353730336364303835333632313136316463
+66613662323139323031396239333431653466386462376338323066353430666331333263653961
+66373839376631383732633730643861656164316563373934373664303266346562623430343033
+64326239353237343462323635356137373434363938663234653038383632393962306538303337
+33663639313565333032376237343632373861323039396664343665633139346361353362356637
+38336162306666343862373762363836356539616262663663336164636231356434626664613362
+35346336383434376463373736396331646135623431633661306461323531326665353664353538
+39383131623962616630633235316461626364333737333435346533666330333837336634396239
+36633766616666386665383837623130326638353135616338626330353363303434613962353466
+35616563323139663437323834616236343336663864353766663264393839363439316665353836
+38653033343565626661643032656337636466353261323532356532363664373330643131373566
+32646162613731666134376263336138616430613634663663333030363133333638643731373232
+38343434306239383561316365383462393633383638306530653966363137393332656532373265
+63333935386533643665396637343033613134636336643132633839336535303964393039646165
+62653439633436356230343466303435393263373539353438663734666161303932666630326330
+30373665343333313864623735616137653434613032656537636639646431393664616332373262
+61323465646264623632386637333062376663306432313338373763326136343639303339636335
+39623330396133656338323666363031633730316537633663303661373831633262626539383366
+64616666303639373161343463313831366464363330626262333832363164333266326632363364
+64396430393764376335396461356431306331366131663861303161336231343434313837616165
+30313563383966393637383766316437383633396431613866653663373162643336323465616365
+38663433613663333235313030306133646138353137653735653736663035343961313433386133
+66633334343339373138366533386663656137373966333932313934626432613235636536323361
+61386336323031383166306135363436353536656131336338653538303039313935613338303164
+31633264653430663665306239666331383735636565303139643639663939376438336563343038
+31626637373234636564346366623038306233643932343166396438326464663161363832303539
+32613263393333323137363637343732313637343436356363646532666535396633396363653862
+66303461346161303934616466663931363061626539366536373063306330333931306466373263
+32333234323731333536646330333831363262656136656563666561376331643638653462656533
+66303865616538663865613038383830303562336431303362363337663734393066396634376166
+66396638366366626639323038633166303161343432333730306337363736616333343462346137
+63386566316439376635336364666337323639303335613730346231333165303165306530643062
+39333432383231633133643533363739393732373034313265393034353335353262393465333035
+35316638313764313334396131643364343465336437643361623332626235366539356130666632
+34346331636261396234396435363832376336653631376661663839376432396538653061373330
+65373432326338383164613135346564326133643636333466666136376631353466313631333530
+61343863313433303434633131653133646465353739643039396530343061396230363665643538
+64313237666363643766373364326337313436356130396530643234643363333464316261306436
+36356566616239613261623430323430623961376334663833303465366662626138363230326264
+62643264616162353562393730653836386531383933613764306535303935333531303439373265
+63656233366233396636623365383638373465323161616562303530373235663837383965626366
+65633530643639656432623162633631383933383834353661303163323139333563316339346135
+39626261633766633165353037383734316236613531363261346364653661653566356530643166
+34333035396561313463663234333964353963666637363634633466626234353631636436326139
+39363963636534346364656436656138386334373330663964373561336138653733393535643331
+33643635306136376335356234636436633937353966623764643636316237303432373564623861
+66366339666164356465333364306436636665636237326433333639303836386262636166626530
+65653963383932383232343733313338383332313362663461346337356538616230633133383661
+65616432643635623232646164306365666662656138323634343665663133643261386332386536
+37333561613035326434646436333533626564373465383538393739333231323963316366366238
+31663238666639376466386432646465323534663532663534383563636565656533616432633664
+33313137386533663339626663623736623538613563303135376462326635383862633930623831
+63373864653461623463356631396431643735376435383363633134396462653331316134643666
+37343836643539373630323131346333383761336438663830366130623838373832663866626439
+30643431386164656230393834613830613134633466656463373266356131646461623666636238
+65393536303534303430613031663036386533333332326133303664323231663236396363313533
+32303063323639643863373566383931326133396337326432363135353261356237643464353063
+38326363386534343233376462393465383263636334346138663730386632646663393164653932
+61343630613333373433633939303664643664666334316633663530646461323466373737636565
+63363935333264623136373862653934343133316662353537333861616665306536376131643138
+36373334646530323235643538653738663165316465623865666430316162636564336664333965
+64323866643466336533343337333866323637323162303466393736633339346464353066343438
+61636265393038363362363965363330306433373362373765616434333235656464383235363964
+36343831613330316437303032313665383237333261373632323464306234643430656461643063
+39333139616134356464326465363232656632636366353731643162373163376331303462633165
+64303833653463323339346361363834346230623061316632363264376363333563306162646536
+34653039343765333063333532363831643832666464383466333136303137393231356531643465
+63313737343930376432313465346131663339623263636166323036313763636530636332313932
+65373262396630336266656331633632333661303061663534366264646662366531353938663466
+36646337613639626336386665356333396636656332633332356266643462326462356231343030
+33383830363531323063383666346131363235353533383830373965343532346665656563343463
+34653035366636396430643633386335343661323239306133326264323065356433353931646132
+39323237643461353637613038326339663733626337663433633266336534656535353664363762
+65656633383363396530616337363035353162643063396636613635333265356164373835386562
+36353236343434363966613639636638326631613366383165643634613235656335306466653462
+30386435323539386364366165616562346633346664333463353239663262343237613939346261
+62663839366232666431656161363366373038303930386231383861313134313462343238663735
+64396439326637353834396565383838666336383137393165313131653134363562333337333537
+36623466393662376464303135653739636664653739366133313530336666326266363230653334
+66666233356231386164313430376336616264316530656537303634663434666661383932363633
+61663431396333623962376632373665333165623730366235323238326434346637663061386330
+35343533346131613038333037643561373430643735663063643964623637343638336131356361
+39626536663565303332373336396630303431353965363266316635666130623162666330393030
+64363561393130316464323862663863643732353562653333613538326461616132316134386434
+38663337323038363230626561386534363261313832373733303966346538303334333637303863
+613361303630663234633431316661323830
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar02-u29/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar02-u29/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..923c8cd3766eba30919b0ae72c4c927fe6039597
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar02-u29/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+39653061653531373136393361383637303636386638333136633533623534303036363963363933
+3734353565333732326336393737613936326635316563360a643935353630336135653538396561
+61633934663735306631653264643866306265393461303633643030656665306633623034366364
+3736353630663438310a343562326566313231663939383531666365363765366239353664373164
+38356239383461643265353531396435383438663031306264363939613834346133333661616538
+31313832336438636138363866356364346533666139663031393536333637643737313033383539
+30383733373166613639393562656532623738613465316237363430386261656331373534326365
+34303335313664316662646136356566333465303431316330666333656565333334343839383933
+38613537393963343239333462333438646632623163373061353238633364386462653830346537
+33623236353739346130636465633332313165643734653831613632346531386237306538343534
+35373430306666623135643562643962353961646634326631333037663634386131343539326337
+65396539633662633430306561376264623231363635393132323164303933626362636362323037
+39303339313964646666646539383638633930613963393666643931343238633435663631646335
+34316638666533653165646531303964643062343465626438323866366232313132663039396431
+31373235326263326135376230633935356666336530303531643933356364383138363165326563
+37613662373365313365316632346133626635376431626666653464393832323534316336346661
+38393534613665626165653264653766373930396366663730393539616237393734333135643661
+61366332353261363136303063353962396565343764313031323538383639303163336139323363
+38306439643538386263653333383364316233656263326561393233663931616337376630666464
+35636132333961383266326262313164346164343039663237393131613261366663343861623831
+30316439633863306664656662643430653964343266333130303131316663633261383961653664
+37363862333432616430366663643134373561393935326565343165633034363136356339383564
+65643533633335363165393832643335373035353434373361633734636330656361336561363363
+31393165346336303338336262336537636638666535616464303064643633663237666437633530
+64633265336332653336623161336465356335663866626131383738313931373037383832623931
+30356439396130616232383731616438393139376639616465393465323233323630643434643964
+61363934666564336332363164323135646662346135643864346162653834353830373939323338
+62653137623437303837646465333431386432646130633032336633656262343931386130616462
+38373964323262373034323063313131623664313335363061323833373234646361316237626534
+63386362666531313434386536386533393764336265356363316637356338663938633935383134
+65393939323935393736303535653761646638323935316463656131666137383839376166316162
+39643136363237336134383036353565313836343362623866666538643135643664353933633434
+37326362326161643264643531343733616437653337336539643561613565356430626236363862
+62373635323336626436353231393065326638646161356361613130633433313661366234336164
+34306336643932616463646333616361323132616661666330616364353330326431663035653161
+64633434313763373165306231626266616236613133313833633166646336636339396164613333
+33393061393932343530336338323838313636623936356262333565373733656436306466623234
+38343565343136393639363530663136353665333739653262633930346631353365393337643731
+33363563633763343963656461626261326136343763376432633831633237393036666666383462
+38366565353464323361616332666131356133626665633936633534653531626161323663333965
+33303434633830323963366638326535633363353034303336303835393163323333633064356666
+61366436303162626561363237363965323733323263646234353266636332336365353739633764
+38366465666237376631383638643035383431646331383166663737303464373266336364316632
+30313632393562633733383631616264326133303032363831666331343935393932303137326132
+66663166353133336266636230303332663664323331353239313938313433306664663831303063
+36383864616632653436303261386539366264363030306464333762383432666261316334323061
+31323535346130663036636230316539376639653134383265303032326330633530373132306330
+65376265343032343764663139333861656537313039646430326130353838626638386438663337
+36373235343366383036666637383535623332363065366664663639613434373665643430376665
+62633130366232343264323134363431363965326630383536626465353437396339303335616331
+61393038613334323338323466656464643537616134616438653735353038326431643937346133
+63316363386238633536613034356532343161373531373035396363386331316337636337363931
+34383533383539376164366462653066613564353036343066343031376662656232353866646534
+61613161646233383634313265613065616433613536353339386536656265333939363437653236
+32303136613966366361633063366436326363343038386161346135636364306538626165626261
+36356662656430663135396465623539313231656230623861623137613830373863643437343931
+36336361613835326465356436383863666333333331646563376361353464313630616262666438
+38343737326438333565323639363130343337613666616232613565366262663566656164663333
+37386539666638353738343934663035313134663664636135616432393064363833616538646663
+63386662326530383530653038643964336465383734633332356665323664623138643734376137
+62386366303137313330653862626430613234303836626263303239393362313463333531336437
+31333437613530366165323639393262616166353561393561373866633638663837313636393731
+66306363336165616432653938323862316533353535666361623363653839343066393035316363
+35646335383961653864393031376330636333363761633065633662393638343237616566373231
+33303434313734376632346334316533316463636263323366643265366530316337343165653763
+31643737383463323831376236663136656339343265316130396336356232643533383836356435
+63326232303461363437623237626363656233613438666335623339346533323861383733303237
+63376438353064356163396638353838616232343232343963663239353962656636353765303831
+36643433613935396266613231333766393463633566333335626134306438633264373838356633
+63383039316131643266623137613963363139616338636337383265356537386439393265396139
+66373933343264316231663333646233383564343963323237313035313037313462623936323164
+64666432383261636238393963646133653834333761656638636334323438653566653932373063
+62643337666235393234613563626264666466393061366634323735383864643736663534653766
+39643031643739376663323036653164383062396464623835313437633166343963383133376330
+35323365313131326430383332303663333230316661396130666134653864636464353462323931
+65316339633638326435346131356137336365613966393162313634353836393563653164303031
+33356261303635623961336163303761393333373537316663623937666333353236396632623731
+63353465326637613738323836323763393861663735353731653366636538613634343438663263
+66316135396334616366636639353735353861363438633764386361646132666135383335366564
+31623132656334663566303630343035623935386633646438623230653339653537366630383266
+35656634343531336431353834323063656232646136346439326139383762353664333861656565
+39336539326132336130666338623263653731386238323964623462383939346664653037363730
+34323038393539323933303738643734633330343937393061653334633262313166613936666338
+35373439363538396333303732613037613134353939653034386230323038653633353364363864
+66656431306531653539366131643534366263643837656333346236393438313463313732636236
+32386439333661353266643364643563316365336639343062363465633262306435326239623236
+37363837383535303532303734643936386666613036653364376636373533636265303631306461
+39303866643863306138666336336236666639313433633630663132323861656232636561613139
+64383061666632383563626232353561396232356534316363313030616262366261303165306336
+35303635353434363034353966393564323938653761373530356336383033643236363834636633
+66613336646135373563626439373061313637613764366231663130633563356430633731333864
+33373931376637633764613166373335313261656639373563613738336564303232376265316261
+34343066396438383331386631346535303739656230333033383934636231353662366337303235
+39376639396364643736316663356464626463353434633663623830376138636533623238343935
+34636130666365323034363765396630323266663164646434656661383333356338313038346661
+63633465616634336331376538633166343261366465316263633264636262666266323436373861
+37316230326666386430646634313561396438363639663633636634383262323533663935313032
+65346663623062613931323761623530353132303438396433613165303030396563373637343364
+32306230646537323632623566663564643536653632653563633834663230303334323733643462
+32363832343062613132346531316633383935653734653330353937653838376336363636346566
+61636433316233383562663038623431383230313334333461353132633565383261656634333734
+34643366353061393936376135313665653534313439353961366561623130316438366433336136
+39633537306663393139333563336231633534663766653533623737343936613930663937613731
+39653639353864396536656334646435373630363931663033333230616562336234616330386537
+63326364653763333431393837383334373636306530336337336266646439626539363363353236
+61663933363761396365346134616330666335666465636633316437303831376365663338356535
+636330383461303037656462643235386637
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar02-u31/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar02-u31/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..85238dbb924ddcfb7c18f24cfee2ead592c73632
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar02-u31/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+62306135376434303330653530366537653238666133653163323031376639323337643762383666
+3539353362356663343532353161626661643637323037370a343864356333363931353235386163
+35343864306566633930623263313739323863313164366638613863396362636234366137353839
+3864373631613235320a396563306663323463386266353732346136373139643763303231646561
+33303462393264636138373065333963326635333232393030346631346663666465353635333834
+63393037366337313535666639376238396464656130326530626162663461663936373530376334
+61363431333333333834306230323362393132636264643333363339336136666462366533616564
+31373264656336656333303536306136313163323735336463653765303763646639613864343038
+31376666336131643534643033613932643035613733363639346538643038393030343136613562
+35643263373762306562653462356337646131326231633165646261313633396339326163316430
+64346661313131326163373564626363663265623132633735646233353037323736366639633534
+38396164333231633636643764383934363430383465623565633736383238653139643137373936
+33323430383436643265356663323237323430396538383633636136643330343439383964656132
+35383236613066326438353337356331653433616134653135393038663330373262646561343134
+30386362633636303765316462316634336165626634626236316662646666653439643438363332
+33336639643036383833313463626337666239313864663666373261363239326466666362346361
+37376532653334646138613964336230623032663634623132643239343236393433656239373633
+63353633613137626238356434376162656236363663643539646436363630306232336330373835
+35316330303661353033656464623262396665303931393664613230666130653038393062666534
+61623031353630633833383864653866626364626231336339376334373238623666393436376139
+36623533373163316335636461353633633636656630343166326433636433383361376532343437
+31643532326661336466326666643431313132363535396266363737653335653537363235346461
+66666533623936646263313864306336373537613137633862313332353366346261623566393764
+30363965666239336136356235363766313337376662363037383735643735646232383863396366
+34633161306332663261316163363632346538353464333136376235663565336537666333303561
+34623739653466663234323231373465623465626532633337646139373739356137613632303139
+66656330613332613232303935643965373735333864643036623735326239356561313263353138
+36383463356536626534373461386161333866313933366438373864376138363563323935363664
+30613365366462373233366437643635613338636236386461323034336439373237363163383265
+34343138323462633866393231656365346361313161313061373265373264656235393538633466
+64306139653563333132393534663838643066646263663763636331623237356163623161363935
+36346239646265636366343636303030626632323936643235613939303263656436396635343062
+35396134386332616235383930323235663433343832396235303665316466323965316637363361
+35396535303734346261633237636261393665623261623065636433313838626634333565626230
+36343662393166323939346264316337356634396232663833396636623638616263356531393065
+63633163623132636231303665306233343566666638336530383364393238666134336538643763
+64333966313334623564633962623134323937633964623363663739386638306432373366326533
+31393265316633613035626236343332633435353837376562376166383631326232353332633366
+65333435653130366361383264653534323063353163346165323766363231656562323839336332
+31623137303137313337373035653065383231656662663035313035623234393438616662363663
+61663663343933343032366336626466663565323934663166393134343866666363346635316233
+31663136323631663231333239376433643430303337323961643831663133643263633461656335
+30353831303930653230373761363864376662636562303561313036646337393335323238383961
+66383735316463316436313738383165306364396231393361343862656639653839636331373837
+37313233313932643931646163666565383431316634393861353030656537373534346366373739
+30303437393931323738376361353562303039366462653734656637336534653432323835303835
+62326438363238333030613133333437346530323331356131333334386436373065626231326463
+34623764663132333232313637643738333564383431383438613963643666316239656261343533
+32653936633732643637333562613936663330626266656234616365643339653036393631613266
+32313631626163656438663338396334646466653166343761313335343230656138383963653761
+63376237363664336339333733323336346539326333313763313263316466373233613538313864
+35326130323934313462666337353831336330346537366635643861376639316634306539353863
+31643661343934653566363963336231353261633332663738363332316436623536383666636462
+63666262633334323935643164396163313536343832393130333139623836323639643664383163
+39323432343966396638663362306361316137383632363766323037343535636238663233613732
+35306331346463393662326261306662393638323163616531393364333234383831363664316461
+38356165383532666662653233303266653738353737353061303534666132333436643130323266
+61396231393237356563666435343030343237616564643163656537643735393836396638313661
+31303039323966376633303736633265373931623062316238653536646266646338326664353235
+36383130633261396566623530356566653739313765663763626561666238663937663630626236
+63663966323162396638323438663862336630643630353336366262393831336136356639396437
+66646135376537616430323164383866343962643430316564326537626136633930373838343336
+35656461306236616564343562623735633132333364336661626362616334313736623430643366
+61383365313331623439373164303730346138343630633165663738643639626664356661363665
+65653832653864323539346362356530636337356264303636313336663830626634303534333932
+64636535636130343138313765386661666436336462326333343032666365366164363636383962
+61353661386665323235353034303835383464316132373630353237323131366137396666306530
+39393537376536323437646333616266353834396139646165343031636632653638663530616339
+33326565303366383137633236646262616665323865383862323638316636633730333234363538
+62623961613262343563313962356333313836303134653364386365363661313865636139306566
+62306432333364383763363962663336396335383162643565663135313663376462336133303735
+36626661643537386633313035616631336631353632663664643933386138623739666434343563
+62366434616562643763616135323836386261626665363262623738306663643533623466323838
+34306431303364383933333238613232373161663430633236653939616263336637353532373663
+61393661656332383130636435346433626261316632333730313937363431626138353334323338
+30633865353837353161373764316539343664646362313266663839326437373634663734653133
+33643165623736636630346237616437346130336231366463633636353166346631393566663337
+64373539323962653264383534633432343964353430386463373931356363646565373761353262
+36346530323766343235313365366564616230343437303234393335633937336436316661353338
+61373763636237336235326532636564353866663732373838326662633231396363613038333132
+36393131333639313263663363326235376161393132363338333063643263653836633437656130
+36306234383035366361646364396335303735633335343862653737653539613832386539393037
+62623964366365653665393733646561366436616561633965306530313337653737303732626237
+66646266396335366233326133366634333465663433633632366130343962626565613031366466
+34643232323161633133326231343766663764346335336436313663633061373265353762303865
+33343933366434373632386263323931343431393665663666326632326138313637383637353031
+61363738343764323031333639363464663962363262376239623563336634616136316136653962
+37306262343666313163383464323236646366613037616436303439303333306331656562356630
+39623432333063313239376231343765303261633535653333313365333736636335373966636465
+31323265326563336265356362353437326539623961393730373531306165613864623739343062
+61303936383834303138386365356566636537613832326239383266303364323036313932616462
+30353366303065306537313838643465323038363431393038316338366661303039613235346562
+66656366616530393336383662323564366565333238656366613033356261303063356231326234
+30643533313361303565356632316166343336343061626461316363313262303863393236623966
+30666663316263353139323338373433353530373435346163343832326437373635383639643665
+66326663333733636630633639363431366666353330333531356235383338376230323765343939
+36633732323630353038656638643635396631346531633336363236633134386639363937316439
+66613532336565616163376136663835396330336237303037376132643438343862373865316238
+66383862343035653431366466386663366662386432616633663965616631316632346562646234
+36363030636139376339623865366363353539313236393133336231626232666463346630623062
+31303232666261613435303330336637376163333864393831343530386431366565376537663262
+37633934643263333631653738656564623032396563663461323935363061326136626631323063
+35313636353461323135333937663563336130323234393361356466336165646664353438613835
+38393030343265646439643039633135646365383964636439303835646539643861626164303166
+39376361353339353830633062376235663166326536396631366435333137376138323164326366
+64363363356136643434346538343439653835633133653461393231393235356339343862393530
+643536306535623439373331363364316334
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar04-u1/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar04-u1/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..9e0bc717e9f4ddecb2326922bbcaeb478510513c
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar04-u1/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+39613734646336313030323161323636653131643339363766313136616435663662356431346566
+6663663531346539613437366531303134336634393339370a333030383332623038653430613835
+37636233383264313532303439353537643637373630643264656331633662663037333239623537
+6261623265326638620a333834616334346461333932386161396132636164373761626663326634
+62663334393730356337393664383861626564353335653736623435633761613163356534633832
+66306138636561383637653864303064613163366366393963313936623563613331663435376365
+61323035386564633431353534653164363563373437393237306564633438653761643138343133
+32623436313561663362393038663434653839303962373130343863643434636266653632323637
+62613565313466353065656137373539653133353038386633383133633834323930613037393338
+30636432366239356632373430653261663231613535633330383233333830616665323034663632
+62616436643261656632383837393964333935303330346233316439353638396164323434313663
+39363266396537646338303731366536353137333730633763363862633930616534633636656337
+65623832373566316261656136333632383938646532313466393661613866643431336637353134
+64343831366535613536383334326138383033303933356430373464376433656438326362323163
+37343466313939313764316166313262323433333431663132626335333963303234633136303236
+31306539623862663736386130313738666338656633643965313033366561653333353764616634
+65356335376262303462346234386665616436343064393233313838643435383461313465643730
+36363339623738383361353934633133326461633761616166653266363035313962646333336532
+33636463656338313632343935396536643266373762323662393261346663656138646335386466
+39303333343535336138666266623562323430656335643862376438373633316332666561643463
+65653631363936313865313330643932386661323730323461663336393737333238646462663934
+35343362616364353431616661636435323761636538643462333365623132373532393662383731
+30303461373965393932373664383537306137623936663666616332393332353539393233623638
+61663934616236663630623365636637663061303038353534343338326638343939373062353635
+31383137316435373961643830633238656361326434613164353366306537663462323362643230
+61323465393730623666336133616432653538633139623431366162363366633930353433653665
+31383461383836386663346135363734396631356236616133343038663533613638356138663866
+38373035363937363838313635333436353037666636323064383631613438383464613839383766
+65626434386233663264383333313031373133333361363635306665333334373639353339366266
+33393064633966313633383138356338656237353762376631666132363837643238613031373337
+62313762626465623331626363323335613137666437333365326631636135323666383035616133
+65333164623563346161626365393564396161626434313063646265373966643139323738393764
+62623736336161346335313764393666396563653434306166303261303864326366616339613431
+62383834656365353333346365653431613639336264363837633034316265363563613662643161
+30643233313663303236343661303463303463333532633035663963613832373063356336666263
+30383132333962666366623164373364313166356464643332663235303565376264386234366334
+31363062653837636432343533323633333563373965646164393731353761326234393061666330
+38666561396665396665386536343263306333306530363532616236643135646430303064643065
+62316163373032303464383062393965626633636439663632363364386130653966626565336633
+64626134623564343539646530396234396331303530386334636564666462613131313438383163
+39363730396531643731636531366631373065306133353233363664323139336534326163626466
+64313363333234303339633030653534353538343361316365616531656535396236383032643166
+38336465386432353732313733373634386461633937633539666639366536336430653335653036
+31643332353339396433313237343064616335643338393936633963323234316462646464333766
+62366632343136366232303239653636373162396432663932663863356137323866306561383632
+39383234383135303539383166613465326533313630373033396434623639386163346639336631
+31306130636136373537663837353132316564656133383765396533353463663135363832663538
+65346632396134643533663934623162646530376537316362656236363537396164343235376164
+37653162376131353237356239616436343739613634636263316437373630646365653232366163
+62633430643039333865396139303866346564333831376631653331363834326338336464333539
+33393639613964326436363033376463666339333132663935633564353632636662316566303164
+35643434356264653335656262306565316538326462643234346565366538383366303932666134
+30633132343831396462366534376566303534633337623634623133303036306164373962366634
+30653633386431636563353935336330393666656637356532393930326662663032383136613333
+62363836376439376534343436373765396338626435336433356233353537313335396261626132
+64613536613366396530363935326638386263343265633464393761343561356237396235333430
+64623537613136333231306537336631386430666634383737633233653833626661636231303535
+66636663363965663361313963643232616533313433323634636462626233386565656362663234
+66313138373839653939613962396238333435396234366365353234343762366439393764396266
+61613939383731616438346233336532653638333436393139643933366533326337363362386263
+31666536326436626562636131666332313265343230393365343631663034303733323364353139
+66396637643262356532643663616161613338653530343536323839383738336662656134653839
+38386361356666306431316666646463303631373565316666626337366130396465356630653933
+32333738663761313534376236333266643434326364386466653364306661666331333961333330
+38303632616562383334643738383333383462333335363939666666326631346332653439616161
+61333463366365313331666438393231623031613435313761333932373166376434306333643963
+37623737613238373161663735383630646237303662356463376231626665633039346433623935
+66383432353464633066666436306361386132343861633262396365623934316139653132356633
+61653334316338313230656336623030616533353364373065323264316666323235323437316537
+66616161343163613232386163373136376230346338373436346635356363663462376163393136
+39306339616366333262333935656536383133363231636166343562643061336130396364383331
+33353264346438313032363261356633366235306466303435373636383338343364326635393930
+39343430613664353265343730313437316563623130353937323833373636623363306539613133
+34383363616235633266383063666131636563386637376461323034303666623265393332353533
+66363162323132306237616331663134373332343235393366623734306463366562623536313731
+66646334316230653338356132393732393966303063393036326236663264336163373830346530
+33633032353331663732346331303963383162326230626430666334326336356563633736666136
+35633235373065313263663766343761353233353435313239383236333133363564383931323138
+61333563376131633064323636643564396634346166373631656337376331343039323137663263
+62616164393231346561393664663737373731353765356362346561366234643163313864313631
+34323739633633393330653735376334366337376434373131393563313932313531393037643239
+39643039393137626639376461393438343964636637353665393062333164333963303038373439
+36646261623631646130316463643066323062663233333662386337393935376537663230366139
+33343365326430353039303264383130306333633432643236343032353466303637386232636334
+39363234653539316335383763306665663230633439643462366533323232383763623331343266
+61316262306331626639383131356261626532363564393664323238393837373065363137323337
+34353539323231613934353063386634613130393534333237626533623939393265333935393964
+34663935383834326561353865376139623531303239633236353534616133303662306465623963
+32313563393733386233663936626261623230376538616632376430303237343165333437613266
+65643862373835646138663534383462396363313265343661623734623861363234643965363539
+64643132346534653933303163323031323466653932623230396533633164316231356266643436
+32316232636537633363633437646562626561373135383031353466356562353364663961393961
+36353966333365336434343239396133313334346639616338643539333938643336666164396631
+37353530396161313263613932336161626434643261306265343639653933306261306162313965
+64633439333065366431316634343333343939336131323661303436373135313762613835383032
+38633361303334353133633064613865373535373039643661653463353861336435636265323030
+61376663386534373663366137316166303339653137616461643332626635326637656637373539
+65356230623030333331613032323238353462616261393939353364353231353530306634366466
+33393362646134366231353739336232313731663139356262333666616437326562316361323630
+31396237623363613265623662643235626131306561363234353337663136396363643936303635
+36306465666332363163333637326636613365633965626237373138626661653937653265356361
+31633437663362653366343264323536633361633833316535633161356666396366663030633265
+33393864616539316139356134613161643461656263616466626534646662303064326364373735
+35383334346232383837633132356162393236366136653666386239663835663461353263313165
+38366662333764323436353734373364626163633234373139366162613036366235643536383032
+38386136353435616365373765316534656435373466626439353465326434353837353534656262
+343239663830356135633833333038303933
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar04-u3/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar04-u3/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..2dc6b8e0cec94a123ac8076874c93509bf2501ff
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar04-u3/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+38613033383761643332313033363461323033633332616266343130313865656565653165323830
+3632653361623261306364343262383130646234383263390a323431333464393433646234373261
+34343139613033346433323466663663303239353561356632626464323064633661313434323234
+3765376366373639340a646233343537663036633530303362363361656330356262656266393365
+37323363353065383261356661633961643261653865316464343831633964393230643932303335
+61343639366166303734386265346237646138303839393535363161613634633131353336376436
+66316238636333306337656665336364303239316538336563636139383637373565326335316635
+37303035396336373237633333383236376139336233646432363535643065306461616337633736
+35333133313932343134386537353033633666623162313366353738626263373236343361623134
+37303263623431653735353836636565336536306235613039613934616261613132643531633163
+35653861653037303236356539373861333962333762333135663735643838653038363334633234
+37666434376663643663323763383838333564373463376137666339613935343266366238316532
+39623763353761663662326439356365313563316462363262313430373063346634386137643031
+63636637346565366634393335653331363731646633366339303032393462326533326339303433
+62636361663162663837383162396139346234316433303065393863396364373637656663316136
+30656637626437326564613434333633643339313664336464343633373166363462626531306364
+64326337326364623631396330653334636263643639653533613034343730626239633238656566
+32363037666538613637646339343332303532653732363530353237356334623561383939613339
+66653564326238386564616263613264643765653665326566353031636538333466353962323730
+64666236383032653833383734336232366166363961353732616439633133633536623938326530
+37346135316633653532623239393562336237323231326135356263663231353334653665626262
+63316435363239393138656139623234376436343666396437623665336465633764396135386638
+33333865393764303264663732656133333238323861393232663839323637666134313363376462
+36643336636465613664636166653865396431643332643465303532343063316162326164383034
+35386539663237643334383165643866363538386339396165393536656534633265653061343230
+38363135353036643839393964373266353932303564666464353034623836373137666439373165
+31306166643432303863326238633266336430393566313065353963393263656366373665303965
+66313364346134393466313739373431356561363238616232346332326262316665333262356632
+34383133636230356336393533383537306565356431623132376431313835646363653363343238
+37343965353634343136386137653766383330373761333133366262356233336434653266353665
+65333634326635656162663435313237626339383436343031343032376238316166393565393830
+66373835626661656539313263613864636634653339663633336333626162343261353133366162
+31373363303034363232656334353530666637363232336366393132383666656336313565663035
+64633531393032636239633162383366623562613632393364333065613463343134616233383234
+31383561383733343337393337316433636232386535343164333335323130633833616165383566
+66373533396237396661373330343961653066623061393630323930303234666163643131613664
+65333861653936626337353564336433636334643663376133343935313462363438356637643739
+38396632393838373934353231366136343636323963346138393264346463613036303234303332
+34653436636539303334376564313633343864363562336331383736623962643839383335333533
+62363062313966366636336666633831613537313062323831393636363738313637396434343230
+32393564616332616630303038386332653265343539346161346334316363323261386663663565
+65383664356333656164613366663335616537663364656339343733623736326665653737633033
+65353333653562393336616230656161646533633863643534346137646661393334653463303235
+34313836363062303932633336316233326232376530306366636366623964386139643365363831
+36346636646233353666376239356563393039313563633064656238373337383838306235386431
+63303535353736653637353135663731326464633136646338336466343934636132393864376336
+39303463353461346139316531663266303163396639353731366664353830356564386130343030
+39626661393565343232373033393062386366333163663863653132626331303137366639303065
+31363262336539336432393436623135663630366230303039313863626632316562376366386637
+34396636383938653562383333373237396131613133616438373336353231356536303862366533
+65383466303561326464366138336536363739353537633364363038393135323763643261356234
+64646434666366396562643736636265306137396134663561633865643863666237646462656163
+39313831613335613933633937666363646434646461613437613264646636646532356633303631
+32383235366239373763303863303437623436343233303835373738346365633738306264363264
+32643335666233303731666462306637313338656562666336306361323963633633646235393839
+37373163346431396535363262613763343339636263323435376431306139366461383536373763
+39646439343136383933306665643932323466323165363932333461353661353035666263383466
+36666136376531643766353133656365663763306661343534396238643737373132653935303231
+64323430636566323636666634353165303764353465663237643933366231313233313161336163
+61366337643733353639336234646631666537393563353838353666623332363463643166353336
+31663764663065366535643431396530633236633437663338396661343063376631373136646262
+37613739653937663339383033393230653265343230383266653663316233396164643431376438
+31333066623365653832326562313333323162363132666362323037666563376238646564383634
+32386433313139386639306363313464333331333666623732306637343861623162313831353461
+66306330653934343961666633333838396366366263343931633762613534353632316639336131
+63666636393638343830303964393230346236363232326130393430333366366631336161376466
+31623037363661626533393439636638653562393430366239333139383035363664383366303731
+61393961303539613565313736643362356335313737343634613632626233383663313833393136
+30313639356334316630623034663132363634346531333038383864613462653761623161663365
+34346166313235336362313437643133356565353338633062383738303532336365656162363962
+34363135383864333136323238356265616662343233623334633739626533306133363064373763
+39623333626664353038383964373135333966373835386634323465313738383432333561303130
+30336562636439636535353964333161353630623831633139373238633635396636333765626661
+65386436386464393564363239393663353239356134343835313439646537326666666436616233
+62666133626164313530393264383763313839616262383636363465336439396234366530393332
+35376365393231303165613331323631303230653166376539356462623337646263323932393363
+32306265303761343666353634303033343863343933316336393361376565623038663663626234
+62636130343839643339383064356363313165656666393166643535653365333630393334613136
+31366137373261396166633263383164663930653239376363386530346164313662613764313931
+63346566376130393532396536616439643932343639376561373332666633356638303635383736
+62643837333666623465356164633237333630663136363335363464343932343161313564393232
+63656565626265656138333965646665356136623761363263356466313839356338623032666463
+31353032626436393366626263343638393839633533393236306262323531633232663065363831
+34653836613237643535393739626435626562626161313662316433316331653331303766626132
+66303634326166383463386461326433393734326465393331633933373637653231363034633036
+64343165323039396133333037623961316265373838316235386439363466323234393065303163
+62303462653238343139353838643565333465623465356336613639623233366363323233303461
+32333538346338646330326134653735643530613565623661306635306266346361313431303430
+36346163306234323234613231353331396235373162343561326639323931363561623432653334
+33363835306561656330613034333361363837323438626138646439353037633762353664616636
+32313338333162336632656236663739373039383237623963306461363136623234326238393436
+32646633333466616230383962396666616239343431373566623730666631313965663937636132
+66663537663534396633323964623364613239376662653061396133303764383861333933373365
+65353434396664373638626565396562623164393865383630633965623831646635623262323963
+36646633343634393363323637363464323631356536636264663362313432626462363666383737
+63353736643139343765333561333032313439393236343937633331356662316162656666623936
+65376163646462313134363633393461623339646539656137633166653635616137363364306530
+34343162383962303037653937633761633062666430366463396638363565366237623263656462
+63396564633032323639313361303061666339366561393738386262373431623230663166393339
+38336536353536346565663766623932393632643332373338613536356231656433363032643738
+39366330663939626661303433653738653435393433623134306632323438633837613236636234
+33313063396634306638323066356165623939383664323866323631663066303437353333323330
+61303731666232323039623634336331656166306463323830303434373463336430366336313963
+38656639646636383664313464666231336364643030313931356234313261373561633562373266
+65633034373530313532393135326666303939323639336361656339376430663534623930373236
+61306165346463643231623037343431383965643366363738303031303962333234643239353830
+306430663165666166386439666534646161
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar04-u5/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar04-u5/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..9fbd3a3d5fb87907d74798efb1015653f8056daa
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar04-u5/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+35656665353339336235633265373964376566353864323564656336376237393432643561663265
+3332306534616134323734616561363962626338666635340a366433656535663761333066613463
+62336663343831373266633662393738333665336566666637613362613732363830386633353638
+3237356337356135650a646465353864313237396164666362353739643133653361386363626638
+62643834323964303938313031366438643339353666373332613933356162373666663337336237
+38323732616536326635396532316261383262313636626665636134646432373861613933303961
+61653163353166313232346430326366643665383866333463356666383339393738386563636566
+64343961336534373166316463656266306665393562306533353662366166356436643634616165
+37363466393438656632356638663136313532326164333439613732633833363432623562353965
+37373832646233333961613331646636663139663035633362633633326266663935666331613832
+38356339303565346132303163636462313363333861626334626539333164333731663065353238
+30346437383536313164653237366261653334623133623034376139303630633865663132333637
+37383062613330346232356131666338396430343764626139303063363537393838336165316135
+37326635386138616336303637323034313739343361636233636136313535376137326232386139
+61366263653734646561646461663633316438643934383964376365396639393662633265326565
+65623231393664623266656133356131653633636136616138663838653764393135386536346463
+65396466366539343232396235646361333133313830356337613931623830316361633865373735
+30343831306266386263656362633232396633626264373063643636643538313838323837663564
+35313736353165316133623838613964316231653036666562616636663432333230303238333131
+30613539666238363834616535346563323333393434366638353764306538663234326665366239
+31376563373038343730636439326239396663313262396433346466663963633063613335393339
+34356261343235396631646461366165616138316236313231643939363539646430643064326632
+38313762613463626661623532623838623235303030303762306638376534663164633165346136
+66356666613861623030633936346162613966613638646535663731643863613964636433613466
+38323136643734393433363962333262646664393465613665343537353265356663393437346366
+37323835333437626362383265333631346432613739326431636639353064323862343532323437
+36666665323539396262643565643064303731363465373132623332626338356563613664313036
+66333932626663326161393839643834613530646534316439373330613464333839633338323563
+31313838656466663462313530663930346461613762393732636237326164633463376330306232
+31646334313939633365373137366630393937376432303362363535353463643836626632393332
+31373737353130663034396362663862646164353063643963653138656665356434303963633132
+32616532623631326361363837303630363137303634346637633061336462363965303464653234
+65306436376561306338326466636439323563333961343864363366333639633163343166356637
+35306130306138336433313531323536666465343264636434393535366566316631373462663666
+37653032363534353133376365396535623337633162333865343930616165386364303363333139
+32653430363036323938653732653662623736393932343530373966336631303735323334636563
+32616331653334376237623363326564353333613534626335623434346134366537363032386566
+61383631363364333366343536616332653462303739366262633262626631623233373633386261
+37646461313433363262663038303036356435353963343162353566366461303062373964333031
+66326162376231313230373935323038653134373036613630383964336234343431633833623637
+62666232396131396431373536666333303461633430313230623331333566663361356137366666
+62343766633831356531303833346438653863396161346530363130383938333761313939333631
+37363863393063646137393638383962356633643337656466316561346263343637373862333538
+39613064306139626166643033653765356661343835353363326330333935653361623734356132
+38336432393930316164326337346637646333653763313937666666333064343064633535656166
+36303333333438363464313139376637383532643763303134653966666631376136656436373761
+65336662656532326132613439306432323466326565656438333630333761643634653031313736
+34323063653036646334333966383463396565333536306338623732323634643861383464616339
+39323538663539373938393164643365653861373765613532373561333965666638663530306661
+38386539616265653134376664393564303635653239343136643262653261346636653663393535
+37316666333234316231346530643764346665396531633066346332356334656230616135376438
+64313732383161323631646465306236396435376434303536396237626161616636306632323436
+66303938303464316231653761353535393462393231346465336533613466333432333538376633
+63366439396331666539393535363265616632386263646662636433656338326665613235633765
+31653436366166353036376363663465366336343734386533623365653636636165313064393664
+34356535666663623636333632333264323764386162343435363736343539663434303461376537
+30633435333338333561396237333934303734336633613837356237653732643163356539323464
+62326165636263396532613835303130343539643961343262373531306134356539306235396262
+39386239326164613033643630626236633235656434353132316537363566316234356334346332
+39356536333262306639366462653638623833343063626265396565633162346233346335643933
+63653438663961626133313666313038393263313735343534313962343832666337613232613237
+32633836303166363030326335633965313932303934343937376664386433303833643931386165
+31383635366665303666616665313462366438346639383165333164346564376135313363623661
+38616132343538616564653266346364323763656463333235666236366439376466633661396162
+61623935383430363437343938323039303133623836633737636464616234646364393461326163
+31633665393062326564366438373262656237313232386164313538393931363932636666386634
+38623063303334326136663234616638306432306632363164326633366665386464653065393836
+39336564643466643937323337343435653831336262663135333533353263636138326537303364
+63613933356461653039303538396263343131313330323830663665613261633433626335313330
+64326665346665356635353038643265663130336235656262346264373638393364366162303138
+36656662643063663932333730663063656165313966616166636262663661633735353237373563
+66363535323231656332386462323939313861313337383838643035353335363132623363383133
+39666238653231666531383865363836396531626132333638313665343263346530306132636632
+39353565323336323966346238313532613734326637396339653063383037623761616164663131
+31653935666561303031343965323032373034376132623965356463356630306563366666313063
+32313266643131623032326162326166643065333066326236633630663538613534643038356464
+63313866623533643561623637326561633331303936333666343666623266386236336439353461
+62643939316565663430383439613936343564386466363663613836623932616463343536356634
+35393361653934633430306132373735373737373564333361633966353832333336376532376136
+36393962326532383631343332343434653932663662373834613465306532366464346334626132
+33376132613939623062306230623265656330316138636263343935613835646338613266363832
+64306166396362613330316162386365343136376639343534313139313438343562376539336165
+31663936376233366432646339303131633665626338383265626661396163323732626462303630
+36393232383331306662656332346661653532633336323632643333646535633434393739653037
+64633533343130643262386335663035323139643132343636623739303437343266383964376634
+35643238363432353963666665613862396431363138653063323766393062633762663431393733
+33346434663032636130373736363333333838623462356261666265623061303764353463623966
+61303332393262306333646164356662323138373939663833383432613862343431383538323263
+35663064326537353464336464303030383737396132353130383638313061383262346236643732
+34343561333037313330306563643836346230303031373331396130653066373433313732633262
+37356465313334656339363333653037316462316131623338376438656639313366643636666563
+32363330373833313765623361306565393936303466353836333161393364623365343631626661
+61326334616133653962336238346631396466393832653839363739373366356165633434373336
+63333662383531633963346637656237376665373364616136323661346266396461643964396563
+37313734356161396464323462643335643162386538663833663236663766633164306561316636
+36643432353439656465336534303636376138656134323564623333646239636261643733623163
+61323761346630366565316335623930303135373735306662623862366138386137363737623436
+34306434616238613834396333646535366365663539366362303064323732326361353361653637
+66616434346266643738316230316334333730373235343166333266333939306631393761396335
+66633364303838613731653137396261313635666630663633396163303436393364623633333264
+33636135386566373163663737626161376364346638326631613262313732663037326566333231
+62373433373435663139343736626639376462646436316165623465313331376536666438646236
+37316436303465303666396432323830366635646566623330623032376663626262373762346237
+63616564663335653632343838386335383963356133656233373434623464323461353364323762
+32626262346335306237353636643338366166643531306566386163336163366261383936336535
+39333565613363616431326230396430353636633063656265626533353532383937343961623230
+333232636237646631396366636632666166
diff --git a/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar04-u7/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3 b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar04-u7/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
new file mode 100644
index 0000000000000000000000000000000000000000..b133c3ea7b0c0326bb95dfe224d29865e2e12ea6
--- /dev/null
+++ b/etc/kayobe/environments/production/inventory/host_vars/luks_keys/nova-svn4-ar04-u7/etc/luks-keys/dev-disk-by-path-pci-0000:00:11.5-ata-3
@@ -0,0 +1,108 @@
+$ANSIBLE_VAULT;1.1;AES256
+35383666653362613535343362323430313132383035343936343461356462343038333065663930
+3838376663333366663839343265383834346166633431330a633733346264663363633338396336
+37376334383238333631653636626466313961636165376265633939613137366636333737353937
+6135356430303938390a343237333935653765623030616231373963613736663766396436326562
+34643539613237613666333563353534643639656530636437306534393364663639333563363031
+64363237373236623436383266353766323736306664353534646362366633333334383832393865
+65346363663739303732623331326262656663613930633035626561346532363334363139373435
+39326231373738613134383539633032383633336538383064666230363130373330333463393333
+39356131383131623662376666353364303436323238633238633332623363623736653465363539
+31623932306236326339336637356432623639633134366637363832356133656239623332666431
+31376463303035346530346634363733306134663462323235663539373036613736646662636331
+36616439353134366237633066353139633831613561343165313562396538383933333437336635
+36333862393332346239373966383031376137663338373363636331643937656365663361306665
+62636666663335346664386564323264336164366665383531643265656531363531346335666461
+38316131653966386237666531643737336461623965653732626135633365623435613133353334
+62623562333866396134633561326161663966303863356265663032373133383363353330646431
+30353762323465333466383032356464383738663336626237326139383732653931653965363139
+36386331323833623364373436313339303363636664363131336635323062343661366436363763
+32333962326665323931333464343066313764633834656465323939373261623939636662623239
+32633131333739356464343437653531396563626166623035306132373139303164356265386265
+62303662363764623935333064393661383763393832663164616239353761333063616335353137
+38333362633330663136656431643735313562356130303138636565346463613265346332636632
+32613533306263336263626331316262333130333231343966636363373965313834333333643330
+35653833316464396336653030383136353962376439323231383739313434383736363836306331
+36316462323031303033313363373137306231326561613761616462393464646137393330323161
+61346434636566326337656363646532663461393831656438343964373233303766393964663135
+35613839666530373261386236306136333637626362323662393465653133353466616165663538
+63333434386538626336396438363933353234343935326234356334343161626566646630643462
+32663730633033343339383561393736303137653537373939353632636663343633656134316430
+33333430393031643264623033396136653465396635376133373030633162323038623432643137
+32626665393666653234336266306437633263646266393065383237626131333264363762336432
+63646561303239646461663133363135376164623332363234313565376563656336626262633333
+32663337393463343130343465383164396534666561326232366534646266616339336231383136
+64363664313365633337346535623039353734363463623139623763353437393636633533616636
+63303564313430643839306334383831663533626564643433636336356635353930303862353432
+32313230343833623230376666633030376631313130396630326561373531336338653531386234
+63353234316364626139393232346265643933633635313336386434663934386566633132353635
+32616366633433386332656664376262306131396361623739656533346631663438316130633532
+35663732363330303366663035656233396464343636343537303037356534316231383365626561
+65303034386466313561346465633438363838666465653134653933303332353335386531333630
+62643265386437613034393436616133623831383361393432336234636233666666653035316163
+36326531343063663839313835393265636132383866303364343139303931313963643663373233
+62353566313037393865383934386535396431373563393466636438643663386465343030623334
+36623662336637383335383962326362396136376266363064316635386338353437373034643633
+34396436643964396666646539316433383032373037316434323866326633636238653865366639
+38306134343964313532333563633861653539386239316162313665356137396466343662313366
+34633939316661373530376330653938376161383064656330646266623736313836383534356434
+31613263616639366636613665663262386638323230363135316234626632373437333030326439
+65353462626662383635336536393933356330616363663635626263363437383432353161343639
+36626334306465313230646438343131333536646334373737623462663637316131366130303239
+35343039343939633161363932653436326431393235363663653637333830333932623635396131
+35653236306333623631626264613063346430316534346539656130616362643963343032323130
+61393332633739663135643939653465366164363064303030363636356364613831643331333664
+65663336323635343236643064653132393835303538616630663134663530333739613566623061
+38386338366535623837656261373638663062393738323636643564663139383230363237326263
+34346436353637343030326336633830613638323464343033343030363864373864373962333666
+63386161376332646662623338653931613539313634313939626261623739346533343936383835
+31366334323436663861663230663561343232303530306539636638333264376265626539386638
+39363237326538313438346230653665653265613165643962363866653933373936383361363030
+30386330316433623133323139306536343863613535616461313538633932366233623834313433
+37643433363434653262323633306563373531636533633636323635336331306564373763663631
+66383031303734623531663737323464663736653632326461623035613734353764343363333061
+37356531653339633135393466363732393430323664626131656236623433626364666164633136
+63623964356633346238323532323265303566356562383535653535383132323965376364316339
+32383962613231333038366634303039373766333331373231333933613436663565356635363262
+35356638393933323032306461656163653630333937396665366566663531303836326161373439
+31666262356332613863666464633935653732386237393731373466376339633465623862316465
+38646262626337633836343534626334653764653036643033393031666266383936646664666636
+61346431626261393566313166316630306136623161363333383131343034626632633734613564
+36353162393830656538313332333730373735633234303639633035313238646338343365333039
+36356565393133626362663231343436646633613135323532386238316363356530383132343561
+30613130633436303832386438636661616562373663623561643438376232323561393434346339
+66336137633430343130373237653739393562316238333338356664323232326230626137643030
+30373162613731323737616462366631343264363665353435383462366433353535313539656136
+38383432393433323933613036653630386539653865383433333133666662303930376666393639
+64643336373763356430346165663164633239343261626265366132356566356331343863346665
+66636565306364633665336337353761386230653461653433653639313961663736393335393930
+36323538373663633262343438313733366536653232363137626339363935306436613535366435
+63396238366466656166333035336262316563343930323337306662613561313939643639353231
+61353839303563396431373436376264346132366264323565396237633334393437316463313961
+66616366636166363635353633323631373266623336353939383032343363616339613631393162
+32383231343939373635306464626461643461633834366539336639363534383865396237313961
+33656239613731653037643530633438343138656466313565383038633634306134363236356266
+61396236313830663435316135643365366230373732306236346330323332356638306634623638
+63346230616230346565313437313232613866323234383665353466316437333334306261343734
+30353463303839386562333832333866666436353239656138306463303138656238306263333833
+35326330376636653566656437663139626466396536303232376461346132383262653465666562
+36656533623563383265653464303535366164663234306334663736633930313237326162626464
+33353530656265663134626162643331633233653730653930663266373032316261333337653662
+30626535313334333433326536306166323636363139626363656439646232313739666237356637
+33393563636338363935613031653163356633356134376265356566353363306164373862386434
+39323238643766333663343237373839666266366435643166633735333537343137646364393530
+61653032343834303734653437343634643264393233333333343632643030626139376637363437
+65386661626361376431626261393230363939373266376165393262666562613134616566636336
+37663736653463633532386266666430373562323037393238613434626632393532396632323163
+63663663666163623965383035373338613934616633616530393163623532643762333330383437
+37306233343164323432306132316335383666393663353730393633343236613731393565646638
+30326463383866643463653266626264306562313463363766623337333737323538656439323963
+65626337393737373762613433323263366539613936353932323138663739633830366164383530
+30623130376439306337393234383565373831643461346437616264303432316232383136643065
+64336430326133646632313763656336366234646664656631663533323866663762616364613136
+39383934336539346437616430666435326165663134346238613039633663323463316661616264
+34326336653434363461316537386230623963383866313231326266303761656639653236316166
+30376532623162663266376564353466653331666466306638333934376334333363326565306461
+31373135326639396364643863326364656266313330663338306237633534313535333536386661
+34373839643233323333303264663632623763363934326338386566663364313137336635633238
+353731613937643631383934336638633331
diff --git a/etc/kayobe/environments/production/inventory/overcloud b/etc/kayobe/environments/production/inventory/overcloud
index eb4a476488eb5426bc38a9506e63416ecc73cc13..c9608cb40d48591780e5c18bb655847e97413176 100644
--- a/etc/kayobe/environments/production/inventory/overcloud
+++ b/etc/kayobe/environments/production/inventory/overcloud
@@ -225,6 +225,7 @@ compute-iris-cclake-himem-20230206
 compute-iris-cclake-telemetry-20230206
 compute-lrs-srcp-cclake-20230707
 compute-tuned-srcp-cclake-20230707
+compute-tuned-srcp-cclake-sriov-20240805
 compute-srcp-cclake-20230707
 compute-rcc-cclake-20230718
 a100_gpu_xe8545
@@ -234,7 +235,7 @@ dac_e_r740xd
 compute-iris-icelake-20230620
 ar06_srcp_hosts
 compute-rcp-l40-20231102
-compute-rcp-r760-mayfly-dev-20240119
+#compute-rcp-r760-mayfly-dev-20240119
 compute-rcp-internal-cclake-20240314
 #compute-ar17-c6320
 #compute-ar05-c6420
@@ -277,6 +278,7 @@ compute-iris-cclake-himem-20230206
 compute-iris-cclake-telemetry-20230206
 compute-lrs-srcp-cclake-20230707
 compute-tuned-srcp-cclake-20230707
+compute-tuned-srcp-cclake-sriov-20240805
 compute-srcp-cclake-20230707
 compute-rcc-cclake-20230718
 compute-rcp-internal-cclake-20240314
@@ -386,9 +388,9 @@ cl-ar06-u5
 [compute-iris-cclake-20210814]
 nova-svn3-er19-u30 # Unused
 nova-svn2-er19-u29 # Unused
-nova-svn1-er19-u30 # Unused
+# FAULT nova-svn1-er19-u30 # Unused
 nova-svn1-er19-u12
-# FAULT-4181 nova-svn4-er19-u23
+nova-svn4-er19-u23
 nova-svn3-er19-u24
 nova-svn4-er19-u25
 nova-svn3-er19-u26
@@ -551,6 +553,7 @@ nova-svn2-fr13-u17 ansible_host=10.41.168.31
 nova-svn1-fr13-u18 ansible_host=10.41.168.32
 nova-svn4-fr13-u15 ansible_host=10.41.168.33
 nova-svn3-fr13-u16 ansible_host=10.41.168.34
+#FAULT-4317
 nova-svn2-fr13-u15 ansible_host=10.41.168.35
 nova-svn1-fr13-u16 ansible_host=10.41.168.36
 nova-svn4-fr13-u13 ansible_host=10.41.168.37
@@ -628,6 +631,10 @@ nova-svn1-ar04-u2 ansible_host=10.41.161.65
 nova-svn1-ar04-u6 ansible_host=10.41.161.73
 nova-svn2-ar04-u5 ansible_host=10.41.161.74
 nova-svn4-ar04-u5 ansible_host=10.41.161.76
+nova-svn1-ar04-u8 ansible_host=10.41.161.77
+nova-svn2-ar04-u7 ansible_host=10.41.161.78
+nova-svn3-ar04-u8 ansible_host=10.41.161.79
+nova-svn4-ar04-u7 ansible_host=10.41.161.80
 
 [compute-tuned-srcp-cclake-sriov-20240805]
 nova-svn3-ar04-u6 ansible_host=10.41.161.75
@@ -675,17 +682,18 @@ nova-svn4-ar02-u13 ansible_host=10.41.161.28
 [compute-rcp-l40-20231102]
 nova-sv-dr05-u29 ansible_host=10.41.79.10
 
-[compute-rcp-r760-mayfly-dev-20240119]
-nova-sv-br08-u1 ansible_host=10.41.243.130
-nova-sv-br08-u3 ansible_host=10.41.243.131
-nova-sv-br08-u5 ansible_host=10.41.243.132
-nova-sv-br08-u7 ansible_host=10.41.243.133
-nova-sv-br08-u9 ansible_host=10.41.243.134
-nova-sv-br08-u13 ansible_host=10.41.243.135
-nova-sv-br08-u15 ansible_host=10.41.243.136
-nova-sv-br08-u17 ansible_host=10.41.243.137
-nova-sv-br08-u19 ansible_host=10.41.243.138
-nova-sv-br08-u21 ansible_host=10.41.243.139
+# 2024-10-31 REMOVED TO REDEPLOY AS BAREMETAL AGAIN
+#[compute-rcp-r760-mayfly-dev-20240119]
+#nova-sv-br08-u1 ansible_host=10.41.243.130
+#nova-sv-br08-u3 ansible_host=10.41.243.131
+#nova-sv-br08-u5 ansible_host=10.41.243.132
+#nova-sv-br08-u7 ansible_host=10.41.243.133
+#nova-sv-br08-u9 ansible_host=10.41.243.134
+#nova-sv-br08-u13 ansible_host=10.41.243.135
+#nova-sv-br08-u15 ansible_host=10.41.243.136
+#nova-sv-br08-u17 ansible_host=10.41.243.137
+#nova-sv-br08-u19 ansible_host=10.41.243.138
+#nova-sv-br08-u21 ansible_host=10.41.243.139
 
 [compute-rcp-internal-cclake-20240314]
 nova-svn1-ar02-u8 ansible_host=10.41.161.13
diff --git a/etc/kayobe/environments/production/kolla/config/keystone/keycloak_identity-mappings.json b/etc/kayobe/environments/production/kolla/config/keystone/keycloak_identity-mappings.json
index 236a26eb614e5cf26f92c1db479d886bbcc991e3..b8174b50cde2fd5faf3f17f1c02d04b85116b421 100644
--- a/etc/kayobe/environments/production/kolla/config/keystone/keycloak_identity-mappings.json
+++ b/etc/kayobe/environments/production/kolla/config/keystone/keycloak_identity-mappings.json
@@ -49,6 +49,7 @@
                                         "bo307@cam.ac.uk",
                                         "hm774@cam.ac.uk",
 					"sm2921@cam.ac.uk",
+					"da616@cam.ac.uk",
 					"john.garbutt@stackhpc.com"
 				]
 			}
@@ -808,7 +809,8 @@
                                 "any_one_of": [
                                         "icc20@cam.ac.uk",
                                         "gm263@cam.ac.uk",
-                                        "gsp35@cam.ac.uk"
+                                        "gsp35@cam.ac.uk",
+					"ak2396@cam.ac.uk"
                                 ]
                         }
                 ]
diff --git a/etc/kayobe/environments/production/kolla/inventory/group_vars/a100_gpu_xe8545/sriov b/etc/kayobe/environments/production/kolla/inventory/group_vars/a100_gpu_xe8545/sriov
index c31acfe533568b8fda054f9c35d7bb9c1e700e1a..2ebeb3915ee2107992c36a7a9c2a37807adecef0 100644
--- a/etc/kayobe/environments/production/kolla/inventory/group_vars/a100_gpu_xe8545/sriov
+++ b/etc/kayobe/environments/production/kolla/inventory/group_vars/a100_gpu_xe8545/sriov
@@ -3,4 +3,4 @@
 _enable_neutron_sriov: yes
 
 sriov_physnet_mappings:
-  ens2np0: physnet1
+  enp37s0np0: physnet1
diff --git a/etc/kayobe/environments/production/network-allocation.yml b/etc/kayobe/environments/production/network-allocation.yml
index 6bb5166138c03b18afb1fe8145e97cec35e14751..5aac8e712e7a543adf91845bbb68f19e4e10f396 100644
--- a/etc/kayobe/environments/production/network-allocation.yml
+++ b/etc/kayobe/environments/production/network-allocation.yml
@@ -68,6 +68,7 @@ admin_oc_net_ips:
   nova-svn1-ar04-u2: 10.41.161.65
   nova-svn1-ar04-u4: 10.41.161.69
   nova-svn1-ar04-u6: 10.41.161.73
+  nova-svn1-ar04-u8: 10.41.161.77
   nova-svn1-ar05-u34: 10.41.161.181
   nova-svn1-er18-u10: 10.41.163.145
   nova-svn1-er18-u12: 10.41.163.149
@@ -127,6 +128,7 @@ admin_oc_net_ips:
   nova-svn2-ar04-u1: 10.41.161.66
   nova-svn2-ar04-u3: 10.41.161.70
   nova-svn2-ar04-u5: 10.41.161.74
+  nova-svn2-ar04-u7: 10.41.161.78
   nova-svn2-ar05-u33: 10.41.161.182
   nova-svn2-er18-u1: 10.41.163.130
   nova-svn2-er18-u11: 10.41.163.150
@@ -186,6 +188,7 @@ admin_oc_net_ips:
   nova-svn3-ar04-u2: 10.41.161.67
   nova-svn3-ar04-u4: 10.41.161.71
   nova-svn3-ar04-u6: 10.41.161.75
+  nova-svn3-ar04-u8: 10.41.161.79
   nova-svn3-er18-u10: 10.41.163.147
   nova-svn3-er18-u12: 10.41.163.151
   nova-svn3-er18-u14: 10.41.163.155
@@ -245,6 +248,7 @@ admin_oc_net_ips:
   nova-svn4-ar04-u1: 10.41.161.68
   nova-svn4-ar04-u3: 10.41.161.72
   nova-svn4-ar04-u5: 10.41.161.76
+  nova-svn4-ar04-u7: 10.41.161.80
   nova-svn4-er18-u1: 10.41.163.132
   nova-svn4-er18-u11: 10.41.163.152
   nova-svn4-er18-u13: 10.41.163.156
@@ -371,6 +375,7 @@ internal_net_ips:
   nova-svn1-ar04-u2: 10.5.2.22
   nova-svn1-ar04-u4: 10.5.1.172
   nova-svn1-ar04-u6: 10.5.2.44
+  nova-svn1-ar04-u8: 10.5.1.6
   nova-svn1-ar05-u34: 10.5.2.38
   nova-svn1-er18-u10: 10.5.1.187
   nova-svn1-er18-u12: 10.5.1.179
@@ -430,6 +435,7 @@ internal_net_ips:
   nova-svn2-ar04-u1: 10.5.2.21
   nova-svn2-ar04-u3: 10.5.1.171
   nova-svn2-ar04-u5: 10.5.2.45
+  nova-svn2-ar04-u7: 10.5.1.7
   nova-svn2-ar05-u33: 10.5.2.39
   nova-svn2-er18-u1: 10.5.1.176
   nova-svn2-er18-u11: 10.5.1.180
@@ -489,6 +495,7 @@ internal_net_ips:
   nova-svn3-ar04-u2: 10.5.2.20
   nova-svn3-ar04-u4: 10.5.1.170
   nova-svn3-ar04-u6: 10.5.2.46
+  nova-svn3-ar04-u8: 10.5.1.9
   nova-svn3-er18-u10: 10.5.1.189
   nova-svn3-er18-u12: 10.5.1.181
   nova-svn3-er18-u14: 10.5.1.193
@@ -548,6 +555,7 @@ internal_net_ips:
   nova-svn4-ar04-u1: 10.5.1.173
   nova-svn4-ar04-u3: 10.5.1.169
   nova-svn4-ar04-u5: 10.5.2.47
+  nova-svn4-ar04-u7: 10.5.1.10
   nova-svn4-er18-u1: 10.5.1.178
   nova-svn4-er18-u11: 10.5.1.182
   nova-svn4-er18-u13: 10.5.1.194
@@ -744,6 +752,7 @@ storage_net_ips:
   nova-svn1-ar04-u2: 10.4.204.60
   nova-svn1-ar04-u4: 10.4.204.56
   nova-svn1-ar04-u6: 10.4.204.82
+  nova-svn1-ar04-u8: 10.4.204.90
   nova-svn1-ar05-u34: 10.4.204.76
   nova-svn1-er18-u10: 10.4.201.186
   nova-svn1-er18-u12: 10.4.201.178
@@ -803,6 +812,7 @@ storage_net_ips:
   nova-svn2-ar04-u1: 10.4.204.59
   nova-svn2-ar04-u3: 10.4.204.55
   nova-svn2-ar04-u5: 10.4.204.83
+  nova-svn2-ar04-u7: 10.4.204.91
   nova-svn2-ar05-u33: 10.4.204.77
   nova-svn2-er18-u1: 10.4.201.175
   nova-svn2-er18-u11: 10.4.201.179
@@ -862,6 +872,7 @@ storage_net_ips:
   nova-svn3-ar04-u2: 10.4.204.58
   nova-svn3-ar04-u4: 10.4.204.54
   nova-svn3-ar04-u6: 10.4.204.84
+  nova-svn3-ar04-u8: 10.4.204.92
   nova-svn3-er18-u10: 10.4.201.188
   nova-svn3-er18-u12: 10.4.201.180
   nova-svn3-er18-u14: 10.4.201.192
@@ -921,6 +932,7 @@ storage_net_ips:
   nova-svn4-ar04-u1: 10.4.204.57
   nova-svn4-ar04-u3: 10.4.204.53
   nova-svn4-ar04-u5: 10.4.204.85
+  nova-svn4-ar04-u7: 10.4.204.93
   nova-svn4-er18-u1: 10.4.201.177
   nova-svn4-er18-u11: 10.4.201.181
   nova-svn4-er18-u13: 10.4.201.193
@@ -1037,6 +1049,7 @@ tunnel_net_ips:
   nova-svn1-ar04-u2: 10.17.2.20
   nova-svn1-ar04-u4: 10.17.1.170
   nova-svn1-ar04-u6: 10.17.2.42
+  nova-svn1-ar04-u8: 10.17.1.4
   nova-svn1-ar05-u34: 10.17.2.36
   nova-svn1-er18-u10: 10.17.1.186
   nova-svn1-er18-u12: 10.17.1.178
@@ -1096,6 +1109,7 @@ tunnel_net_ips:
   nova-svn2-ar04-u1: 10.17.2.19
   nova-svn2-ar04-u3: 10.17.1.169
   nova-svn2-ar04-u5: 10.17.2.43
+  nova-svn2-ar04-u7: 10.17.1.5
   nova-svn2-ar05-u33: 10.17.2.37
   nova-svn2-er18-u1: 10.17.1.175
   nova-svn2-er18-u11: 10.17.1.179
@@ -1155,6 +1169,7 @@ tunnel_net_ips:
   nova-svn3-ar04-u2: 10.17.1.172
   nova-svn3-ar04-u4: 10.17.1.168
   nova-svn3-ar04-u6: 10.17.2.44
+  nova-svn3-ar04-u8: 10.17.1.8
   nova-svn3-er18-u10: 10.17.1.188
   nova-svn3-er18-u12: 10.17.1.180
   nova-svn3-er18-u14: 10.17.1.192
@@ -1214,6 +1229,7 @@ tunnel_net_ips:
   nova-svn4-ar04-u1: 10.17.1.171
   nova-svn4-ar04-u3: 10.17.1.167
   nova-svn4-ar04-u5: 10.17.2.45
+  nova-svn4-ar04-u7: 10.17.1.9
   nova-svn4-er18-u1: 10.17.1.177
   nova-svn4-er18-u11: 10.17.1.181
   nova-svn4-er18-u13: 10.17.1.193
diff --git a/etc/kayobe/environments/production/secrets.yml b/etc/kayobe/environments/production/secrets.yml
index 876539b1f694dc083f8ae3b1b64b87657dbaa44f..859ee77651a6150fca45371e4e338a7d7785929a 100644
--- a/etc/kayobe/environments/production/secrets.yml
+++ b/etc/kayobe/environments/production/secrets.yml
@@ -1,870 +1,870 @@
 $ANSIBLE_VAULT;1.1;AES256
-65353634346165316234653737386330343637373436373532376263343734663636353366316666
-3062613438333034646137666566616538386365356231390a666466373366306437313064326537
-61363837633937326234646464653865383463373266646137326330323261623132393766323433
-6561316563633433630a623863663330393837646134343739613566613462313861373439313862
-64393965613437316533306361336137643630356666366461366662366361313337383734383933
-61323435633331623963646235626137346639653638313164373730343539633430356431613637
-61383862663264326537633163346638303737376464343935393738663135396238366538366362
-66373463623236323437313738653562353963316531643563653465356632303037316235363838
-30383839363232383033336434623636363534343166653263306534643935326436623032653736
-35333062633837643861663334373764306165663962376361396563346439323134643333636434
-36356361333761306164386235313032333931326632336239616361373535386663363662643165
-61313830363762663331643164623730356461366561616662633461656634313138346236353430
-62383232333130343363633833633838623265363735336537356661623433356661383438666462
-33356162323533663264333237343331363032643331613630656334336165303062656636616136
-38326462383033356663643162663530306532383338393932666136373538636334613663366434
-34313235363163303062383264613433373461666136343162323533383933336465346637646362
-37366266373562633336636633396533333933386362366634643539613765646565323639393663
-65306235306565326137633763346166353061373463633338646139643865306463353839643936
-31646233353033383462346136623431373631303565343463616635663834323235623462613034
-34393666623638373135643932633035643736343738353365353736653539626636363439663138
-63373132653366653061323262663935393930613965656331623165303933666330336636363431
-62646233376435613031303064363663333536376661333661383964613535643830623038353435
-61323333656631633062366465636365646536363437626530313331393336653137366130623237
-66326238653165326237616663653935613739326333396137623237316130333836356363336235
-37393331613837346264383237323933386565343330316634623436626361353336323362613962
-38386535636638616662336562336161353661373261656631363164343833616464626530343834
-33656366643533353734366264343462613335356630616133646438333566396232633262303739
-39316165376664336132353161663438663934386536666630616637653266323862316334303932
-32663235636564303836383437386633386436343635386139393030346131383462346134306534
-63633763313031646337613363633062636164633564323534356230616230376432663638393163
-62666535336264343031336537616261306230333137333562633830653236313264613038346332
-38303134346636623436393635363235386361386239623336353039326330383434356639343330
-66366634396336333338383639313934383631343436303536316435633734626165396335656532
-65626438663433306463336135353534626131323839366362346233663039383365353033393633
-34363735363135663964323565353062306532633266613962623765633961646336333865613736
-61313331393335653663633965626437636262343965326363663963353332613464626233323366
-38363462393466646530663933303934306163643632623433346666333939323663326161326236
-36363065323964393237346361616534326431613539383233633763313736636535366133316466
-32633564346464343962393339336562316165343933353963366463616334323061356137383036
-61326133653863363935373334393836303534623433346565623565363438316566666336613233
-37623266636637373264386530643963613237613832626331643164366564663439326338366239
-37313839633163326261633866303431343965346331323462373838646630666630326532323638
-65363134303065363862666138366133666434646565663964343632363937343163623531386239
-36313366623235303834313266636433366366353463613764396238316230373531626134363834
-39666462376136653735323535626333663161653462303136313737336366356662393562653037
-65636364396633346166306365363734313634666534643430316439353366353038313332383535
-64633831643530666636323032303933376464343466653865386437313361363636383438313033
-39643634313336353130383165626139356564666265636466663530363938623165313065383166
-38653432363639623664643064376465363565373031393036353335626265393666336638363563
-36316435633634346566333935653463353965643435363233653330373564333039393763303631
-65353238333865623030663233623065653463346161636534383535353238303334383464613034
-30316231316163663233396139623538613864353638363134323562306337333934393339366165
-30623231373434323264383065663261656638623436336161306333393436653662383366613938
-36366131656439663037646233373662333439393665326134623334636336643834336230636331
-37313163333336643136366334616537313835323662646433363463353565666262666230393935
-35353666613161643666626338383965313138643936393065393864373234626331303332623164
-32336136373930653332633339626365643436336465386261663431343133366363376163303237
-66303239356636376430393531396665356462366538633563326565613330623764663136316534
-30373565346565663336386534656132373961313362383463306236393938653634313237663633
-37366261643235386464343632343633356536383664316165666561303430303466633735373935
-38326361393262303636653365383064343931363233613961303434386432626237306230393630
-61356531616630613531303838646131356138633437633766393862306134306538363035613633
-61353562323731646565303936633661653461393137393163623361343666616436366639623936
-34333763373461616661393564346433623463386537343636343931653362336436373863633765
-36326334656431336165373461353439373166666465346131613032326264373166373534373731
-36393735353931383034316239653565326563643436383939643634316436643439303439336462
-39303934363330393061313263623733313938363330653535306462646666353236323465623961
-31393138383361613638383338376563326662353662623064613835326437393163396662623435
-39393735306164363064353531613135346638656436666466643938353738383230396235613964
-65313361636136663333313432616463363531366233333033623362366132336532356236326134
-64396232656533323736626532643162626236383037613064613131383535666232613432373331
-36643438323536303831663664313434616132376235383064626164363337653766356133653630
-63343238326537373963323431383861643730383435373866316136633039363231373937653062
-33633833366137653663356134313039323637366434383561656633626264333566383861313666
-61613764626639396663323161336163336166303762666464373138366633616165656438333532
-39626437343235366235646633326439623739336531663564643566336534323731323035613863
-35613237363531396562623766626162383265326633373239313565666364643131623532346565
-62653038333136626465326338303831633032626666313262373937613364316263353031333438
-30383165366439383761333830636433626162386461653566383330393238366430643762343966
-64313738393964666330653131636161643132646263396333376166333733646566313632323930
-38396430353833323737303132313361323566333263616262393538353935306435386633623331
-33626437346339363736306335393464383764626639643361633361353335326536346361373362
-31306436363865663837383563613039353765333966663338613465386366373530663636626663
-33623064376364623365626566313964663536613566663137343334343164343634363362383362
-37666133656635306361383162633339346433333031306461333731313565316238646536333564
-35373431666663316564313439366564353734393064623930353035386134376233653339393964
-32366432623833623430303030636666313435613462333463343361656464653164666538353539
-32306662376630383333643737643562376338353566386266333536383063656535306234656134
-34643863373239636435393362623434613237633538353663383636633961356530643131386139
-62346633616261326463303234353963623734336638373036363363313866383536303937386661
-63633031666437323535616233343936636538626636626266633532363532343966653561323438
-34386563653461383165663934643231346438666431306438663631616131616562613033656463
-35363366626130326333666566663161343734373964353134653562316361663833356338353364
-63666436353239303033653263636665346333333036366436613234303533306133363530663331
-39613536373837613836333161663263396331363363623062666130353037613464323833343339
-39636639353935663465626361306133343532363761343832653961616632316363366530333664
-37313565623864326438626430326361303032313264323431646238306532646430666639613566
-65353633376337353638396532386132316566396261353565336665393939356362313838303962
-30306331333366623063646463346131333664343838633935613637623932633233326534303866
-36356362636431333964306361626562336261643966313961666333633635666364373664346364
-61613530343061366136323335353234323733303464623535323934643461353534663235666630
-64643266333665653061626132306665633338313937646336363033336539623135336631383331
-61623163393730396662616231343130323432666239353861376434643330303135636663643639
-31343338363938316465616136633139386161353362313762633235396533316266313036326134
-37373138303165373063633236306334353038363737303066393861393139363066373735323134
-39633931343865343663653764373336336438663734666630356639653466373337343636623261
-61383061653561383439356162383161396538663631356536646364333635616362353663346565
-33636363353139333131633831333966613166303964373064653737343665356165346431333561
-30626635653632343065313336313062363531633562613231373637623038343531383131636330
-61313931313063613231663435616262316331353332636239393735663037623765363339363438
-64646163356565643464663236363933346566613531643335636365316638636130363234646634
-31303238656639343265343065376136336436643133303162313536666361313432613361626337
-35323836373365383636373331646232346639666436616566633266383637326432363834383535
-36346535316531336634663837663037393738303961623432653337613165646231396130303936
-39613963306266613431623633663838323065326437333261633931653334306665663665346632
-31346632356664616335396563323962363135303134333334376334393730613338633335353562
-39376531356164353530366536616663616262326631666635386637373533646263353635336461
-39626532386139323739383733646534353930366463623432626161333030613362326265643162
-31613366366139623335666163363836393338333634376534376431313533356637663462313334
-62356638303237393738373233313139656163323666356237623138633465393064653530353165
-30613832656465666337626135643361666630663765646132636536613163343533663832653238
-30623439386433623838623132616230666439356466663031656166313837653965383236363565
-31663231383330346563303934633766313733323136303134343334336537353930313965376138
-38316161643362623033313261326236616535656539386638393733363533356664343162366134
-65343235633131356234646531633262356661393835346465333334353237653231343135303036
-66366637373462646564333566646533663438313463663736636535313466623336346163313139
-34626339626565396566316663363761333236656165383562323962613233643136643066663430
-33373135636433353030656634333030323664393661636636303962386231306437363037643334
-61643063373836303730323239656566353631613766646564643066633866393431613263323430
-34333531646236306639383432353431396363636464333035303066396266656436626631616235
-36373032353438316137666162383265646464393837323462343338373465643363613933383261
-65346136306564353136636464303730636432383433656630393833396535653163313964613336
-31653938373836313633333538333764616231633661656566663139343163336230323437666362
-31613330646563356461333439663966336533646234373062616130633332353530633765346139
-66326663313063663932346562653538373138366231303963306265663337626464373162663332
-62373537376232386536656566613564353033353232626530626636353263656166396131363536
-62303435303134386137336237326538643432663337376564306133326566663131613834376634
-62346164353062323161306138393432396430323566323338613535636262623532636134316132
-35336465623366623564613336316631363635393330306438656561333365386534343862613764
-62663566393535316662383162646139373532623430653936363464613763383432373938366165
-36313032353465636561393731303136333436656232363831373935626463643066656635383561
-37623438393432663039656432316536613334313734333031393561373362306265396531613233
-33303039656165303737333635373662373238343363316538343434653334636535666531366361
-30653664613439303335666434336261653463613962383036636564613964626438653262653166
-30303636323032626435623137396431353936623538613364356538316131613363306437636265
-62333935336663333461343539313535393564613139336631393866376330336262646131646465
-32613033633736616166373131313965616164633832366537616262306565663039653239396530
-35343037366439383630323363656334646465376537386331343432303937306231396139383061
-35336662376632323132633535656136663431353032646332613238303933386632386263356335
-65353031303135376334356638346564653535373362626664343930393631306437666633633164
-35306433623534663762326435383566633938393861313438353361663033623464373533323363
-36376362373664666433376336613465333661613236306161666263613539356264626562373861
-64373765303766323766323136323366373033373365633538353535303936383339653230383964
-36323836323033313831663262303138396332376336386333306531316430646133646331383363
-30646432306265643163353263396336316562386338353835336635656333303137336265313766
-31626338626138656439356433396132383563393336363363666639363365393831633966313162
-66313437323435346235626362396537323435636539643638323266326233366637373130663366
-37386238373131656638373531313930383865656262313034633662356131393532333331336335
-36626638383135323939646630343865313064343863376265646337656231306166336535316539
-30383761333062666133373761636336346436613433386661373231383834353535613130646239
-65623435336130396666386430663134323863346265643865373631326265363439393964353335
-35646331616361653038653530343736393335303935643531333665666636326662323938383065
-33623362616231343530303535366234333763343733636437336163356530373938633332373138
-37336237313835646333613763613030303738633466346163393731623461356633613537343339
-30393063346432373462616335376265643263333362333930306430643338313762383333346337
-63633161373863323366633734396632376637643533383966303964383761336266396664386561
-61653234633839643034663362623837343561373634663432306261646637666630633631353934
-37356539383931626265363263323838333930636363636431633531306239356164613338333061
-36653863356434386165326662616632386138653134383566323361313138366264383566353933
-64386432616362363363393564653362636562373362316665613732373938656663376566336435
-36386230366532323562343332303865343231333530333139316334643731343466653334613532
-63316365643262376461346437346335303231653237376163366265633263653538383066653437
-32386533646439303139346463393331303137356666383935373631666266316565623439636266
-35373937303838373966303662356330356331326265663532616161656335653665396332626434
-38343963373762653065303131383838613838333538313662386138383365646430633064646339
-61376465386439353461343631636362643835616637343364393265626661373838303433656663
-65643339383264656463303238653733326564653036393964383565313039643266356435393363
-36646164303037346338313831356564383662356132396438386637326335326133386563383966
-38356566303333313337666631643138663133336664643732303630396164366638323730306433
-34333366636463393564343234616139643366333230636534626132646162626632653830633135
-36396532653864366430353338666337396338393532323439313333383332313536363265623836
-38383530343462343762313866313431636431626537383635386135326461653431303566376263
-35336334326337323132363966663863656630326262316234656361656333363731363734316139
-39623730613239616666396666646365306639633731333466633737663762306335643839613432
-36396335393932323761303837633138333033656465396265333065656135316136303064376266
-35373936393838396561633963613061356637616432366339623335663461373535363861343831
-39366332353233663232306336636437656432666365363439386562346266646530666363623763
-36393364333730616139316362613735623037623263363839363462333264623436376363626461
-31623633373439323833363230623839313861666636386535386664306636396634303165646164
-30646438346136326339653766313739646632366366646434373730313337323161613235356462
-39353435333634363339343134383732366166653431616366626563363432656366343065303938
-34306632316631626133353062623930383533373930313661316232616136333632336562383036
-62653961343433656539623237653331333835336463323435306431343337333839383862633132
-64383166663633336263376266613465393431376337373330303635303137613761323339393663
-37636236636232343832343339323932373839636134636632326665373165616161613235643463
-37366162613332666432343439366161633839626435323535613366316263336666333366656436
-31616364326134613961386132376532333065316439326332393934373935386462306162396230
-39646663663836663339666138306133343639366130653835343430356662636136326663613065
-65353262396465353832326162393864363233363064636463383763633534656261393562326161
-63373037303132313930316164633535613430393630336336653262326637653664366164343338
-39663130623132613362383936666263353730363130323533323766393866373533653264323031
-66663766396433313838386535363438323064306534333063336338366636353231336666666530
-36646561313234346134353065636361313938623939643165373264663031316130313632346534
-33393662333931363936643032323063656236303962373936646438353730623761646437386665
-61356130303861643765336332623865306362373339393966353036636362303262643330623863
-65386466613732663935363632646563313432393439386466626161613266623537613035373163
-36633337336261656437373464393866643363396637653233323462353636343233313139396331
-38646135356432303534343065663361613361316662366634353630633630353763653764613932
-38373933316261323238323061353339636464623538353261303731393731633931333861336262
-34313661343531653264626434613465356235316563333861393065366234343538616635333135
-32376236643234313932613233343763363435316166373533333031366530303337393164393665
-38333533626534626538373866663162303064613666383632626665383966343962613132386332
-61363539653861396330303037623730623438313930353661383538326261656539633861393165
-39393432386634353938653736353561383262326434653132353466343965623861366165666166
-62343232653032643961643636386464346233346338346662336630653165363336666131386430
-64336636373639343939333032623866616566316230663832396336306230363265343932303262
-65383462343137633463653463313433303632373230363562366132366635363537656463303632
-32666663336130613330306338323735613433643337363936376332353637383532653663363863
-33623064336538393731396235396464326463346365656132643431393832366664626561333633
-62393564373535343432653836353130383563623931636664386365356232303934333533353434
-37313632393966366639613533613933303531343339636335393135393235646434633939323134
-66316265656564626666343361393065663665633237373635313764633936636433616537313332
-30623436313637626235373635313230383062653264343661383038326264356131626664326463
-62313332303633323331613766626236326463633736663562306635356139663465666139636662
-39346666373230633062313437646561373161393761323166363366356565396139623961316266
-32633233306134343039666565633263663463656165323932633739396130636330303339326362
-64373931323738616538346536666231306162653664626664366632343865306230303237376339
-62386166326461306636666132373165383035336231653665366433363436353562323265386566
-37383539626134393962306464346563373632613735306364323235633731313637633032623939
-31626262666664383238623839373365626637343038383363383061306235313562656630656535
-63393330653664396362396533653636313163656263303336636665313366663437643861363532
-64613666633937373565366331386566333931316464396435376133316366323837313632323932
-63326365393135623239316131313437386433333031633432313332643133643161636133343530
-30613434653037373266323862646435333666613539363437663437373937373232313833643734
-65356631313533316133343232376532386166643366343065316264323132663063343836666534
-37313234653730663932653832373139313539633734393365303235666532653130616238653031
-63303535336332656431643564353737633766386661616165643838303338656635303636653038
-39613436386233663965323931333239306662333837376562653237613739656562656437343063
-31346537353065653532356363343432386239356131636131333837643734363632623661653630
-35303464616139373135353165333061343363613036663236363332626666356331356530646462
-35663537353131303764333461613764613135366437613731626364383737373934363365323930
-33366238623932396434313738373134323637313265303961306366376634613339646631343335
-33356331636362376266613439663534306236313865666431383463623163663165323563633235
-62616335653063323764393661363966636365653661343264393834616533613062383434373734
-30663566333330346530363763303166653963313565383062386437373835646436363430646634
-32653435333234386562316532373538383134313265303539643139646235376134643137656437
-38373430333739326233383433373634303732383133303135623161333639323637646166656164
-37303032663137316536316638643564303765336237306234383731663032396234356638626533
-37623065663136393262303937646165656666316334653066333436643863633638303663373436
-32343166633664333266353561653330366334343866616639306364313165633135393138613032
-36663935613631313830353961393136353465353037616233326639666436313362623563393739
-37633933663136363438393962643636386332346235626364656364393366316464633661393331
-64336466343430353734346262306535303631363436663733323366326465303830303866333237
-62316637643561613737656165333836323961356330633065356135666632333237666661633464
-30643936643066346236653566333138313031306634303435326234646664656535333037303933
-64303962373535356462363832383237353966313739656236383263643964663439333237313162
-65303763306135656631306233313764353561646261323238663631663562636538333937333164
-35353964376336643761336330363834323062643031303265386235656661373931636563393262
-32323334653839343635623731646637623734386633316464316363663039303736353939646137
-31663237346334386335646664333935663361393366313831616332303634663433646262653039
-61336637643735653963626162346138663238613036333663303932636461616339353564643639
-37656564386662346365376537323866373330613532666165346362396232613439346439306133
-61333163653239363565343532646530353836353639663133303037616337353138383066333463
-64326234663939346666623731373239373335373663613930396430646134336664303531393930
-32646264373438353365323432643230643136613036363030613932383836663031616164623430
-33613839333163623536376334396432303061663831353837353562636463643734333564663833
-33396664343262326132393230646434323631326262396333356331323130623237636233633864
-36663530356566633465376264333962333765353930326162343931656139626535326663313832
-30313930363739623564356232653563663864396130653336646265316165663637646361303335
-64396538346635643533393334616631393966663032333330663863626331313735613561626265
-38346463646338383633393365646361356238336163623130313161636263663934373766396236
-36336232633339353731316361336566623837356330623062646431613136373232326361393833
-61333539306434643830336364663337353536306266633632353539623537396361323833626466
-62346532353938636337366233666438353661653432333463393763333532353766303132356439
-64333935633339383163356162386135633536366261346137666161326561353761623161633863
-31323531653733386130343966393938393630666564366465376334343763393766306332663731
-64356633333638666434393732643634636331626261303336396662376438396136626633316361
-62326462316535303539336261643836393937663735363333346466646130346261613235626661
-66323366306561633933343537366166643462343230333063613835326366326561653537626563
-64353664313961626533393163656137363432653633663431656566346134616261636535393636
-31383832306261313061393662323335343634666565343665636439303530326265353363333562
-33376132303265643334636336663931333163646432313333653961346361636237363837383363
-62333365353230653039313866356665386236643736383439333136646561613134376139336633
-31343434353237393864316639383065303362396436613562353234323761656137326561386462
-38613538336137646362373863343963646530393432373466363238363936653439666334343532
-39323361323831333733646134636361313833343635653131386635313462643437303238343763
-61666232356230626333313834316563393931643262646333633762386130366630306230616435
-36386236343965656530393361363936363131303639343632346164643131616364636164646662
-61316132643666323033666434616133303762373831613662383664623466613435623935346139
-32643634613466313862326163313739326633336132336636343431363439636361336132366230
-62663532356135323433616135313633623365306630613930323739643262376661626661653130
-39303131376464663163666664633737303334393835656463643664333362613164373234633730
-63323033643265386539353766323532663330386265653564646439373765343834316531323533
-35643763333163646238323233643766373333633161643766633431383234313362393037363936
-33333835643535393431326130373031363632313865333736656639653839633034373930613837
-65333336326338663130613430656564383130323839393133306463663264636133363265343537
-34306634663661656433646366333530313661643333363934386431356337323638343463613133
-37326463356234323030353836393630383866306562646561383430373934363237393334333861
-30353736386366656261393465626434613164376561656330636437343130363964313063626166
-31323062306262623137653965393761333065626532353531353231396333646536623830313362
-38353364383437323863333837396464613430326263666161316565316332363739323331636465
-35363233316166386365636266643966396565343738386265333336363139323739633664613065
-65353664613231613861383462653730613732393532356130623461656633386331346136666565
-34343837323232643965363637666639653365326466663431366534393436653765353261383630
-39373336383561643464336237383664333762353763663866653239356437653634653339653231
-62383061353931383864393432363961306637633565373235306165373030623030313938333263
-64396639616437613061646463626137336161373635363536633863396631316663633335316631
-65373135313930663332376164346438386539626133356364366433323436343065323662383666
-32646639383962643065343831303331613463383231383137633564633233323230663439383361
-34653331336538666436613831613930623539653238626633656361323337386262633935643136
-62386438663631323966636239383937383833383964643666396536643165366235326166626637
-34613938366364303039653061386661336465613865363863393133633864643361646638323966
-30326565613637366539646438343337333362633437643635643338343730613131386335623161
-33376461383336383539353063323737373731623063333966623165383737363534383935333163
-62316163636436623865313932366365323838653763326536633664626362373030616236663131
-38356538653137333632333530396462616166376330663835393435616565306533353663653864
-65653032363962623562643035306436626638663363323132373036636637373837326565343438
-34613639323830633934356236366566626631346631336337643062653331323161323564663766
-34353732306563306131366231636265643031306433616631376562336238313162633665653630
-30343132643238363261333931303235326137636435633063306637616434346537393037653336
-62366436653833383162646633373534336465656333333664363938653366373862633833306364
-30643231306434393331656462343538613631653262313333383234303165376562396661646464
-61333134353837333561363435303464346430323735306536316265373237623333333139623532
-36353338346438383731623966346363386462343334376139653334373461336530623332636533
-30363439626634346433656436653365313261373065646230666238333336326133353061613565
-35666566613562313230383161366536633239323139316231383062633932393336383536646531
-66363630633261666266383761333764626137623437333465316461363165643137303265373338
-32613063666335376133393535353737663635336234613038636535653864663935663761633532
-35653762633137366536616433316531356561613436363065386161353738393638363365343838
-37323061636632373432303538666134393464653961613830653730313464316339313336346335
-63333535666139323633323038623066666438396363363039343965626232373536383166623765
-30356233626431336666386638336432356139663235373765613963383238376434623165656532
-32613939616637633937336164393763343830396462356337373433303933373263313533393932
-33326538326536666334623337623166653034363763333039636135646463623239323363663663
-30313430316339663832646131306363356534396337636363353735363837376533326161373032
-30316531363437353765346662353633303939393332366364366332323961313232393035393337
-31646533663135663563636436356363343239306330613664313665643966313263363761326664
-61323135303838626238373336353231353632303765313166383431366261396139646633333564
-31656535653232363161333939636566663233623131363935336232306464666262313335333737
-61633336656265326332613238366535636239656235353130373431643734343634653466323435
-32393563636237313036353139363261363234323034386433383861326430626366343065666163
-65633962313932633063613530316436393061656539393034326439623464623836616133323131
-62333130383131376235353637396332313031353138303435373364323461303137343631616264
-31363539326161653639663537616638663438643239373937613164303666656237306238616431
-32613365386633343666616631633635636535336533653562353037363439326630663466366262
-30323339393432633263653134623337303537623064343633303939363738633964373565313064
-30323638646438663436656336393630353764323164643764653361633531376330613533646239
-30643331626563356635363861323464346564313338363939613439326261343365313039643362
-66343833616565656666376238663265343562623665386139393461323535303130623734343432
-62326431326434643865313338353635393064363733653535633666323735656534353863393836
-34383931386239323664366531646131343662643061623762366263623765393331613937333739
-37316364323537626265363337616464643832313937353963386232313665623937643031343734
-64323939336561356233666463613662333930313666353938633939353365636537383533663635
-65613765343638353638643935333665366333633662373936613039346132323162326437613835
-63363130633532316637383336316635653837643132626266343238636630396432386338313437
-63616533653639663132633739613232353234646666663133653466633535303636333636366537
-34353733643637306465643738353131323761336334393765373338303438626631663761623836
-62396266656338383936366534323161353666656565373739623937313462303938646631306536
-66643437616262363437636366656463353538613231656233373262376431376565303038643739
-66633632306364356433333933643331323533373032396131386366623435363430643565316330
-65343030626263643164346232363932336535656264633839353133376532343334373030383161
-33646262663636653636366236646566636330393738376432323835636233363163653033303063
-64353435366663323133363235653163663539313535346631616631373232353631643866623165
-32313965633737623261333061666431333361613534323832373161313966373839316366333439
-30633031306530326435663365386138373934336232386237306565316362326561393766356561
-63613530613431353762363166333261643261376539396139346162626563386133383938343230
-30343233306138353231656630363638653532636163333765363139396631373631616239336538
-39653332313961616566346532663761376466303830616265323038313761656562343633643839
-63396632653935636463653539326565306466346539383532653862656162663832383330303832
-35616666383833643032303135376161633636363766333830326330666437313934303439663532
-39376235623231316334303435636165653835623837363638386233643934613433653338343034
-38316261306533636665316331653063333530303239376133353238653738393432366130303030
-34366231633639383030343336396634623562303364666237353938303230326436653934363331
-34356434313863303632376238623932666465616331303239633636346664313839653139353030
-37376133303539323263353135633363316131353262393537623562303131353832623766663762
-38373534396539666533323037653965396635356630386636323638386430613534633538356464
-66386232646666396535333738303265643934663765366532333636343964653563366566336433
-39633936313064646536343930616565373131613936386331383865646135346366356437356365
-34623639313862373838623662636236613665356366373137326336613065333835393238616136
-34643339323161333030393032666266666237323739363632356230373639313733356437616134
-38353365663164633637353439653536383532643933383362303539306335343766623931376631
-39323537666234376163393136643163383762633130333562316564353566643064633762663632
-30653730373965636131396337353330396165316162373032343266333666386463663363396162
-65326361323336376662616463303638623239613330346135323436333566643161326535626137
-34366566323137663266633131646161396535383538343831343564353735613065623931373765
-38393530613461656365653261376461363235613665313337653361646633663330616366336464
-64396639383235313930623130336464663463376630383462303939363264356466376562316637
-65363065666465306630626430396430316632366166343131383461316135623034386462383730
-63663935383434353465366336313537636632626132333864343939396431313263333939323933
-30323463646332373832633933646665366364333934646531323231373832313463363738633530
-63646266623035666630663035363664646635646234316635326431316262313563663963333136
-38656239396134376332396332393663613230336634353638346135396239656630616631363366
-37373561373433303363623566373939653134323165656534306437383634366234643634633665
-35663932366438633634643066666234623565316331383964396334393730633039613031343964
-36376237363135626130383061643236386263343135616233306131666566326531666335316238
-37613862656261623435353338376137616531346433643065336265633238373438343333323165
-31333131386532643662326530663966303637666563393066316662326535333739663366386239
-32346237333266633930333639633638333937383766343031363565633066373839323235643138
-35613534303466303863613562616237313661336162383738366237396633623133386635386536
-34343763363638336261333563373664356366333664643832386165633131323739323430633832
-66333230383132636233376166323838376538393435616232313531626566666330346139313563
-65623638373133326437303762336335363264653761336361336566643761323661386263356634
-33343031303130343361343032613635363634383433323632396563386535663564313833363034
-61316437363236356633646338376531386136393630663861653034393763353630353338373334
-32343137636336343238336537393834666230373461303363303237663765343964346534313237
-34336565646531393737663231666135653566393436353631366466646232643331386536643166
-61636131306132333261323536633132636363363663633631346464623261393138313431356636
-36623135366661636165326437366665343931363937636663363030346234323563613266666334
-63326530653333653563666130343965383433326530636635663263373666333739343563363764
-66346439646163636361646663363230366636356237656436396364396535366263643466323737
-33653035323934376631383335333461656438303266383062663934336133343161383137666361
-65343137316465663139323731336133396639303436366335313965636631623864666664393632
-61366231353061633762363134356663663261383862323632363265303365383737656333306138
-34663433383866346663313833353666616461636638353733636130643766633436386330363862
-62636564373033616536663934353239373363393436353566353438643635666533396665643731
-36396230663337653661653263643833663437643334323166393961343362613061623166353939
-33333636393432636265623563623338336235656237393331346631616361356332383436383764
-37336435353536666333613830336432386165383637303566366263616132363163303539663266
-32653933323132373364623539373536383438633462653235383435323265643437626430373133
-35646264303232373335366461373437363563353839383737306137316562616633663337653336
-34303732303437393737386533323431636662643830653537366336613936653261613162666431
-38613362386331623434613632386436613637346234666333316163643435383866623438306465
-35653366353833373738613063356464336264646638373166383863353031623766623637353138
-64356134623339643063303537636261643732616630646166633235393334663666306337303836
-35663333386334646136343831316364363231306165343135636537396162303237303633353932
-66663866316261376138363333316439643530633134323862626335373831383861363532653432
-33666434326366663732636265396363386638613035626332313263393162303039316337343635
-36373132323436363761373034613333663434396236303931393232643263666364346164646263
-32323731643564663764663066343163336234313466653865333462386539613231326464656133
-36323533316466666632383663373162323339373666343334393439663766653934623265336531
-31303566643365633038366438333031613836343033356130653432616364363065396433626432
-31303835333663663636663335636437376365633932363861326235613735663331623664333562
-66653463323663633563336338393766613335666164633738633732383461373666643763313538
-35643332373563353765646262333631363963663461646231646133326139633030303430663964
-61663937613335373637646131306161373538636161333564333939383037396537363239653930
-30666531623435326631346438623361393364663533313736323761636363306530643134643534
-61623962383636386236646335376564353635646432336361363939386231306630306330366339
-64333164643932326135353437363162343939306630363966393437376330306530363835366232
-37323536303536373162363935303166323136323031353435303835383230363064666263623136
-34383263303636643032656436383032663263323062303766653635363130343736663536323032
-34376437353133656431393062636234326435313435363831313863316638393438326136333632
-31316635623562316233383465616538343531613137356339633632636535353265646338333237
-37313939396264653531313561613730653232336361393837623533353163626339363439323165
-35306336356462613661393237353030373434653563303066663137626138633663663934376564
-65623535393631663736333133366534653535616165396264386439623964323366386338636635
-36636532386436636531336336633666616131393434653337663536653739613532633038373734
-39383862336262396665306662633039633161653035303866613130616537336431663635366333
-31643563656137336133383338363762363730643033636665363635656336653566626231626330
-66306164313065343965316633326630353030396334666231343465646136333131383431646237
-35653738393833636533636263383066656536363162393433333135653461353137323662343038
-34383763336239663234653934333564326361396663633231323737633436346331363834383861
-65346163343935383466393236346335393136666335333130376565623762386135613434613638
-31323133653066356536353839373439316132663036366538333033346238303966336638363464
-62616530393061313534343664333233303234396638613332386263323663396339313331646633
-31333866343561616430623233316363616634303938663836363032336138383563343863363933
-31383537306665353362346632313332663061323461336335383736613964626362646336633235
-66303162623564356365666535353038316265333162353638353938616535336231626630616433
-39306530373066343734356539303235663736336238613861323766336233626464343964303461
-39346637343834643561666661663263333734663935306432626139393462373334336663643761
-39666637666139383238356135336565326237646135613132353366636631666330613337393332
-63313838623733383166313338616630616362376163306335306236303165343536633537356366
-66343366636137346234626330343165633265386534633962326139666361356438366264656166
-31666437656539303336653231396163333262303661346534653138336634343061383538663833
-37383733643364343530363833353932333464643734303839663863333233356539303736363965
-38383165376661303363343132366435383065303832626535383133346136623764366536636635
-39663332366638643931633835393033306264383532646432353739313165666437323263316432
-36643462366536666636646661343131663661323762666362356462663731626362643165313738
-34636565633838663937343830336463653865303739626135616231303633393736383766613337
-62636139623262373933343331646338663030656439616566323731306139616636336235333763
-38633039346437666630303765656562386164663536653137626233366232393066663037303136
-33623464376630356462333234393533646230386434363031303738396564636336363233323238
-39386135323362313031656138376633326138653738393233373362383132326134353332363336
-38666566363630313265633036646562313632636164316332366136646634353331363634343937
-63343833383834316462343131613039376334303164663239656331633364353632666236383763
-32366638303763316465366631366661316430306630363239613364636565303730356332643762
-31616239373933613561323432306266373931366161356530323630616430386636376139393862
-64356338636130613962333831313934383038363735626463623335663839336661343634626239
-34393837303230623833653035303364356462343330323666333864323838303064353834383732
-61656539316433656531636331376266663263323131316539353762393762316636346336663834
-65326432356135613738383563663263626363323463643566323833393331396164313862373231
-62356638636662336130643261643437386666373136656561366262663537353465656364303332
-36613532653436363031343763616434666638656232643961343766653365373431363961306430
-66346435636130373632663035366539616535303762396365636465303366326436383665373963
-38386431643064393766646530396139373332313832393635626435653661316430343839623833
-31303739386630613566643030653239626464396435306639346233313936646232303933356234
-39363735646636646665333233386130376532613737643930396331646639336463366365346539
-65323437313432656262343438386639376264633562653763333561373862313333656636333761
-36326364666236656631623761356339633034306163643331343061633330353139366230623539
-36316231643066336237373432633531653636656632396264386465366537306566373165356666
-61393061343032353836396430666537363034633262653265306635643335376664666462653438
-30353732306163656533343962643861313033666132636435383936396161323335346262313436
-38326264363331353139373133623766333332323865336165653737373061636661313165653234
-65356264383732616364313838333562323065383766396138626330363964643230316234333964
-62666439666164303937616637316538316631336439653565383964373139336232613261373261
-34623737353862663733316438343438306434316238303437626131306166363062376435383764
-37353236636136306466633238393930626566376266316537643334316266316564313063383034
-66376533666236383931313539393331663562373130363334326137353965353231393637356265
-30316331393064383066643330623463393230646437623031386137333133623231353035643264
-36643737373935376538363936663761323533336436343262363333313865313663376139356339
-35636439303936323564663530613231656135633138623566313065373862323533623631343734
-65323837323336663336343732353865653639346363393337386333623435313465376538346662
-36306136376333313962663365363833373432303533376232306135346436326263306333343762
-34313765323532623336366633336665306532383238373839353130653530363138303936336366
-39616634326131646266663764653561393062346166303932656436613564656139623536313735
-30353537333064373637356638376230623635333533636561626165393838616138366138636134
-65383133396534326539646464393830303934366134323065363331393939626163373266356635
-39653039373461386131663062666136306338316335663666313233306432316164386333376532
-31366333306238343037633231633439333135313633363962316534666339633364633331373039
-30313739393336653866666233633838323964383831313531663163646666356263353437313238
-63343732306330653732306366396461646261646130333934313366656637366536323939316432
-35373433633036663864373865306231386438623333333034653032343539396339343335643661
-61353162336237333563653738653266326130626330383336646439616663623038653639363931
-31306563363266316666646235626165623532646438633934366439363035373366623238313238
-30666633643965333565663863326561363731386136343562303661373338336138386664313330
-61336163386664613166653233653361383439653862636636303861623366383765363132383330
-33356233303738313631313837306661346335353366393135326437393337366634656664333432
-31323030656266303463623463393463386336633163313234386266653062376633326538343335
-34346535313063313933383563613033323933636661373630346361666432653364313932343764
-63643136613834326334303265653563333862626466396630346231363334663465376464326336
-62666637373639666562366239653332336464653234353465633530626164356635613336363065
-38356366373837386438353466323731383731346666343262616639343538343434633563366137
-65366237663131613934373135613235356639343563366161666561633334636232343936393139
-34373563323037616430323934653938653165343563623264356137313530646635303333383636
-62363363366530653539373536333262393535326230316137663238633763616562343865396462
-33626334326437613265363462383463316531383739616331626661613631313562333534623137
-31323436643131363661663866333837306231326364633263636331663830386463636232656533
-31636464663731313730333639623365343666626236306437353737366132646630353437623465
-39626133353864363438366565616131386661343933613464376262353035383663616537393531
-64303634663862396338663837653239316462633331316235623866316264373061326634653434
-31336334356336343638326666316465623863343731313537386465386436616531626263633433
-30646435323132376636663966613733643137663032343237306166376162663964343839386633
-32633037323135623466333030343035386432623334343866326132393231343235386337653537
-36356563646632356132373032626431616263383039616164303837393764656262633932393537
-35323662646238346330346139356236343533343363666463336664343764306331646335613964
-33323837346664616636343061396636333731393063306139623330643665626133643161373137
-34316137386631663235626466323165353332643039353931363764303261616462353061636365
-61616662613638373432636436316663313964346363383563633135363139366238643239653038
-35646266353962393733353533323538643036666662373632353637336131666162653865336635
-65383937643663346464646534653033323933613265623832376662633662663139623630383532
-32366439643562613263313437373438386564636466356434623735376238303166316437303162
-31623464343139323862653635626262613362303737333863626634363435623661343466303765
-38356461353230306438333733636263613466383962393733386337666237356366663533343234
-31386133663136623165313133633638383733656665633333633164353465306631343630343338
-31396431323266626336613863633133626165613766376364326331343861363531613237643830
-66373435396266623933323231363166643765353663653839316666373961643534613638303666
-30633532343463343362373761336136646239643038336339643566396161356664346264336135
-33623736363530626532313132613563656430316437363964326230396666623339663561306463
-31383934366562613233623962383637373539396133303733323733633563313235613731333436
-30393733373238633038306338336431366239643932316262646166313063613330333063343061
-62616431316365313733643432316365633836343136343330663830373366333433363366353936
-39366261353739633531336133393038333135646564336230343439363536616235643061323831
-64303066303161343164313435613865336138633064393761313262373731646161613239616465
-36663732326364326538376131623663323262393935383766653837623639653862653337313633
-65313739633633396231363761643330633837633764613964333163363430663033363363373663
-34653937383431643137623131313763346163363465353536613736643038633164643330396432
-63333231666131383263323365333633636535383934623966356138633332613831353335616537
-38363133643531363864303062646232363064333464643564616464326536343462623365633766
-34633932616663393439653561323239653062633261386432323561616632393439373633353636
-36333132626537623537623036353438643433373065353265616463323964623436623239323934
-37323531363962313432643963396161613339643838633538633064616130386262613232663533
-39356433626332383266336135356333303137353461333561333130383661306237373037653765
-36653431626238333737303932643133626233663831316438623632323039373162303262346534
-63383061653435346336333134633762626432313161363836376330663562316563373064373530
-36643635336330326239323266626236313933623061623537363038633933346564666264656266
-64346530393431663434343532306166383866333833643039333330373130323739306631386464
-62313133363563356235616162626366356564373266353361346434643439336231303566356364
-66656461313061303763313936353265313037313431393066326632333136623961663365333366
-66336438656465396534346563626235623364633633353261633634366462383164393338363939
-61373235666637646536383838333236613561393438336434343334366130306133346637363937
-66623864623461376632616234356564396163326330336462343066323135666532353139366339
-31376536313465633265393631653534666231626635663236643431323038616534313765373032
-35303165393835643532383139343339386262643564346635376637333432306333393634333532
-64376434396539306333623934663265643139316333366363623036633861393332636630333335
-63383063653532613264373539303233623137343137316166613565376235353439366662383836
-62376164646632643737616464613530626238393837633439336536373863643139333336613765
-37333737616337626538363961303131353337363637633066313965326366373961306233343936
-37396232313263316239323831623461343562656138336263346634323836643438656166343030
-30656130633063313637656364366438393233316636626233653834653261313230373366646163
-38663631363130323964646439346539663335343765366463326339323435323065653462393031
-62363834396536363933643463366339633035383233393138653432363866386564386633336531
-65316564366539333764363933323839666563643737323137306332343134633466613162353239
-63633264633863343331353734323166356335313332323834386131393862343638363366346266
-31613639353866646431386432333235623864616165613734306331333932353265626337326238
-65623566393565666231356265353437646262303663386163343338313961303434396431623965
-65323461383864316463306562366132393862356661656166623538646266646138666436316161
-63613762613930343939653465396263656138333366303336363434336430323961326437313436
-64613335333332353439303733356630333063353134363964323137643434353264363766646232
-62633836326634636562326634326639373332313436353535316230306465366635666438636265
-33363139623737633032383038353464616539306334653732333434356336623063636538346566
-32643233613934303262376364333461393935373666323366653335316165616239393761623065
-30323231333434373136366139393436323434326366646630333936616563356637383765386463
-65373266366436316461326135313732616362343539643365653836646236633265383062353363
-63636434363063613736323765313837356261343962333037373637666137656338343735623033
-35336634616334313136313037663830343031643563383539316437633934613531636462326433
-35633565626462346338636433346664333439323361336534353261323462653361636637393335
-36663131343961323735623937373933653634653233383938663830376362646666616262636639
-65343631376163326166323637363736303930646662383937633636353837636135343433666562
-37303231316434353139656631383162363763356536383039386631383266643361316530383062
-38613334653563623434643730613138396336616162656230643237346435303833333938303931
-32303032363363396366653534636431643436353130323763393135373538346165656665376161
-31666239306332653362336565366536343930613265636131346438386430303236393930626563
-65386331663833363630316236323231613265373366313466336138646165313962623732643630
-35653536326664373062386234666266393463383237666663363466643965333163633265373137
-31323161356462623932636565393830633338383238323331656639653462336263393265626339
-62626333306236323731353634663766343631643363623130663738306239386566623862343362
-65303862636563306237353263323863326235333930336563306334313865656136363937363139
-31326230666632366634303035616238623631336134333238396533373866646536353264653538
-61316534393961363630613665386462363032356166633666373762306565633463316333623863
-35616531633330383335323764386139643663363637643935353033613164306434333363613264
-63333862383735326433333035636330303161663466646463613961656236353966653930323437
-35393164653936363831636164663435383063356362653862383935666165303665386663653665
-64323961343831323433366562303838303837366164356131363938366634323965663934633036
-33393262303333633031326131363162653033666239626564306634303239323933306432323965
-63336135326364636337383764366134363035393636333134666632376365616634326631633664
-33663232383339616135626364383536373262366339663566646666313530373130393030666262
-34353166333737643938383264306436383733653236363939396333356232346439343263653534
-66666263373834386335323839313566633966373237323039623964373261326436646663333635
-64303862623234333235303834313833376338336361656334303231393266646633653263303661
-63366132663235613465313139363939326136303764636165643266343863663362616633656138
-66343235316535393838653039623862363135633434336566363932626136323539643138353738
-39336563343039393563633237343061386335373964363362633764326133663962663562333565
-63626337653466316233623438363835393261386638386334383432323432373034303365663531
-63643365336663663934363838313936333934653461336231396666626630376232356334383835
-63303734646266363762396333376538633765643665303433353666656164373536633139383332
-38643534376430666537386462386533303130653166356564356664326166666566626666323031
-65326537393366643935326137336361376136346238653736336363636361316561333834313339
-66643063643065333365643530373765383433383065316631356237613434396338326362306631
-61323036626634303163626663383162326632633265383634323363353362393863333939633330
-33306231633335363466326536303037396436363363396664396231343434343065316432393335
-62363934343437393032396565323939643665626139633636393338316663313332636361666138
-62313064333863353038383239373666633263336138333135316433313861373961656437353265
-37626235393630336537353261303962626163646138376238663831373566343666373332623131
-35363364326130333765383866316131353461616430363731366264376633653034643033613231
-39376531333230323839343536323133333337373931313961396539326238653736353732386332
-66313835343637313538353865643563656339313830393835343034653632383565363038346236
-33363534386638633137346239386235346530353433353338376130306262353230396638316231
-33653634623461343833356138643439613639383961336334323964373635386563326663396465
-35396338326165626337366233313339333830663366363566663464303239393733373039323464
-33323032633335316330343230393539383561623131663235666139333364623237383136386439
-34653963353634363736343064373764346161323165343436643038323930656431343163636335
-33646661383237333662626435336530333039363833333266313464316166653566393734623863
-37383161323839613062643832313535646438613365383636353939626461353639656430363164
-38323238323736363838663934376332316235376332396362646333333363313065656635636138
-35376466643266336134613266653334666439313135353933336165363331643962333664393332
-63626264333730333637336666326161623266306130323938646539363933366233393162376465
-36356332633839613735643166663232303766343566323037343138316361303965353232383863
-66303539373430643130316561333461393564313235333036303462353839666361393735303631
-36326435376565303862383365626336373462653266393233396361386232376532376362636437
-62373662373737663838316266353662303164363961613334656130626364346238313864386539
-62343537626430396133653733366230633162313636613539393933303937366434323632663564
-39653863643165326265386262316537333361376637356162306161333863653632316233356636
-33633634346364356161313739613536656332313239383433656130376562383433383039633030
-64663264636664613433383661396238343037663330363533363234363665653634353539343436
-31666631303532386438633366366539383666373464653337393135383434373765333138323862
-64306336313062366430316364626264623839353531626132323337396166333961623036623065
-65626333363534363630333066383831393735363837316433613935346364396432613763303864
-38643266353630663434343232306139363632633137326332383964303166336536323931613361
-64353563326165666137613831313262353137346135323732663861373964653063313233303331
-38643764666531366564313431633664613636363237653239666264643536623734393931663261
-34626534656434316235666533633734356161393733366535306261303064353739636535623563
-32323466373730363438343936646231623530353330323864303932383934383762653435306564
-39346566373436316466636165343162323330373462303733633130316630653534663163373737
-32653633633561373130353539643766316137306265323835316539366233363437646365633730
-66373433643033373532623564343338353164623031373335323636386132306637303535303561
-35323635396634393066306461393737336362353837376638363066373431656364626632653539
-63643165373465343635666234613238323839363066316232323563616464323336326230333632
-64303935343962303531346466363735646461623262316230373433663864396138353530333831
-65393031666436303764633538643364626464316337323838333434636436633334663533666164
-61353165346334396235363534613439663464313665663738326437613732323461396566323135
-64376132343731376236663234333162613566353331346532353339323765383863653930393431
-61386431353464346563323463393866383465383133623937663763653039386132326665346134
-64323937366361343765323764616561653165303834383238393234333266613164343937333631
-38353237373535656264666232396264373433313731643339626133373737336666336161613463
-66343031396231303166313633343365396436653164303636653234316266313237613361383963
-66653330613739393433333436653632663632623463373863343238383930353865353063643832
-65346366363939313466313332323139363339626163356535303330343739323061643665633837
-66343534353166343938306433623666343339383963353132643030353132383131343931306163
-32646361643135646530633166626563666639323433643864666665616432323734636330646263
-31323932373737333435313632636365336534353638616239323534626330303537666136666334
-64396235383431316663663431653639393231666365653661626230663061663366663733633761
-31653432653537346639656438653236376665316233356633316566636562383035316137303162
-63393639346433393863373234383533333161643930363339643464316661353131656636323930
-61353139376430323636343863663335393933346236633433303364643931653163363633623361
-32363936333662636465383966383761376139626165643433393137366664663461363338656435
-66636163333537633263363632316564656633393335323962363365643430306532316432383935
-32383834376236613162303138393534343465306337666631653536363731666638366435656130
-39373235343364333334633165323837623862663865633037663637376261366136326139633237
-38653634643864376536623535646139653932303133623531616336653637316334326334353833
-37346366653034383039306163643764666663353865353834633030313939633631383966613539
-32623935323132643034333239336366326562396534313932336464313030323232366437383734
-36363531393238356234663662613036316639303139646362366131616239383333303932356636
-39303131353430356637373734386461333230313566623939323961383031336236633230316438
-38396638306634643862323662383765633538353236386335353134666666353532306536306434
-64383338336231356464646531316165383135666538383263343636356538636266336562666137
-30303936653832336534656266653431653762633931613539326130313765386363343833303037
-66333430383664613366343563333536663765336330623330643566343866333461343264316562
-36396166633431633731366262663932336137323930303832303962373136363039386436346335
-34613165633663393162653964356432653936663730326264326133343937633862326262666131
-34623962383733333564633839393736646238666132636630393837663562306164636563653839
-38393831616137326163363164316662323961303130313765333437643733643463303365666661
-31663332616663623762616533653463613262663133643562623138303836343163643364643666
-34306565383364323661633162666135363536623135396134643334616265636633346634656261
-37316564323561323733373462303239313962383835343932656432353030343964623931646532
-35646461356466326566386134346664383466396533613038326465383036366438383665306134
-65653663623033333437616337376330376361383166303765626662383439316630303362313862
-31633433633766383465346333386431323837366631663536663261613664303763323664623163
-65363966326464326230623662356465373563313039613966643837626130363461616334626531
-36333265303835323739643764306132306437313265343162336362663836313766636433393765
-33653237616562636565316538643836306463316430373866336364303938663634316465303031
-63306637353161353236343865356563643962336136356430643737643035373361303439333862
-36353539393366306436376538343837313066663562353261386431366337363438306334363661
-39306566636564363966313362326261313033373864623764366263653234623535653437353436
-65313138656234633566386631653039373563346133386561393333326262323333653533346638
-66336332323432353966343363376138363436386533333230616434383434626262376631386338
-34633761613135646564366566633264386138343431333531353464616262363734616666633134
-31653136643764616364623766653066633335393032633966386264316361393966373964313663
-65396463323862306564356331653264323031393463373766323535363336373735303466616235
-61333236643133643234313231636633316630623930666161306364346165663632633931326238
-35623663616636373963643161623536663633613561386537393433366164383037666234373264
-66343461343163646431343130316330653461383039356237333230633836346130343661343333
-32616338366165366438613966653437336164373330663636376432376362326433633261373530
-38636566323636616332353465616536623262646535613235666434313331366232343761613365
-62633433363764313530333736303238363937613130623531636432393338346666316562333361
-37383535616137666465323234666563353762616330383438633435393834643634336634633235
-36653462313361383038333530313838303032626639646338633735663436323738626566336661
-65626536366337383236366438393630396563333264636337303734393836323263363834343363
-62346562393237306163666262323866323137643130313735323930623863316333333838613631
-34313132646439383765313136313438623736613033633037356534323233313630343731653434
-61373064316362363135323039616262666162616161323535616161643538333363393264396437
-36383464646637353231333539653838623237313166343462343239613264636238353266633363
-62356561346561396539656531323038643032333034323236643034363330386662656261303065
-62636261633632386639333865633433346332663137393438343861353831353439656561643732
-36633832613961653435666161393136306137323434363835336534343866363964633530633031
-63346433623334306433626639363234313532383565626561656339356134366363616137383765
-63323037356136613961653464346463303363363736363466626533323261643235316539306561
-33346238366331666161643732303766653534343065616530376665646266626231353534336434
-34303064393136373934636366616538396562323231623838623966356361363931393435636139
-63396566613833353437363830383837336630626531336134633333343231326261393339613065
-37303633663638393530663733663061353733383430333534326231613463303036306635393265
-35643861613936656562313163633935613765393938303433306335383831643339633166333362
-33323632656133666330633638356636323938306431373065393734363133613737346539346635
-65663765616230393131343537363939326531373064623164343066653863393833383338623364
-38623439336537303962366635376331306663363736636430653439626531646431646264613338
-62623662346265383365353530636631333132663766306365333863383961313130306433623163
-39623631303764653931303735303334373963383532353461316539346531323138396134633731
-36393336343839316539333439323030373533663062366239373637613466613964633235343533
-63376263643736633563383666656166386134653361353162366535396562663465386638353862
-30343562363031303233343838363836353665646534376531353961366464323636336231306466
-32616136306534633630616133363536653862346335363731623437303034646535666333656538
-37323934623664383164626239396337343765393165373638656135303065643835656339636165
-34653961646331643332653764663238316533623437333137326437623233636331633739333362
-64373561366136393331346366643233666466336366656430396235626163633539313365396365
-61323235316132613961636334383764653166623065656364393736356235386362333364646431
-31613233366261303332396439366638373738303563633333313066363731386662623830353936
-38623266303938303836353863356565663136373632623665313438373933663839663037376665
-31363463313433386465343439663730373437633038366536353331646533633130353333353262
-37333861323131313961656663633431306231366134366464336538366665316664373465343665
-31626534323439646565366330383364653565346537653365376338626531366531643032653231
-37366163343832353133653563643734616662343934623862643839353634303030356262656161
-32376430343564636666373464653065336330326530333833383764643334623164626664346331
-39373230643536646666643734663932353261643033313062626233313531653334616265346237
-61393731646137346137303466663131383237343366393432303635343138646663333463616330
-33663838336161333431393830393965376334636634656430626536653533613231623834316162
-34376664386634316462323566366161616430353039333731663730383238343230336438376663
-37663666383839303130306134323365623330643938373466333535313231313432363732303133
-38393231616239303639316236313832623566373566363630353363396432313532363930383935
-61373235656534336535356232613265356566656264656166636165393861353866633033663666
-37366166333137386631666363303263343066326563616635646362313234356438323239643033
-62616262373165323162663766303936346462343637303261643734323530333164626434653135
-30396266363334326461306137326163386433623931336465373439316139343061343561643264
-34633534626132646364646139663063653735303063373039333864336534623032306466393436
-30323762613337646536376133376334363436643662316266626364636235393966333534373961
-34663063303835663634386365323939626164643165616633653837383231613164636633653034
-32323130316234313131363163376266373030346262346532303239656365663538333335646435
-30393764326131366638396334363639303962386637633535623161343665306436306361653232
-39373262333965623436363538323963633132323430626466353633616136306662326439333537
-33653834316136303866313039303434613736323432323831643939316539343333376532633764
-32366133666332633332303038393964383933386330396661326638613930383335636561643563
-32343039623739386436653065656434316235366630633937383962643433633134356337386661
-62663165346635383466333034613138343733623562636333626439613130646461356333383636
-64626233666263353362316233396535323962323337383938373165643036636535386261326137
-35393866383664666133353865613164656361646361343932343161363663373062376463663565
-36373766333766633133376139363065346165666132663164653865356432653038663833656264
-38663132663862313339353864383132343038386139636461333465313666306138346630663239
-64623139393761356236643265653963613836386134663336643537623164323330313266306461
-36396362316638656631663662353131323234636337646337343061623564626430326136326166
-64313634653035346362386132353066393230376135646232336462663535616332313264303438
-64346432623861303337663338313437356634663737363537356139343133343138326236343031
-38663564613931323330343239653032653234343933613865356339643739363631363832373061
-30343734363338373836356132363265636561366161323535366337623535386232336331653737
-39663834336362646435366266626334313466656136626236366532653836333437353833613538
-31643462653061353036386233653739313365613661363466363961316538353266363363323036
-38316233633231663130313837346334323139613237383132643634633062633333303631636634
-35643132643438383762376532646233626236366238313363643066353664616461666638356161
-33623762333632623632356133663363663138633430376237363162363630303033333936383531
-39303063656462303831316235313464306562323737303466636361303463623630663638323963
-36383137333733656133303539356365366531336239653836643462613939396339303264306137
-37343839323262633834316531346237626261646439383963373866366166386662356261363238
-63336435373536643131396336633435323535363031396434343638613637366134613632316436
-33616235613133383065303738313538633165366433383938343764633833646234316664616436
-30343365336564613638396332373932323962643330333037323430303135313765343337643464
-66643733346636623263626262656633623236313162336539623466663538373735633366653939
-31653936373361326433386236343365396564336365323939663865653133383630616139366666
-37343437383533303730623836326637613435333162643938656363323064376331343562626135
-38316463303833663636386239666436386438366262373461653034343230313063616561336666
-36663261663963303261613061373961393565316265343037343437373535343362373530336463
-35653764303233646534373131386461643166353432646236333530353161626265633564623665
-31393339633230646635376136393134613265306262633436343139643361333763343865616638
-35303531376537373232613736333535353139373336313366346162343535306662633838316261
-31646132363063643264303136616464373131353231643865353762393730333364383032326261
-37356430343738663238313038393163373534643339633830393534313866366563666631393932
-61366331363537643165363963643935373633626266643631666530386664663233376238653238
-66373866323264333235396137396337396261313961386262653830386236613066663066316632
-62376630313632396638313461666233333564663731636230306263356364326165666134396630
-30336233626665613638666332323766613232303065363464356335323938316335666561396262
-31396139623766383862386564326463356137363632613331316635323336323735336132663531
-62366437343630353430616161386337336431323562323638316165313434363461346232316261
-38353435333162666332373831626231373831383336376436383363663436356133633666666261
-32366633653736326336383736653435323161323262343138323333643362356135326530633831
-38376562363130316166313762333331663935636533306631393438323433336633363139616134
-65643065393438373334356438653230613133643764336534646233393865623235666361633334
-65616430313834633762306262623562366539383032646138613363353130666538663932346338
-62373661323135373464363730613331613633393035383635616464303665356264363832376333
-33663962663335623232383866336262383935643163663534363663386364643736663139383730
-61643436616335316666376538616133326562663438326535393136303139333833393861383335
-31306662306535373163373033366139613039613561373965653938303832373138313731653232
-36363335643431336464643535623434656532396233653039323165656262653736363433343264
-31313065363061636637333965656639363638396562366431633631323364353666623437303861
-66633130653139363361326632343563623931353936303566633835346132656133343337386532
-31613538363337653737616166643263333162663365613731613034636530396439313861336232
-31343935613961363061633430386333666231343935333738343632653165303064393764333136
-38333130373839316661323731323164303137353634323065646130303138613336316561313739
-66343430323534386636656330656264333761363531666562316237323733663962616164613236
-38636234363330616232613364653730656264316462646435383863346633306139333936643866
-36643561356134616365303035613465376431653965656365366233313335646539633734373539
-37336561666365383530396364393136373435393833666261666136613662316664306432636161
-37346166353634323930666137623636363338393164316462636233323562643261313562663335
-66643764393331326663613464353463386162306165383664353364643466666434333565353732
-31353933353832306263623163353132326262376564303664323939643166653835326431356564
-64313964303135393561303461343561623833376637643961303733376432313234366362396434
-62383761646331663336646337646633323865363664396235353631353030653064386431326438
-35383064333234373964653839623330306366373236636238393561313663303637313963633837
-64626437393836346362636531393135363863363832613261383633633561643130646566373561
-39353666383038376263616133656162336530643330613464356635303261646631623639353132
-39633161303831306637316130373731323932313234666266316535613336313033313738396433
-34653035663466643432336135313237626239396262383631663961663537393437623033666431
-35343935636531626465346139376336356536383837623633633838343265353930343362343932
-39376562306539636636636339313961336163333134353237316436303835616461393330306232
-61633235613338396438336136373361313038636239663439303430323531643235363963363536
-37646239626564303266626166303332346664353266363463356330316461336638663838343537
-38613931363463656233336266623039323435633831323432346332396362353764666439666531
-30633233326231363237316264303466663037636431373065633763323463326233633935643039
-34343062373135393631313362343037386433326164306134336431616634396563613839333738
-61366239373832373437313463303564333039333634326633623130613538393165353331633665
-39333462626632356433666464613233653939393031363534656463663936613430363536343266
-30353438616263646465326236666565666664373534636236616363663862383135386266353061
-64646462306132643134363963373438623063396462386363666338653132613566646230313231
-64333138346461333562303932626365353834313933613737656530646563646436303462306563
-35323339313837343230643363333033313761353161343837633762666433356366633834346463
-30343632323533323938626462396364346130643661323563303533306332663732316433326165
-34356561666562393535663263303430626634303531666436323839653038323964656334356234
-39373036656634323465393331313862386262306332613437366233343638633138626637326236
-32646430313834306239393035313033323064636365666366313963636366616430366165343830
-33303562613237646462303137316465656262333261623937373161636637396237303737393365
-33356430323965663561303432386536363862326638336330346437623364353532343139616262
-61653964363663633038333739663938366639616437613334636437643962353137626431633663
-35663631363666626364356331333232653865306439396333396439653634343434663962646366
-33326438386361653339623831366665306165373330396332383937623463363537363732376531
-6137
+34613436366233653232363832343163306432626537666561313664336534346230333832396164
+3633343131356261336630333232313265356133343334360a626133356334353038353632316530
+62323864336364363232333766653630373930373734333134373138616530633762643861656164
+6563343232666662310a643534313665353138376566633362396566343435313732316430393262
+33353230383164363336363133353339663537333131643730356632636237393839353565336438
+38353738303131373532306161306361636333336632656430663361623039383463393333626363
+34386339643736303635643835383865353131643038666234656139376566393561373533663262
+33626161366261353332653930346236653532363633303733333866346132656264306361653261
+62656165396333306165373536363962636266646630316465663566306365643138353862326634
+31313330613562373533303363646637366130396366393738626534616632393134386661623032
+65663032646364646132383930663264316230626562636439666135393438336237663039656533
+36663634393465306633383866613239636562346661303934336337396661633235363832323531
+30343132626237363031303464363932363164333738393434333265316334336261643463623936
+32343931613839393363636530303136366363643761363530383039623237613039643263333335
+39616430653464346232646233386463653432663862363339396331396535383839323761313863
+34396461636665386365356233656266373835333536383337663837656566623165313661373233
+62336331353833643137623338616437373236633636666637343161316437383231633664316363
+31643237653766343263616432646465323264356634373762633039643830363735356663626463
+66633664616330306561393966616462346137363333616366643065663062613063323266393931
+31333766376464633733633662326538653864613161346637643536336637343631356633646235
+66663565343862376130643366656134663336326662303561316139313965346431616433306530
+37666633396635646433363264303935356530353031383332326162343632623034643130633764
+39653263316239623031636434346462323362666639616566383734373133323766656635326134
+32343033613537656165383133633763346531643163353733333565633637303732353132636161
+65333130666562613562333331363030316233313739386339386263626333663262623665636632
+34353564326138333839386238346339666562653435626538633462373135633234353764376236
+62386162353333366332626537343266373762306631356232346339343462646635303336626439
+35643930346665333037376339643231396266303666626236363864306430656635366662376464
+66663134663131313066613239373365653062346433343739306166356637373639376434653731
+62396364393864313933333165333635343030376466356364623735383931623535333033323761
+34366335373962623166396638613233663133323461623637303462663562616130373932353136
+33393334653130333263616663623536323138333261376133623466333861363335656137323234
+34353062356130626137623731333336386338393064313461386165373234366465363062656330
+61306631313735343731363030663533383437373264643531653835386436623031346562303861
+66313431323535663464303135373232623234383035643864666632326430313765636363653062
+31653137393431353832343035633762613663333135313538333439613434313635366136396537
+66633538343165323439663033336433653562313831373234396161646333653838396361333463
+33663465366263386564613137323732353962373366383334383038306664346239656266383131
+36356662633431353564363264393235613662666534313830356266613464316436613261316139
+63633536316233393062373336633866393139326539653766313934636365336232376633663135
+37613463306533313731666663616465326137363461356138663233333634353936323664666361
+35306136656634343034313635633230633133626361396637646332333065356336373163353362
+66363130303537646633333137613531616363373366393635616533356437636534346135363763
+30623336623866313137636535363131386261343461336565396333656333643562663537356266
+30373135353762636532393030303036633933386137656533316137306166646361386463623666
+36643336356566643736383564333235613339303935343939626232393965346531636131623033
+33653938386330396534306562326461343036636534613233653463393466663332636434333833
+62323337313064303962366234326262633338353334373937313036363937383639616363663033
+32666233336639356530653030666139343163363762633730306163356665656662643035333736
+66363236373163376562336465383031623934383632633639633364336631333938316263633538
+32663861653662653139303566313836336466323239316566633639663261353462323839383136
+33373063326363386362356361333732336234386138663938333831663831366664643034396163
+37373836646535656430623435313065636131303138376632613862303236356132343330316134
+66323835313836646439383164643866653337316234333364376366613761616535353333333935
+33303134313638623330643731376537393638656161383530303439666438306138386538386233
+63623134366164393133663832383836623936346537613937643564666437643238316233323566
+34646437333561366165373437363635376232656464366433326263376131363461326234323439
+62373438343932323831636233643064303431363736366630346662356533333864333131653866
+31613661633833383366303464363035383634656134666639333464313965376534396635663161
+36613566316132316639306132393739616632666361373633633066666533316164333938666663
+30636235646362303033336336373537623563626261663763666235313638313939333037663439
+34666263333563336661613262396662626634616237333866363033376663366135613036646564
+65396338653538356264633031666539666339633633636631646631383661666331336237623137
+33373962373934323866393633313237353231636533633961383862353338636164313539643232
+33366563323065303961613763623335336161333536646365313833313532663962343364343133
+31353336333930353533356330363434363031373536643836663930373630626631666661393435
+30636663616663633261373464306662626461383165666534663862633064313133656331343865
+37366161363365313262323030313438396562366436633761356165646637396239623630656361
+35306636326134343962616231303034356165333536613166346236383035633832663234353237
+64303761356166663533303566613531353437636562626539316635323733643166313930376139
+38316361653365623235663636363839613337303931386636366331636164336532333039336332
+33613766356662336239383430323635303930646635393261336261636464616464366366353437
+37383130653739343664393665353631653766663131306466316130316566363232356364613962
+64663534303733623736346431643638373934343736636232306263313633363536623039616635
+30373161313463646563633834623439366662303338633130323131653135633566636432656635
+65386264373061626261356265326261633661353939333232343930633330333335356364323134
+63313062626531343332663638636431303066663438303462653636643835386436306431656134
+66323838316166333961646436386561343336376532366632643432303532383835326538316330
+38646566306534316366643237656337393537326565343731383237636161396338323934323061
+33613333396230386164373632616665653162303534363364303632316530303966383165633831
+64613538366161333663623761626337636465623664613731333035376461633237326534663364
+65303635383832346363323664323062393438643864663538353031626137623436323031366336
+64386632356565373363383464373836623966633635613339666432366338613637356437643361
+31666461323565383065373333303064353932333331346566303232323830316139656639356534
+30333962633663626335363335663762633462393337656263323534396332386139656164656330
+62633233336134356164356338316365656664343134626631613939383039393061383930636164
+36383766636437633166323834376632613062353430613633316233343665353431316632663562
+30636662333263326464636530316635323536346132613539663265333236633164663265333638
+63636438656336356237383238303766613265313639323666383663653932323861336333666239
+33303631363338393264613765356261336238393336306464626630333233363935356133373664
+36306264613563346536323234313338303137346336376437633230653639623736626138343930
+61623834636662623139626330666166316539326433613135346435373963306630333564643664
+64633735366662393763383035646339613731613837643434323632643962666434626437376266
+63663038366561303335306235373732366439643736396663343435643864303237613732373866
+33316561623733643235663139303438366164336166366133353230643963346562346461666163
+61303030323531333531336536306235643038663464313137323162353932613732366565356332
+33613038613565303437316637616532333336386561383733336463613139626237643538383262
+65653664303362333933383835373466363832336162616138646361313966633236386139353232
+35313565663666623333633630346462306230623432643766303632613831333138656639633561
+31316135316139373434303961613038633938313063643464393431366666653165383333656435
+61333938626639373732646262616665316633393239376364343938336564633530343035653236
+32653538353935343963653537366466396466613634373437333264636536636265333431353632
+35343337656161656363396563636539653430333833643231316262623231353435313165393638
+38363236626130373830396634383664633430333636343463356366353566393034636266323639
+64666661376231363561653039323136356436633538643564663637643734346539353630613166
+62666262633033656538643137333162653761393530666638633664633033643533656133393866
+39393231643461313763383366363862396534613230383331653063643162333035656532326231
+61616538666266303037663331663962323064303930303361653163653062653237366239393035
+66656165306238326533613862343835383138623430666538353033313761333137376332383639
+63333162336135613830376233373865386338353836393662613336386231396131396530623762
+62613131363530663263623831303931333236393930653936643537393433616363383964626561
+38653665623566623462376131643833646534373239323562323736623334313436376263636161
+65363933623534326634396162633630653332383438653537336336613461656139336637626434
+65396330656264326536643635306163326566323932613236306430323930343137373164316633
+62366534363338623832393330613630646337366232396266666365353961373531636632663239
+64303436366538356365653864653835613030613265376162373430306162313137396330653335
+37646632636332333532623334356332623530333639636134663438353666366638623134353430
+35613965386237326565646266376364626534323732623461383165663031323832666234663565
+64653431303430303665316136386432666637336236353332626561393539643333313631623737
+64353236623538376636393834383138316266356535303936656432643435386536633136383332
+66656433616437636666383334303030363432346663373261313430333234366132633030363732
+66373033323038376163653761616135343631663230333936383531363739353137346662396134
+62343638646565396461653532366461313935323330316131373738323564623061633066323830
+66353266396661333662663831353763326532663033326161366337653131653065656630636165
+32663034383966613065363935613562376165656435363464316434643936646535336239356530
+30656666636537356439363264333732623865626537653439343864333838323961633636663836
+64353730353034373463653537316366383063326263633136623834663965313861653837376165
+36383438313533363864653537653436626562653436643036353136333139666634356136633735
+38343336323934636535333537366534316438643230626164313637366230363634356435336231
+37323063623964383636363938626438653438356366396666376230336331303232316632653139
+36313335393239653961363430313634323033623363356162316539366264343264653962663164
+39313830653661313635376664316138336633306335636434376239666364353863623163386330
+61386664313662383439643133663565306336366234363161666166613738646166363665633533
+39666335393235323531393165636430373361303532663833636464323434313834343463373837
+34633532396334666164343837323233653537396666393632323966643434613662383332613765
+61306639363865653138306336356663383935663835386435343234643033666635373862386565
+66643530393039373238323237323438326662666562656164336165363730303835656563383763
+39363231356532373363633233363563353839393038373738626464363132633731663065383436
+34326336303066303463383264623638636439666233373531363834346130323230393836656635
+35366365333564396534363532333562633033383130353866333536323435343038663030303763
+37626134616266323234663131633931623564303537396462383838656462356461333838636434
+39393832656435316430643364333731303938373232633763656138343932646233346436656665
+66383631393838336666333134323733613838666539383537373737353539376430396466373166
+63306163343739376135363766663735343537646566323331666562316539336361306631386630
+31383464646335623530306633333834376338326565653030633234353434363063366232333732
+30376534346238396534313765626563633132353064343765363830613737373030613131653961
+63363734323563353332353766383433363638393936326538613365313264386165643262346363
+34386638633964653433313466376638643239633664323765316639623932323133386263636131
+65656663646234643139333064303762663137646435653739333864616236613632336561376162
+35333634343435623865613235346637373836333739313263383036623737303236653264333531
+61643831303766316265373962386533356264333435323930666432613662363263623165376265
+32326465653862373439633632663230366230383036363938646536376334646565323738613864
+63366533366261633134376466306636353364383761373738646239313534656234636663646337
+61633637316638633834376361626461393335393239616161616332643561376338306130316536
+66653632616366323161636637643238646164306338313165386564393130343235313563393330
+30383036663633316433663831636538343461303430356563366661613165313032366435383438
+32313537373262643465616466353931656534306330616465366465343532643536623630396235
+39633932346635386331326561363334323163316566303866353731633537366462383231333734
+36326132666331376436316661366164663936383436636534616437633436663637383261636164
+34353230336262323765353763336339313863653038393737363462343965326436303734666137
+65366162343765376635613465393035653136623962393931303164626263353462396631346133
+64623966383861346364353261653036633839313837646662653530316131303836306464636362
+66343362646137623362616532633061376364656239373765333763633430303765613261373166
+31636164633630636363393833663938613232653339663838346339656361316630393630653537
+36623462366338386335366437623434373136346634306437373066613131323565333438316433
+33313661633266663462666661643735666265623332306237343838303766373563626434303136
+63353230643766613639613866323964646438343463633834313832613031323932633835636131
+64323637366639333035366130646362656163363465303430623937636461633661313865613330
+34666439626361633530656636646364656163626230636663633631663735356463316662623163
+35353761633335346464383865373662643364376566323661373564643162656132653864366132
+36346330393062663632313364613361393464306362353636656537653934363565316430383638
+63303237333232333165346630316137363662393163343565393838313339323330303262623564
+32636161393133613935373831386138393432316234346637646131646530376239636330616231
+65336438303339633238363637363439666162346230646164633631656162393330643332373161
+39613033373131636361613362383637626434343430333335316433373932356336303166323438
+31376264636636636264666336326334386436393761383039616438633937316535353232656564
+65356234633631346139386438366639306363373731333231303032623738626161643837313738
+36363631326639643361316563353062643439643935353261366239666436356665653238353665
+39373464336266323163393831643636653334633232393435323433393335646262383132346166
+63653338313565376464633464633632653630363566383362666436626263396666343461303136
+36373634366331333763326435313666343630386330343361383961633566376638313634313232
+33626662383865363132386361663962363130393464653130633162363839616637613430323131
+66343134353133356337363336303063373637396239383335303263386262336663343135653931
+65626665363432653039343633346162656365623432373764356266393765326531356635653036
+30353034396563386164353133366435633664396366363936636564396134393539663530333661
+62363665313665336231636330653864373831323330346333373633383162643965373538656161
+65663764353932383934613766633036376434303862303738653464336563633332343735313533
+30626433656331336234336133316238313132306561663538656233323635336338333839336563
+34313034303738633465366665646263653337663965643363646134653230356138353566363164
+62323061356362333531376435313137333830646135336436663933636532623936633066396635
+35333132633164353830303162343634616261343130653864626533343731303264363738656333
+36616333353862613131366561613762336337626339623162623139363431383630303066313231
+34386334393831666235626437303935616235376665623961663531303933303363613465616463
+38613861383464353266653134363635386466616332303561336638653861653839363131326664
+39373062343463353365616266643763616233613164656230613333313563656436646164303036
+63383338386431386133653839313331393132646163613139636131616366626239663664343231
+39336565336562626364363163396634663735376132356138323263363131653036363665383939
+36633836383662396436633265336263653731303036306531643637323864646634656236366464
+30663263333237336431303733323631303762656631663539343439663732633839623335626434
+33323838356431363338623730633438666237613230343132373637656462373731316561653638
+65373663633830643766373166346232343964613465336336643564663935303232376335383163
+39393362656433636637373562633263333837633464313064613064386162646433373262303264
+62643136316133643361633837316562623037373762333035313632333432393763653836306265
+34363036393231616337656434386639386461396565376139636363363463623962353435343832
+61353134363265663231666437386162306639383366313061626230623236633833613762643539
+35303963353435626233386137303137343334306562343539376235396466386534373735626331
+64316661663633343239633262633737383336366432313764333163663664356333303231393764
+65366464623833633839656133616466383239316437356138643433376334383034616563343837
+66346439323362663639616437393735643035626539383736623562383132356538303531336535
+33626664393837343130306361643436633437313365616561353438396465333261386432643265
+61643436396265373731353832303236313930393365656366366235303263346565643730326630
+61396333633664316566393563326337646432613733366566393131376566636637393437383763
+66303662623531633334666366653463353436613265363031343630373166666363336130333839
+33396236393432666263666633336431333135353665306161306166386330616531663235633630
+32316136346335396561336233356462663237333038313237363838623031363132613565623932
+32656665623636623066386162303636346334616338396364303639653731383634383666373662
+61336135326433613464346638316238613964333637373563626239376637356264663561303131
+32616439653437626536623964313030336636613061613266343761363630393638626562646233
+61373933633366643532646638626235646238623335386137646364343361323737363762613435
+62626363343261623161653736613536363838663664653834653135356132343635656536376262
+63303535643132323739356330646366356233303438333934343035653535663934643131333366
+31323238383864303335343035396639666439626135343362643636643461313061383339393138
+66313237333263363335333331656666366539383733383037366131363363653734343234306564
+66353437373166316364663233313830373364623263303939363730373433396131613031303261
+30376538316533616638356431366564643838626334616162663835333132356231383130353738
+30323938393662643237353466306163663437653534636538396636313035333639353633653030
+63323465663839653538333038396363303932353265346233376165663963376530373034313362
+31316233303966353034333533386135643661353634656661353834346639663561316538323666
+66623735303731323764366466323537343939323831313030656133646363373430306331303066
+61376539323565333532633562353063633337313336353232623539613263643539343939626439
+36303366623666333939306234336233323835376438646462376539643038623933386535396263
+66663364643562636334623334643637366565623937303039326361396666643332656263613636
+36613339663961623636653837623230633032323534613665636138623965386161653037396135
+61313138633564656438376632623262366535343163366361366434343130633464323934626566
+37333534626364383065383565383564303462356639643034643065656464323065373362623138
+62663131636661613435643432646238333630363830653133396366313837613263646430393736
+66356631316238666131653439623065306534333561366337353339656639323434623733616337
+63313335333963326161643139316366333733636338383963326466373165616166633936613262
+34653534643033646366613961326337613132626363333237393934333364633066393137636132
+63323862396538356264653637396536613763613731353565323830626235656139646335326232
+63346662366535316532656335386134646230653132383937373564326462383763303935626262
+32316365643063336664613134303665356633313539323034356362616534303237323035656564
+38323830626239643361633265393534373563626235306636626138616339316436623132633432
+30623731616461636263623537626632616666616434356666656430346131313536376434383065
+38313165376237323466313136643831396362653034356232363462336533633339383435343836
+37333063363061623065373435356565313739373430626336666539396165623366663039323464
+38303235646265343630646564366638333836356235376336306136313662383538353637366238
+62306237633830346634353266336363623738643239643563363733333061303865346662333933
+64323364633231393735313261386536386133656363313365393332346661383230316133323237
+30353264393965323833396161636139613834333032303064613139336563623164373863396331
+62363561663838316465643766626330316564333430633530636136343264363433356433393961
+38656565623734316237653032353434616162626239613965623030363734356664643931623964
+30643865653666306230316334666433626439616361353437353835396430623466393564616230
+37396238363863633239373037653637643738303662646637666534353338613130393566316132
+65306335383261323938623932656236653935343038643664366132333063326262386633643363
+32376666396364663162336561373964363332353437633563666233393032636662643732626266
+61366539363238353061643261356663666534353232373962633936616566333037303130343964
+64393237373234336465353866363332623932663736656535383063333165663033313039626639
+38633965303131663934663065626634643337333365313838303432393864333335666165353733
+32646664336636383431313331343561653136666632366564353763663566356661616161626534
+33613633666236363935376630333936616337343439383635323839623766313232316264323261
+35313931663264666430343439386662316637666561363666666163383833653864303139616563
+31653064333738623537663434303433306530653663386432333932623163373464313139623930
+39646364613939356536663963613039373261326230376466653534393265376130396565316363
+64306537616162343530633734383738303034353363646337313666393230616334363433346530
+61333534346136323533366134343038303534653434333663343963326364613339303434373063
+66363434316461313533643832346330666431386532656235313764666238633765363331343762
+34653164376437613262303761663961626634633461626636666134633062316637313130336538
+66636563393665626265323065633339313233323365316130313938343434366165353739333263
+33346436373935646362333333376265303636366231646538363339636133346131646661656662
+64306664663633353731333366643830633964663334636536353935653432333837646266653239
+38356361666535363762333062303032356533343961383961383738363338303030356166373762
+31643438383162373339643265393237333864363663333964363135383738366536396432343438
+63393166363465643262646666633363393066653662343034313762366663636336623031313039
+61393931643135623862396563316363373963353233613133653461346661353232346330333264
+38313766326136623637353539656339643162353731306138396264313066636135376537376339
+62643366336132383461663331313434333837393761343663333038373938666566383531366132
+31346262376235303730303533363331613430386663626436383065343634393036393933346665
+32386166393863343461373534616364323334343734626361333136303237363835663338393338
+36306231383336336464633765613739666363623930623933626335663736666137336433623634
+65353937316137623433623266356237343130323933313564623532613536356430353562613030
+37396261366163363630313939323932306665323864623765323138313261363437306138633136
+37333538366134623036623365643835306137343066653265616534613739383038616335346233
+30633966333130396465323964616334646239663137643132356163373262623134376137623837
+33366133316562633030616138333139336461646337663730363535343363616234656261333330
+31623639313663356534646232346432646337613262306538313530633361313434653230343634
+36653833336536613030626530336566373736623462393335333830376564383036623437386132
+30333161656665653764323736396366663364306161353334623634396238623632636661323962
+38656435343131363864633139343531666130393438333962303363666335383331656562626137
+33356564343463396366616230326466323565313330626635373163343466646430653664663861
+38633161633361343332656566366136623333663937633364643866623731393738323137636437
+61376364666164306466376430623937373963313761313234316432336361623762643133323531
+39356233623738303131333335616235366533653330623439666233393637383839326137643831
+37663334366265363162366465356438396462326265613761343832386363336538643266323363
+39383639323132333361613330633661346334383632613439393739376435323934643534633263
+34383366333931316639326331663930646531626364383333663734306134316539303261643738
+35636230613430626433366261643230636237373233663730363864303437333861356135626635
+30363534333263366264303262626136326236613764373437356330393938373764383639653562
+62363332393834623166316239626563373739623365373063616436323365666534393733363237
+63323537363130376431623765393536356264656635323261663662393034363139393165663431
+37656464396339356336373439666464316465383633643964316435626363633665343765303733
+63366437613262346362623163643238623366623165353133376366383864366364663361626532
+37336265353537616332363564653362643139323662323465306331316636316135646663646466
+34666235616431336634363133306566653763663130653133353365646365333361316164373438
+65303730643233393331663431666661343634623062616161346365366635323237323065373639
+31653836386233613733626239366565336339613162383937313563333761633038656566333438
+38373938623532373732396431316431663230306661313939313562316132313339353930383930
+32363238623237386462303863303066636563643035343063636263626437346134343738633534
+62366536353865636536633038643931316532363132623036363631393761646466656437613137
+33643236646238646531373430346134393538336535353066333231636335366330373338323334
+33373534653934306337623738633336383964666536633432633465653334633033353130626633
+64623964613664306236653663316564303136646663396238333533643935306165343965646332
+62366630393465396665313761623835663261353466313035383164306131313062363231613635
+64633937643065623734366663366237336335343666373539383962623433306461303237663935
+61646331383061643737326135623331373763653666653861363031626339656137643263383239
+62303062356461373662306664646565363566633162656365343135643933656430666133303431
+61363335643539333839333361386562346534326264656438316138323338616237626437333331
+37646531613465653462396665376263646366383230346631346538383030376133396362353761
+36633635363931323136646661656262646339313934346533643538316331356431386238373039
+33346162653636326634326266623038346332623362363231343534633063333361383037383265
+64353636393034623364373536656434643036383964343138323030636632613834346639313930
+34383732343630313134306630326263333830323137373232616662343630373531343838313632
+31376663613431623737373235653865396164333962393535316533383461343365343737626438
+61303465353064346133656132633631356566333632666266316637376434666632613730383631
+37616432613965636131333334333134303665646339623733363136653437363363316262303966
+62313966306463366337316162653461346537373966326661313731646234613131623961353966
+33663537343238363131623734383534356437393033613964616362323734343966323833303965
+61316631636536376435626334636431613966396363616335346539666230373135626431643335
+35393430666430643862373237633464336663663534373938623464333761303861303730373234
+64623838633963663138353066626633353765343232396237373234353833333965393530636339
+66643937626130306139366332316636393030386566656166633164613563323237346434626233
+33383934613539646665613535313835653133666538316165376565646433316162393637643366
+35363466633564376164316363373665313235363166383063363262373438626135363965356535
+37636262626361626262666463333965363561656666363032346662646630346534653234356531
+36643731646362356562336262396364336437383964336132666234663062316638306565376531
+38623962303663303436626331633965333562326266323934383232353436666234396631616464
+66666533346431396163633934666366326561653466306139663335666433646136353432306434
+65616136383539393930383761323562383465313330343938633633646433393266393633383134
+36646238353033333061663838303530353837306330616564346564623939373634346334323664
+30633333623532646366396365623165646361396661333262346361633665313931393333306536
+66383466393566626331633936623863643262326361663932623731636463316530383466623961
+32653633326630353263393431616234366131633738323736373338303239333337343462653365
+30653039366230376162353064666266303335626266636535623436303065323738613565343961
+66353236633135613737613265653835666433393039326165616463633636353437636638616330
+31363430333730393534653639323063343233393730646536356235663031653039323662313936
+62666331616139633861663134396232313037623530363339306131353061346562616566336531
+64623732646162623231653737373565393436666361373537363839393465613761396637656566
+62616238393930616164623665373165653963313031393561313166336264323765633062623366
+34363366386636373364626330346436303234356165356662613461623164646335376163333763
+64346130393334666161386133306234363864353164643537393833643566636261643039633864
+33666165633064626138666332623330333865336330396230386161366137386561623232646562
+62303438386532656539663162663963333761356536636366393662333436303663376639323864
+39626263383136663961613339376135346338343839663937333764303937616534616433633464
+33316165323335363534626535646533396365373530316565653732363464303335333736313835
+62363331383134313136326166666264653631343032316130656562653761613937383738306664
+37386364313339313564633239303530613266336334643565343935326261363236313235386431
+36646530353963366138376564643730616431353136656231636239643739333338646564356465
+33633363386165623336316336336430383463633762323262343130376435333465366563306437
+35386237343934343361316233363833323438343264373937616565393962646133623562653238
+34383761663134346633383038376565383366363432646266303837613735313066383937353833
+34313232363863633432333433346635343863393735303038663462353834303039663636303663
+31643765346239623666623430653638656435326665336464623764356361353563316261373265
+66346561386533653732363566316161393561636464633936366666313462323933646263646234
+38666537646439656332666235333736346632383334343963613939346466383464323334663263
+63303237643636366165323637336537616632613931396137663234363939616636613332633330
+35313866623264383935666334343638653334343930333866366263313833633432366166373238
+35383764613135326338306664326431323134366161356634626437383836333564396662623666
+66613736373864613636323434373566313464633964336438393736636334613963393931343038
+36396262333066303835393930383237393265356162663662393439313234376234653861636363
+62323264363064323461306436356266646364366565386464396665396637363263333036393439
+62306332346664326563356261386230316562353364373932633165316564343637663436326137
+63323463616331623463366332623234313134646463393835316439363630353761386338396266
+35396631376565323031643837383035356437626665653962393431363238346464663637336437
+32323935633332313135323338613966356437323339363638386139383964643633666465656539
+64643331653864626361393962343965333031343735633565613234396333386635643334303836
+33623734633236633864363961663762663166613161393266386364643366323432323364306330
+35393435663533633662356431613462643638363533363933363834626630396239343461376431
+32343638383235363438306231613834313232633439396332643361393862633264383634366330
+37376233373832383664303036323432656535306466393964366537386134356264616337623035
+32616564326464376632383337656532393238356531346430663433393438373637633931336333
+66323264643837626132363763353735366536376331616661333262396633303839643436333736
+35323938363437663134663331326631666633633933366334323433653563326431373733303261
+64333938313138663262346332326662383735373935633461656363383937326635326338663732
+32626261333735323766663533633937643765373434646333636433663036626330383863666534
+36623166316637333739663231363933633134316532386635653762626264303334373263343937
+30343233393834346564626364626466346464666134373630316262646261643564323033353463
+37386537613036353137613039323737633039653631633436373865303661636333353866333462
+65623736386463636465383633623862313131633036393263363463356132646636636164386464
+65353262336262393162623664376239386263373764313163343830366464356231393435643130
+35336337666434353662653432396162633833376561653463336236653565646165653461313036
+35633734343161323831346330623033306262616430323835643161393966336437313766383862
+34353630643336343632623265316135663366343430376130333766663736386162363036663236
+31623534643439633630343338633861396531303334373031636638626234633630626237343630
+32636336326165363337346233343264343738653733363433663130346464363334653961333532
+35323862363066346533366339386663653937393535393537333836333766333461623864316331
+38333564336232636164333931333232653066663830653538383334346165396663616661323436
+64303463623133346436633332363865613231386163343463393637343736303762613435313931
+63356236386366633062663962396631626436303834323462623366396339613333366137393139
+33356237376566306235663031616165623431633733643234636663323261626439363236373534
+35646637353564646632303434636563336432613432303030313339303838616336373563643634
+37626266356538333639613366666361396662353063343932396631633130363634666431333261
+37333533633563633138396431633938663732643237373331313539323230333266386531303632
+31396537666530643765373165303435376365666537616463303038373664306334393239343132
+61666138396636336234643966373035313832656135346262613337363363323066383633356365
+61313264633261366163653837353135366631353730323863633736386163306435663062373665
+37643436636335663733666330653736343735373965316131653462653532623730343162656162
+33373239396330613332373636613861366261333638653866616632376432646135396563393338
+66643864383930323136633538613333386532306563613862316162613733333762363739386265
+39363739336235333065633265383166306630333234346635633261326266616635666534633536
+33623761633438663130323337333362323932643335366336663933366665306266633163663637
+37346566643133303835356233343966643931613937313364316638643333333231643835383930
+32653631373730643266616630616135663938313265636239653863663936633934636437653539
+39346336333632396439616433396430393663656666316134366332313033376366623536613934
+61643734643532626530323539303932663537363364626265633737306631303862333763396665
+31633633653738613038353163613832346630653539343132393464363665373133316139386462
+62386437646339636531383030343538623431366338343038313363636439353461366639653934
+33373337353536316335396338616139633639626132326236656133363363303331366334663835
+62323830383339653736666230353835323633616139363033653865366364373864643432373464
+38316463643064303433326262356632333337396662346432376132636561653032323039343239
+37623236666464393466363061313736303566353561333365306664633836303135346265626130
+39336137373030376632333438396466623864653230376661386565623336623266336438323037
+64343834313263386234626663653565353863333634386464643836353130363234393262616433
+32303632613962663765653432373237663534633837653162313764343734333237616162343036
+39336635323432626432616565343731616337636535643666303133616239343764616435646436
+63343237633036316431373565633364356333323539633933656666633138376564376131386634
+65613437303835363536323565636537346165356462383861613636656638333532633666306138
+63363038663539643061343237633934343665303566633265326533656361373431646331336533
+66633037623366383563353762373661336661376438626466326538343339643937343633653435
+31613331313061343134626263316236656235336330316161393137356462636532383262643662
+61383264326334313066323761643338343461376262366661343131313438613439616131336266
+64393961313561366332313866653531613536326261376338653132393762653265363363666230
+30646430613361363933626563363938353430613434393537633834646130653333303732373937
+61376166336264303261303439343031393430383133336138626139336230356632653732393061
+35356261353064333663613837626633383231363139376132653432313066646337393965376335
+62663733383538366339333333343839626330666265366262626138373232313864383030313930
+32613631623434616266666636666131666435333463653839623538656565326264393632373834
+30306261326637383965616565663763353238663631356463316330303561623464373634653761
+62356634653163353337643335633863346333316234306533353834633364363432363739663731
+64653963386234646131636162623439363663346232323065653037306361666461336530336431
+38376436363634623230393236333330663738336133323765663834646464643137386263326566
+62666262363039643564373130643135323831393761633634636266393333333265393830333832
+62366430303764326336626164303035656662613037333635313037326633393162383632633064
+64353138616636616161366237326162386238316163613062653064316530333465643561336437
+32366239306139653163373237353761366632356164343934306664626661323635346266366461
+63613034346130616234363931353939623539313865376537383033336232366136393639356530
+31383662306262656165306430653961336331323537636633356637376130336334383464626538
+65363861643035363061383561656466306639386464323262306630653738313135373033613830
+37326264396438666532663536626465363138366539343631313536656635396639323338333662
+37616436336432393234336239343938376165353737363135313461633238666635333265303363
+35303537636638666336613562353338373533633230663832306164656562643466386634383032
+65623163356130636435313366323533373165623763373762616133636136373730306261386633
+32646630323530643737393166316266336330643430633435393161313639653062353961626331
+64363466303435313035653963613139356431343363313061373665626666333038336639653338
+37616465303439346163346563336433353931616435333762356561643635623962613235336436
+34633232346639656633636161383264383034653334666463393335346238663966643138626162
+66303438326434343235326236633563373337386238633765613030316130363465613538343132
+65663031626661366664323666623161383534326264353637646632356263636634373833623166
+62393531366534656438353836653532353830383535633463636362323437643764613663636230
+66366539616532323631396634336135306431333564366630663861386362636163383761363164
+37343465366362613563626539366639666466363266653034306638623732356630306339313930
+66623766613134346166313133343135306634373438633637303938303562636332343930636432
+30623330616239343762336163623633346433366637313034616561616664393766396139656361
+63653661353965386364333163336636366130303332383836643763366366383734653465383737
+38623132643230366136633061666436343431353731633463626136616161643361636232303139
+38333161653233643863313862316464383535373965663031336230373162643537323338666433
+62653766656561623864633631663164316130396166333466326234386131643934663562316162
+39393731613264656462386266666666376131653961373833313666383838336136353339633731
+63326466373762653139643566393533636261353362303162306638613132353262343933336366
+34393733636266306336656165636365656562663831386465303937656230333466323934396333
+37313938663438326130326162316538333663313439323130666238626266626665343065313936
+31353136316330373034666166333235306665383661626433633738623038666265313539393434
+32666133386235653662326236373432366163333830393831346439643334633036393161313538
+31353830383264323930353262366366373535383733363565313136333963343031323734353132
+65613063303463653564333630343735646234646531613461303439316538353138653235333236
+37633362363435643637303233353735383436333533353562393663363632636664643964303932
+66343762633430656436393331376161383932656537343937666264343464666631646130396536
+65396264363636636563636566343962663266353463326538646436396632613937613437333239
+36666365386437353131313639333066633961323530303862333030353635373933393761336362
+39393839343037343630396335646336323766613434366230366431353338653761333030623937
+33633735623864376363643963326235393933386261633061623732653937336430323733643261
+38313366306530333336363233323538386630363930653031613035666138336363656665636133
+36303763316434346131613737333930366161623037303761316532343137323738353637346538
+31663635333739333666316538383963393339313361663136396164303839383866643265303265
+62393664663964373136653032396338353634323331386532646164386338373337343566393636
+64396436656665653539303035336639613134356637363136643065626531363461666539366263
+39303732663864646565306364616436363462393635396663356464346531313833626565393338
+36303133656430353465303364343336303538663433393264376231623265636563363062626239
+34643636303263643836623939643936616334653930393461666634646465383937663565373334
+63316565626635316430653230656532346462616238333366386361396566353532333364353931
+65366236303062376433333261633965386535303832643366663836663035663735393563343961
+65346661633234616235643562373130636436633334393034623637383236343533303761306562
+34323165366162386365653037313737313739633066336139633234343534393065363031626336
+31376531636263393135613237326263396136633961373238383763653263343232376264336537
+39636164636665373762646436303238636631366462333863386566633464646232303264633937
+62633962336666353161653665383564363337653932303638653533613263326130626266643332
+32613630363231303130346435323533373439336263623935623435656334623465313039613266
+31623462643161363832303662316562663564656264623163313933323063363239663936393665
+63613432333036626462616163316638643131656232666135646462366566613161393965353565
+30313535633134643564346539383164396137393262626338363862646463383931323831656332
+33643861306264633565396139366437633662626330386262383266393633346130346463386164
+35356433633162303064613833646661393261313631636230383536306532303837323463353731
+36646463336531386334333337356631383262643731353337616234353431383939666262613738
+33366334313334303037353165326534613033643039386461366262366565333336313437303633
+66396165633332636536356535663664636233623232393932643434643965323231356138396435
+64663861366161393236383337663565343938346238343837656461373430313031393561346638
+34313239643635303931616165613239656139383265333135613032626262323861303531303330
+35383261646338663334373833623566626633623539633935343532316436396361313865356234
+63363766663231313862356464363539663565303935666132626636306430373866323036663331
+62663365653931373038303236366164666138326162373364353736633236353862663436313331
+62623664343039343535656538623634656237613535336530393163313562663362653231633262
+66633765613064626539376138636562346662316638373434393739386430663036653031653639
+65636633336637656337653062353830363564343962323832646135643364636364376163343230
+33306465363665396136633165363461616331353034356633366530353239313965383962663966
+39366361643636366633386636643461396138326431643866343733636465653861613666616333
+61663732663832366363363065313538653061636165323662346134613038616339643739393962
+38356136616362636537613263383531373432323439346562373730383739666133343439333466
+39313835663431383434626237613936336536353134656435396638353137643863626530396635
+36393764373161316430623565663861636233643964313365333234636561393335383965616466
+38613835656463393138343532626139363138636538623563353837656562363631393065623365
+36333966366231346663633861376366643163323165646336373033303732303134363765333733
+36666431333262636362303665353936646261356434653932386337643465313064356463613564
+63653332393536313038643761316635346533626633333039363139323338656132366164626536
+35636665313638366335386362613635613834313061633831313566666362316330616336336536
+34626339393965373530613631653430343830366134616439326265383036336234346632623637
+30306437333932326664323331653935303166656633386637323866613036613461646562653762
+30353964356438336332323665653932393466323939653739333532333235643466346634353137
+61643738616162653239363765376439346165343632396633396535393163306332343132633234
+39663866323431336238636437383934623764303361663338323766643331376635653166316434
+30383866643562313461386337656630616263633065306438346335613734316439653433393635
+65356639353232613662333165346438316134343237373436343235616535383563373232396661
+61313935363330373532383238353035653964613266656533363139656631643132643230353635
+35323862366363303062373933393938666466386565653331346430613037366435303537653537
+66656264323763613464343661663566316565353466623738643462376564376565363738363233
+34383231363538393462643630313439363064303137396439353939373363363566336166353532
+31636565333031366333643765303266333530613139643230346430353839366330656334643066
+38363932333939366334376663633662646362623933336565393131383866376166653537313865
+33353832613434386630336161663965333731626331646366393664633532363931343939633037
+32633039316234356263376364333139313862316130626136626564306162306162333762623033
+34343865663439623965643036363266613164363532303335663034386638653235343135306337
+62393565636531336363343038323333646261396461653330613830323163306533656535303130
+37303634333930316232393237646337313434383061353732313638323932333763316539373035
+63653763336236366537393733326461386535383732643966646136613937623138356134376438
+64633831646664383766386339373130316236313433666234303133386235663338393930646364
+34623333353837326533323037383961383631396435303035666462623036396334393163616165
+37663138643166373731353738666531316264313734353331366463353631613935356238653037
+35316130393536353364333166343433313062656232353566626361623138663632626362313033
+61356565393738613638666231366666633833626636303538623264356463323663366333646333
+62306463623463373164633361386134336364313563356163306638306539393563333238333531
+61633836623736356161383461636263313236343334653066656462633634303034346639643132
+66666539336436393431366637616536373830356632353131363031376463383266386461346539
+66653537333530323134316130376666353866636537376632366239323963666435383431613563
+66343262613932353236643265396461633465643637356165373636613135626230376639366330
+61353363313733393438386134323236633662623031646662653361363337383639623538313335
+38656537393038376639396637623933393039323736373665643466356364336365626137346330
+39623962353666326534376632653433356632613433383265663735346435326235396330383036
+31366135316365666261666332303765653539623761633733313538663661353663333837386339
+65396462633266616531333566316634343836353034343033343735396131396438353137353431
+65663061386432376163313532353136623664343437663363666163393034613637633061623430
+62366131616633303331653337303263303564373962666639366639613339356536376662356333
+64613962393865396663663233383938333139303761643862373631623963396164333735316138
+31393734636465666566336330616433353237396565303430343036666664613433666365366165
+36393764393434663531303435666138313832363235353233333937346364313835666437336235
+32393538363032316138633761653337666364336134653664646239623732626639613363643230
+39343839316365633131323131613136396361303665393439396435373866333832643638333137
+32393932643362663765346163383463623865643031336532316430363936366137636462313765
+30346664373534653036636366383032613032346335363936666136653363356435376632373139
+39363764633461366664343061653238326336353937316565343235613339616634616563633835
+33303033346331326630653037356637313332363766633661353238633561393338623464353731
+31333635633161306130656562633761663637643565646332323961633164636438663466613739
+34663032656434666161613237666237663464346561613561383064643836626361613632613561
+36346165393839643931616230616132663735633431616662386631626434313530386562333436
+36663164396439343639303331326334303530393664376330373266613262306634363738373835
+64623666653630343934393564346530613333643761636262353862346632626132303538626239
+37383639656234363238646434396332666562386230343733353764343262343236396134613735
+31623161336430353934383761383562366136646165333332623936616535386661366431356239
+32613561643933303366623830376630376330643935383034336339343765623463303765316230
+62623936653238613634366131643537333638363135313363353934383762653232643366623163
+33343034623161373432313263633865313631636133653736393162343335313032323263353635
+34323934316537623633653864303066303231336539656466643165303737363034646466396339
+66313231366137333933306361336666393932613539363238633066616265633563336532613362
+32663964356366386337323636356634363137383032333037626161313932303763383066303033
+37346236383432353261633363373031346433303432393534623762363062333839623630386634
+38366433336536306165343262346364643236623962343965326264306663306130343364656135
+39346662326562326436323731663431643731353436353261366237656431343137326434356464
+31393061643732653664303836626636356632353633653466623131393833613465303537376466
+37633062633639343830393038333634633739373131393364633130646434623437316265613730
+65613534343937383661653262653561313466613432326534303936633131313139313661653330
+62346634313465353635376264343964623632323434623564356630393631633765366631653937
+37653862316230636436326664336234666166333530383065303332363362313663636331316335
+33323262386634656135313366306233363464336236623132383038353331323937376561353465
+39366230336135363032313233396331353531393839336136323562346237386662663263353561
+62663034303366363665353263666538636363616133643631666338633838383531353261653431
+37633665663463323636653634646364363462663835303365643632316163323763613761663836
+34666336363730363763623561646436626637653639386336306337326631303630353439656163
+35623633633639383532663635303337303864326163303263313734313962383238393037623238
+39376430646663323566343630353633333839376138396366346163333338616338313564653934
+39383439643166623536396539616239376339633938366133323738653364643961323065323330
+38393862376531363733653463313334303665326539643532316333643638356631333135396532
+63636239333130333533643063356639376436363339366366316638343461633062313331333634
+62633038376639363438356135326662633266393361666664326632333532653034393564393631
+63373733386234363135656235393934373666303437636363653637646637323234643361346232
+39356230636666303839363965343262363931303262376131643035623733343435343935316530
+38643032663863393831623561626131393732646133646663636131376561373735343337646264
+30393962653936653765346634353232376166663135623939623431623434346639613639613765
+61626133353561303562663663396237333630336631356231393864393133373466313733633638
+66616436313433623131326464343532643165363935396536626561323166393366633535363134
+61626634316530613764353066383430376639656134326237333235343964626433393531333664
+34343361623139663839336335313738343239656637333831323336393634383335336365376631
+63666230353362323466323264613862613764623162346666643664316265636164636431646139
+62383732366236623233643966663534656464663737656162383531396364363761356439616638
+32633262643639326364326330333333623662623636396231353632336664313136343530653161
+32303966326336376439323837386565626433643232353433663436663238613935346565303330
+31666337653930646665316334356164383839333634336534363833646261393965656433366539
+66663539303635353432616362666164366466303535396533393832373930643963363462663030
+64326438626232653538633130356539386263626433646534646266313533656238343761613234
+63363637613939333337393130366236336632633930653061643766316336343961346438643734
+38613064373938653762636162383361383630343165623962333262653936613661626337663966
+35303530653839373230316439353331396332373166393831623332643733366564623465353337
+30323931346339663039326430616439623739363263363464616639633038333430643936653735
+34396534366261383232313931363361343437656330363030303762303866613333626566343735
+33373866663631306232333030393233663261306264343837336337343837303735613736313636
+66313738393665356562383736323430663130613933636339323733303635646137663039626533
+65643633316438643163383130343465333061343734663062643533323137353538356261343333
+30323264313661353137303438656336623136393865623737393738346638333030646332303934
+39653730643934313536393062663336643262653535386535393863633135303330393933663138
+32306238376639373234633363313338633832346161326561396533313238333239643863633166
+66316438316166363064323131303637306134643135303834396561363264313263646232653837
+64646536633836363636623431306231393562363665343937326161373961666365386266663239
+63363062633764633039613635636632383034326266623163316664363231363132646662613134
+32346431363731313234633533333366336530383130643162613361343636343036363237366664
+31303338346237363238306161383833396465613934396635613566343139376533653963623435
+37613638383263646461373739626634306232363136323662373830626232653866643461303231
+66373137336332613363393632376564663235613431386634623933376437336238396163623938
+35313861393734636136636331363163366330363364386535633535653036333032383839623537
+37316339633361376563313638656335663662653464613430346232313830613833613366333335
+65383435353030333034343362623738343365653336663530373561386262333863326432623966
+35623361393261336132653062303962343866626166646537326134663864303835383965333065
+36333434323232613038313463346166636161663863336130306332383138633061393335656238
+36346636343035303634646131613930623537353239613366663436633161306662383063363631
+31343434663761323934366262396336353734306435323535326564333837376363646235313038
+33333064313234313561306239396534363165636366336133343864663565303232663131303363
+38663961366561323463316432346462643761366133363163313963333064613539353862363631
+31366439333765623537323132663036316337346233393465626638333334343037663263613234
+33616634633834383065323936356436653565643366306233313861383061336361656666316530
+30356531383061363062353564336261353966633864366136326139636565626538363738316364
+33336162343663626264386232376366393239663739623136393738633566313263373464636630
+39643635393731333230353965366137633031373930336335363430306432663738323265306130
+64323632386136323765373465333065633832623464323436316133326464643237353733323931
+62373238393033396432353838623034613762636163386135356538666534633030653061343736
+31393235313630633334383737616461636239626235393731306363336236386663636430343566
+33343539353236353465323632306264656466396634323861353132383538353139346465646666
+61613663353461313665353736643430666264396361303039376134373737363631333965383432
+37386436336136626331333537313532323639633261346264653834323835303464333431656136
+32303734663531646137303664376437616133316331653232336632623366303935623838333837
+66393662303739663433333762303939623464383636326438326533323464636233616337363439
+31336466386336363636633633663166376433343032376537643062666339326538323665653565
+66653830313563373332323637323238303434336436373735303237643935363937356664616562
+65393639633538653137333330646465613239663464313937386564353038306235323139303531
+61313337623032623363613837363833643638383838356561653937346638646166396366346630
+36366431633965616439326232666464393332386431386561333062333134316561623231316165
+39316236616133613832313331633062376364343137333764393235373838303833666235393833
+37303239646664613861663030346530316537313764623337653036646630663266373635333464
+35313462643532346433616562386165633535313235656661613733633638663963363866303234
+61663430333534393639313133326566623531343030323531333866656664333266646131313934
+32613433376636383438353931306137666336356165316262623163646234656364353761626266
+65333063376664646336666234636162353964313131386136636335383433313135366236646237
+34383533616635323433636661386431303166636535386662313932653335303564643265346436
+33393562633934643162656135643033666531383139333665313965663638333539636130663664
+64303733633437303962636665663231383062346563663265383937363139383330303062366265
+36376366666435383231653464353463393963656331366631313565353962616261626163643262
+37333032316631623365613665656237353439653330633235366365343734333063356632643535
+33343661303339366266383461336165363339386162313464636534626133313763303937616465
+62323138626234346530636538623439326434643766366236656532373965323064343664326332
+62313938353833363465353332303431313262653966336432366561353539656433386136323762
+65306465363436313164623765366565343237616535366132663061623462616632383034623132
+65663966306238343165663931643433616336333931666435613636663237653132313662326233
+63386330633335666535633563373437333165626465383539373561396138333732346235343463
+65633437356432616331326162316530366631633336306363623963646438623336363463613331
+65626663366632633933316138323963613761646664383161303830303466343437656134386264
+64643537613433316666353939613365316366363330393734363338383163353832373163616232
+35363935313332313761646239326536666166663839313465363864613136623038353232333462
+33613265653435643130643530366462396536363166613866353433663033663838346531343734
+34613931613433316638616462646338656566346430306639353231646434383461303663303165
+64383863303830356666353535346165656538373834353762323462336562323637376534633866
+63343965633239386362336366633863613136373265373962643366653039613962373065623033
+65303163326234336262303539386463646162353033643636616631633366663834316162653533
+62353761373432373330316161363064333538633064613136346630353435316363313162343264
+38666362643661333530633437653965643336303564303763396261353131366230373232383564
+32666365663936383335633339393761363230623563363064333434316133663535353762333334
+38616334326332366533363662653737383132623265303831376532663965623838323164323038
+38353166373838633061346362393934316439613139326135363434636237373935613730666664
+38313663353232383031313033363733326534643531376436393732666166373438303364626131
+36363339333136663264623232613166633834623436663133616333653534306261326466366438
+61396531363161623131336633356265376565333062303332336439643766663230393966303266
+37303063313630353831613931396434616230346132393434643339383934326463656663336164
+32376433316130383462363535336339313631343762656364613335336438613536393264646263
+30646566363366653335646237616534653932393639356230653838396536353764346561616438
+34656236613863666161666538666361623035363365363438316138356431363639373961343039
+66303136373135393238656565363236633831333538313137626238323664373964626663646266
+64363334383966313861646237383338636232623134313565376136393465326536363631663863
+66613966626665343739333565356666366533383631366234386262646436653831373335353764
+65636433313330326365653831636130313337313130316665303263373530353464363164643638
+63373038363066623561316264343733663933383964633732643538393631653666613533343662
+64333832343266353762326436623030636437646632643234333764303531313561613931363163
+30666431613230353366633636663861313864643765646465623964346334613536373664636536
+63663565626561363963303236336636313936323961303861376364616630636130633232336563
+66353835623361396564666132333361656236633366626361343266393264386534336563396362
+64353465626639343232353132613339646334303337316464343762393630623838326435303364
+31376361363831346666643762323263646563363732343663663537626134636239323962316238
+32353539646232663862616161653864663634623633626439396531643362326635626666326136
+35653962643564366538656664383066303837323834376130623535666231396631633463666636
+30316563343536363965663430306435653535376162353733636665303964356434633338323235
+61316364363864656636356563306631663763356537666563373161363637313630626630613162
+61333739323437353861383330393735663366313563306561666435646435623238653537643233
+31663235316638383131376430663233306265383635646162353733646630303533366565366338
+65636466623666353532333265646464656164303737393831653633613663636163643736626336
+32663132353439396633653132353566616635326136343131323365643531626562316266303432
+30393232323433356165336165613533653264356230366233366534363935376536323934656139
+61323033326534636262636363656634666338373265346630346537346238376334666566613931
+31313635336136666536376535663764356130636335666362626536656434623038613532373234
+32356261663538323037633330653335323233633464336461393864323962396265663232633639
+66306437623238376566636534373731383166653337323939393265373761623534343638666138
+36336332623131633737666535636361306531396565363730303764633561353130646635643534
+65313330363761306237633666626632363134643031646538666662343962383462336263393130
+32333930613431633031653364633138643137386432313561393031613936376231353733383865
+37303261326132383263373230646335333131303339613465346165343365323835356565383639
+62323664306365656538643631303339653631303237376665353232376666323032303338653231
+32363631396538633037303231323533303837613465396430646266333639363865386338373066
+32356132383635626133623832613562356432323830613238316537666539656137346536616637
+65633937653066656263336464623065386662326136356533636232653239373835393532333462
+31306465303936633166616439623231643431373763623363376432353839383761323536326633
+38373335393462386365656566613566303937353039663364336261363731343434666261636466
+61656237636537343830326366636363343433306538366465386138326665343761303137346661
+37343431383739643834653732323631363363333331346631313063656665336661396463663764
+38366461653165386135373938373862386566313163643264643863323361636261336136626266
+62343563646530306335663531663364663135373566396535636263323163346261643334323339
+62653761373338373434636237373730623462316364306533643732666464366330613366386532
+62656663656264666638633364306161613266363864396636323161663630313738653263646431
+64376361366439653063633264316433656538636339313863643362623466653530396462356463
+30353262383065396664333731643535303336303031663765366639613334396434653262633866
+35313935306237393063393135626132333035373136613037383334333433383834643461363932
+66666564323561373931346136343033663762336462643132343638663630313932643831643730
+63396135326663333330326663623437303034363737366133323236616461373136313265653235
+30623234323232653734653334366665333862353364663463303561373233663836313730633064
+64376561623135343530646230653230306363323439383439326463383135313337376134323361
+64656439343730336464636263356165623735353463633464393538653463343861306232386136
+62363938303464363233613530313136393339613962376231663065623836316666656538383664
+37636533396363663664626138356636346635303134643434383535396635366266623731313335
+34656366633733333265306161636434663837356130613536643937613161663063633662633466
+32323261306365663234383862333761643362326331343164623432356631646133626664656133
+63666334306338303965666661393331343135343366333363653761623838356638643536636334
+37343965313931383832356661303361626135633362336134306637643537336233313333663939
+31353431356261616333323465336434393763633638643034306538373530396338623239653234
+66386466613035306335333936623431663236396430623231386266386533383436663762376537
+31383362363634313631383661333664643837323535653364653564633264383262656337633737
+66636432376434623864353265386339333238393264393233313666373436613266336164363831
+66666332383162626237663638323932633233323937376165366634313530626164306564353531
+30616133633863643636626338326165373335663535393339326632383331323866343437326362
+38346433386437623966323333333562313536623434386366656637306566356532623434313137
+38333137373562333234353937373666303565303631623135656264306635623839396131636631
+34303530306232653064623639313737623266303030653762663262643435623764343263373430
+64373433643931623334376432376438356236313933336264616261303137303561313835633766
+39303435333535663966373732306339343666323333346564623036333735336432643131373038
+61646362613234623065353261623239303262633434616130383835633663626264616234353463
+35396265663536396635376334633666373866356538346339356532613261646464623461346564
+34313538656137326436653764333466303937653730646635623064646138623539613963626662
+32623663323961326139316437316661653066363833393332353335323432376338343863656265
+62366339326531363661646336653131646235663662663938393536373066303733353730613264
+64623363316232356137633430666134663035666336333632373363323530356330313464643461
+31646138353761656535323732363632343761356261623561306234633338666165626265353836
+30313831616464636636663731316263366562356135313932633437303638656364653932626438
+65383436373265613132336466663661633463663362633734373233356562316135343633643933
+66633537396664613664643835663933643534336364616539306431656235336339383963333834
+31383138653565636166613637333061343338323030333435386135613338333366643138323330
+39636635623934356133376261343161623364666131373836633034323837656563653037633362
+66313138333530343262643564303533303332663434336636313165353232623061626636386466
+39323139376232336334316166396338363166653561326633656466363764383235646233626136
+35336634333830393132643630666235333937653865346239643362623333333239636636346538
+34396437373532363164303731396661313964616561383534386464626637393033623461316634
+66636162643336366538653838616236373733613736623839323239666236653533306535626338
+63396662393136323631626365656134343965663266323833353665343465666562623665386530
+66333664636231396338373935333035343437326136313962366233633332373033343466363130
+65613433343135666663366330336534643466613232396338636130383138643664356439346233
+61646165346234323736366538343864646166336166386530663138663530666466393136663936
+36636362323331643135653639393764393739366464346630313436643363613138386135346337
+37636164633965356237396339313034306466643831326666343561383661313338363961653364
+63313462633035326233376635653333323464666563316636356531383531333934373262613166
+37316537653464343564383135366438393532663438393364393837326136633863323063613262
+35316439303931383639393462356134353837623961656230323938366664323838336232323034
+32323562613933303737333866666338613661663634386166353032343531373931396561346439
+35306236633738663939366233653438343833353866646233636163616632363739313932663065
+38333365376431616639366466363635623631666631303734303731643337646535373833393833
+64646332306634646638363139613531316461636361306532393463316532613166626361363737
+66643863663931306439343265663331656335353538393939666161383437663330393561376463
+35346430633662373765626165343835613533393863373462343532663137373534386536386261
+65356165663133393032633932343061346631393837373036323266663766343635393061306364
+65623138343664326665393834333832373262616531383634363234646437333234333639333665
+38353733383662323163613133373562626534363561643137333235333364383134376464326136
+37386438636137353630356634386633333866396162666537326462666534303033323031616532
+32333739653564343639333236383666643936626333343262623133336439643137653966656436
+66383638303839313432623066323330626664346137333565373463626336613536383463306130
+31306235386230333838323336383965313361633166396331313663363838323562653139386665
+30393864613739323431656632393630666662353138613137303661343832643235626265626361
+31643736303334653764376130646536663536363435393265643663386363653962333236383866
+66323530333064613461666130643633646338353336336636383966386162653037633765616433
+32643065303430353139313166323561353634343164383331623363356337363633393036376434
+37316331326265396537656334393532326163623863366232646661373161646362343461633664
+33383238333635646530303631303939363738653137313535616462663166616566343363326631
+63633962366362363464343865653164316235666161373663643734313233623435313039383539
+31373261303730383362323366376534383131336131653939303730633665303065323339383861
+38333436653331363439303238386539306536646462383731393037663136303132636236376533
+39633362313834343334383331383766363338643561326135313564626261393766633236323134
+63363730303963666264306539346536363464653731366333633138633531383965623766633636
+62623538383939653434396236356562646136333535626266306266353333316630333864633936
+38343865343963353630346336663661343132633864633733366533376461313333656230363436
+32376636376234343630313131623333353731356566383030303064383537386531386164303632
+37616566643536366230663232663763656563323366633766656633343865656134653462306164
+65383261623137336632343031616233363339316630633362646264376138343739376364383563
+36626136646565373833343363333966623930653361666464326635623331393331363230323064
+39313539396563613535356164356138353436356537393463353862303236383333353737336130
+38626563666536326439646262343764303661613438343731313966303834666564396539343238
+39636562666533383261313130623961633535383639653666326337656264636636393264643736
+38613332613563643931396636346566393765626134396235626131393764653439326637316135
+37323838316436623930376564336334323134353763396630306131366235383733376134663766
+63323531333431313534666333383463373166653166363862666131643134613030626133653963
+30613462656134363030386135336336646336633065613963393837326432633835666461316135
+31326438346466616364613861346237653663663465356637633561303663333736653937373839
+35316362313737303639646432373861663934306166363234363765346133366136323237323830
+31616331613634663362643235333865646263326464636433653965323430363639646662393762
+64316531366365346664333665363834333035653738323464313866363466353264333966613830
+64366137373632643662653232613434616630633764393535636432333732626437643934636364
+62356535623661336232326533323362383231353634386265323738363339633763363630313561
+38336333623362666331633061393031646339393766643738373963343639653537626630336134
+61653866636332336334323836663938333966346532373734333766356534363163643732616461
+62613233346136666636613031653565623930356365366638616638623930333064343364363531
+36306532303464633562613361653264313534363333323662396465363661663535396438333037
+62366238323733626632393133353362383965613566643531323630623538323061663836376632
+36386438336466633539366162326131636132346635666261643736356432356464643865386432
+34373961613638343164343039393230373863663965366333366561393637323734363137393336
+61653130386131313730323933656632373738636637613961663137393733363334646232636233
+37383862616662656462316630636464303735393264363938313961353735643035363065353039
+66306433323562656639373162313066656132316231313666363634386263303663303335623164
+63626162393565656566366633393636353263396631653431323438396434626631633334663136
+30373963346434363134616639626130646537393665306538633562643766323636646234363534
+30363462303665646164343136313063303734373938613761396633396537623437343837653865
+61313239316239343663393964616630363662363036326166653232393030643766353263343039
+66656363393666623961663933613735386632613532336464323366393866373435626263386333
+30363934323364653639613430616130316462326435393233616630376333336265333831363763
+31313765386464373736626631383664323961393263343066306331316262323464396330643161
+36663066396562366233303333666366306334373662356439386635303964633636616562643130
+33363234616561303461396334303862303435326236663131326435656634646339313035303830
+39663432643034636366366266303231366333393336623534353333613061363366303763386465
+36663534636163663236333830643932636137333664363239376431623666356530316439636334
+34646439356338623861383838616565613531366631396239323165333437313533313238323166
+39613665636465313764633864663030636239363230323861383361366562363432393062356565
+66366337366331323034363563393434386639663861636130383431656537323434386339353230
+31613031613134363531633335323233663161343035393463336165633536363032616366636635
+31313263373631323466393562663565383134363466343831643835323536666536356237343462
+30323936616235333838623935383436306230373137633130646636383362643633356537643431
+36366632383132316132346665316462363439376435633638366163626565383030366431616130
+30636435353635613035303432323736343565636234666566353266343438666234383336363730
+32653133336535366231303563383239323062626334633662656335393237346139313662623530
+64623962636634333937343037363961373939393064326635653365366133623063386538343039
+62643361613134646262646530313861323263373633626130323539623534373030343836363763
+63393366353130616436383039373933396166666231623265323639356563366132636638303038
+37636165376636303032343437306662373462373462383066343465306437373632623564666230
+38633634373935303164366531313461373365303334613935313835336163663364366136636536
+65346634343834303435643636343731393465316434613038396263386134323939663665346338
+6438
diff --git a/etc/kayobe/inventory/custom b/etc/kayobe/inventory/custom
index 3aa35ab1edfab87efdf95e24fab10ce9d7d14707..f79a1d8400f49f73fd2383e2aae3e8a2b889dd26 100644
--- a/etc/kayobe/inventory/custom
+++ b/etc/kayobe/inventory/custom
@@ -33,7 +33,6 @@
 [compute-srcp-cclake-20230707]
 [compute-rcc-cclake-20230718]
 [compute-rcp-l40-20231102]
-[compute-rcp-r760-mayfly-dev-20240119]
 [compute-rcp-internal-cclake-20240314]
 [compute-rcp-pvc-gpu-20240723]
 [a100_gpu_xe8545]
diff --git a/etc/kayobe/inventory/group_vars/a100_gpu_xe8545/mellanox b/etc/kayobe/inventory/group_vars/a100_gpu_xe8545/mellanox
index 3d370fea29079aa7285c517261f8c43336d0941a..6d2898cce26043e7d662c7776ab4736003b2c061 100644
--- a/etc/kayobe/inventory/group_vars/a100_gpu_xe8545/mellanox
+++ b/etc/kayobe/inventory/group_vars/a100_gpu_xe8545/mellanox
@@ -3,4 +3,4 @@
 do_sriov: True
 sriov_udev_rule_path: "/etc/udev/rules.d/{{ primary_eth_interface }}.rules"
 
-primary_eth_interface: "ens2np0"
+primary_eth_interface: "enp37s0np0"
diff --git a/etc/kayobe/inventory/group_vars/a100_gpu_xe8545/network-interfaces b/etc/kayobe/inventory/group_vars/a100_gpu_xe8545/network-interfaces
index 973391c8fce964933ab1482e815f39fc83d57c3f..f689f028893da385e1bea892aa66964b6794f415 100644
--- a/etc/kayobe/inventory/group_vars/a100_gpu_xe8545/network-interfaces
+++ b/etc/kayobe/inventory/group_vars/a100_gpu_xe8545/network-interfaces
@@ -7,7 +7,7 @@ external_net_name_custom: br_net
 # Bond on dual 10gbE ports
 br_net_interface: bridge
 br_net_bridge_ports:
-  - ens2np0
+  - enp37s0np0
 
 # Admin network IP information.
 admin_oc_net_interface: "eno8303"
diff --git a/etc/kayobe/inventory/group_vars/a100_gpu_xe8545_iris/lvm b/etc/kayobe/inventory/group_vars/a100_gpu_xe8545_iris/lvm
index 430c11c12a1a7022e83b790b45095f87fbd2f255..51d9820f76365a35b7987cb230af6c550e3ddb2a 100644
--- a/etc/kayobe/inventory/group_vars/a100_gpu_xe8545_iris/lvm
+++ b/etc/kayobe/inventory/group_vars/a100_gpu_xe8545_iris/lvm
@@ -5,7 +5,7 @@ compute_group_lv_var_size: "20g"
 compute_lvm_groups:
   - vgname: nova
     disks:
-      - /dev/nvme1n1
+      - /dev/disk/by-path/pci-0000:22:00.0-nvme-1
     create: true
     lvnames:
       - lvname: var-nova
diff --git a/etc/kayobe/inventory/group_vars/a100_gpu_xe8545_srcp/lvm b/etc/kayobe/inventory/group_vars/a100_gpu_xe8545_srcp/lvm
index 430c11c12a1a7022e83b790b45095f87fbd2f255..51d9820f76365a35b7987cb230af6c550e3ddb2a 100644
--- a/etc/kayobe/inventory/group_vars/a100_gpu_xe8545_srcp/lvm
+++ b/etc/kayobe/inventory/group_vars/a100_gpu_xe8545_srcp/lvm
@@ -5,7 +5,7 @@ compute_group_lv_var_size: "20g"
 compute_lvm_groups:
   - vgname: nova
     disks:
-      - /dev/nvme1n1
+      - /dev/disk/by-path/pci-0000:22:00.0-nvme-1
     create: true
     lvnames:
       - lvname: var-nova
diff --git a/etc/kayobe/inventory/group_vars/compute-iris-cclake-20210814/lvm b/etc/kayobe/inventory/group_vars/compute-iris-cclake-20210814/lvm
index 8c2f0de5f1a01817435cac3f37164b77cef75c0b..4dcc1dd0c9d6e6930eb1130be9aae93c3970b46a 100644
--- a/etc/kayobe/inventory/group_vars/compute-iris-cclake-20210814/lvm
+++ b/etc/kayobe/inventory/group_vars/compute-iris-cclake-20210814/lvm
@@ -4,7 +4,7 @@ compute_group_lv_var_size: "20g"
 compute_lvm_groups:
   - vgname: nova-compute
     disks:
-      - /dev/sdb
+      - /dev/disk/by-path/pci-0000:00:11.5-ata-3
     create: true
     lvnames:
       - lvname: nova-compute-0
diff --git a/etc/kayobe/inventory/group_vars/compute-iris-cclake-20211206/lvm b/etc/kayobe/inventory/group_vars/compute-iris-cclake-20211206/lvm
index 8c2f0de5f1a01817435cac3f37164b77cef75c0b..4dcc1dd0c9d6e6930eb1130be9aae93c3970b46a 100644
--- a/etc/kayobe/inventory/group_vars/compute-iris-cclake-20211206/lvm
+++ b/etc/kayobe/inventory/group_vars/compute-iris-cclake-20211206/lvm
@@ -4,7 +4,7 @@ compute_group_lv_var_size: "20g"
 compute_lvm_groups:
   - vgname: nova-compute
     disks:
-      - /dev/sdb
+      - /dev/disk/by-path/pci-0000:00:11.5-ata-3
     create: true
     lvnames:
       - lvname: nova-compute-0
diff --git a/etc/kayobe/inventory/group_vars/compute-iris-cclake-20211213/lvm b/etc/kayobe/inventory/group_vars/compute-iris-cclake-20211213/lvm
index 8c2f0de5f1a01817435cac3f37164b77cef75c0b..b36ecc955b8c97ab11dc65da7ee0bcb357f1eee4 100644
--- a/etc/kayobe/inventory/group_vars/compute-iris-cclake-20211213/lvm
+++ b/etc/kayobe/inventory/group_vars/compute-iris-cclake-20211213/lvm
@@ -4,7 +4,7 @@ compute_group_lv_var_size: "20g"
 compute_lvm_groups:
   - vgname: nova-compute
     disks:
-      - /dev/sdb
+      - /dev/disk/by-path/pci-0000:00:11.5-ata-3 
     create: true
     lvnames:
       - lvname: nova-compute-0
diff --git a/etc/kayobe/inventory/group_vars/compute-iris-cclake-20220113/lvm b/etc/kayobe/inventory/group_vars/compute-iris-cclake-20220113/lvm
index 8c2f0de5f1a01817435cac3f37164b77cef75c0b..4dcc1dd0c9d6e6930eb1130be9aae93c3970b46a 100644
--- a/etc/kayobe/inventory/group_vars/compute-iris-cclake-20220113/lvm
+++ b/etc/kayobe/inventory/group_vars/compute-iris-cclake-20220113/lvm
@@ -4,7 +4,7 @@ compute_group_lv_var_size: "20g"
 compute_lvm_groups:
   - vgname: nova-compute
     disks:
-      - /dev/sdb
+      - /dev/disk/by-path/pci-0000:00:11.5-ata-3
     create: true
     lvnames:
       - lvname: nova-compute-0
diff --git a/etc/kayobe/inventory/group_vars/compute-iris-cclake-20220731/lvm b/etc/kayobe/inventory/group_vars/compute-iris-cclake-20220731/lvm
index 8c2f0de5f1a01817435cac3f37164b77cef75c0b..4dcc1dd0c9d6e6930eb1130be9aae93c3970b46a 100644
--- a/etc/kayobe/inventory/group_vars/compute-iris-cclake-20220731/lvm
+++ b/etc/kayobe/inventory/group_vars/compute-iris-cclake-20220731/lvm
@@ -4,7 +4,7 @@ compute_group_lv_var_size: "20g"
 compute_lvm_groups:
   - vgname: nova-compute
     disks:
-      - /dev/sdb
+      - /dev/disk/by-path/pci-0000:00:11.5-ata-3
     create: true
     lvnames:
       - lvname: nova-compute-0
diff --git a/etc/kayobe/inventory/group_vars/compute-iris-cclake-20220816/lvm b/etc/kayobe/inventory/group_vars/compute-iris-cclake-20220816/lvm
index 8c2f0de5f1a01817435cac3f37164b77cef75c0b..4dcc1dd0c9d6e6930eb1130be9aae93c3970b46a 100644
--- a/etc/kayobe/inventory/group_vars/compute-iris-cclake-20220816/lvm
+++ b/etc/kayobe/inventory/group_vars/compute-iris-cclake-20220816/lvm
@@ -4,7 +4,7 @@ compute_group_lv_var_size: "20g"
 compute_lvm_groups:
   - vgname: nova-compute
     disks:
-      - /dev/sdb
+      - /dev/disk/by-path/pci-0000:00:11.5-ata-3
     create: true
     lvnames:
       - lvname: nova-compute-0
diff --git a/etc/kayobe/inventory/group_vars/compute-iris-cclake-20230206-stackhpc-ci/lvm b/etc/kayobe/inventory/group_vars/compute-iris-cclake-20230206-stackhpc-ci/lvm
index 8c2f0de5f1a01817435cac3f37164b77cef75c0b..4dcc1dd0c9d6e6930eb1130be9aae93c3970b46a 100644
--- a/etc/kayobe/inventory/group_vars/compute-iris-cclake-20230206-stackhpc-ci/lvm
+++ b/etc/kayobe/inventory/group_vars/compute-iris-cclake-20230206-stackhpc-ci/lvm
@@ -4,7 +4,7 @@ compute_group_lv_var_size: "20g"
 compute_lvm_groups:
   - vgname: nova-compute
     disks:
-      - /dev/sdb
+      - /dev/disk/by-path/pci-0000:00:11.5-ata-3
     create: true
     lvnames:
       - lvname: nova-compute-0
diff --git a/etc/kayobe/inventory/group_vars/compute-iris-cclake-20230206/lvm b/etc/kayobe/inventory/group_vars/compute-iris-cclake-20230206/lvm
index 8c2f0de5f1a01817435cac3f37164b77cef75c0b..4dcc1dd0c9d6e6930eb1130be9aae93c3970b46a 100644
--- a/etc/kayobe/inventory/group_vars/compute-iris-cclake-20230206/lvm
+++ b/etc/kayobe/inventory/group_vars/compute-iris-cclake-20230206/lvm
@@ -4,7 +4,7 @@ compute_group_lv_var_size: "20g"
 compute_lvm_groups:
   - vgname: nova-compute
     disks:
-      - /dev/sdb
+      - /dev/disk/by-path/pci-0000:00:11.5-ata-3
     create: true
     lvnames:
       - lvname: nova-compute-0
diff --git a/etc/kayobe/inventory/group_vars/compute-iris-cclake-himem-20220816/lvm b/etc/kayobe/inventory/group_vars/compute-iris-cclake-himem-20220816/lvm
index 4ef125208d1234848e6bd14befea41bc79485f11..66335cc51b7d514dc21cec6d9cccf298fd5030eb 100644
--- a/etc/kayobe/inventory/group_vars/compute-iris-cclake-himem-20220816/lvm
+++ b/etc/kayobe/inventory/group_vars/compute-iris-cclake-himem-20220816/lvm
@@ -1,8 +1,11 @@
 ---
+
+compute_group_lv_var_size: "20g"
+
 compute_lvm_groups:
   - vgname: nova-compute
     disks:
-      - /dev/sdb
+      - /dev/disk/by-path/pci-0000:00:11.5-ata-3
     create: true
     lvnames:
       - lvname: nova-compute-0
diff --git a/etc/kayobe/inventory/group_vars/compute-iris-cclake-himem-20230206/lvm b/etc/kayobe/inventory/group_vars/compute-iris-cclake-himem-20230206/lvm
index 8c2f0de5f1a01817435cac3f37164b77cef75c0b..4dcc1dd0c9d6e6930eb1130be9aae93c3970b46a 100644
--- a/etc/kayobe/inventory/group_vars/compute-iris-cclake-himem-20230206/lvm
+++ b/etc/kayobe/inventory/group_vars/compute-iris-cclake-himem-20230206/lvm
@@ -4,7 +4,7 @@ compute_group_lv_var_size: "20g"
 compute_lvm_groups:
   - vgname: nova-compute
     disks:
-      - /dev/sdb
+      - /dev/disk/by-path/pci-0000:00:11.5-ata-3
     create: true
     lvnames:
       - lvname: nova-compute-0
diff --git a/etc/kayobe/inventory/group_vars/compute-iris-cclake-telemetry-20230206-high-capacity/lvm b/etc/kayobe/inventory/group_vars/compute-iris-cclake-telemetry-20230206-high-capacity/lvm
index d9b891cc913b9c7a51f11e2fa546529e70b468c1..2345c72bbb3a720103e6c5ebc6a1fb89987ed945 100644
--- a/etc/kayobe/inventory/group_vars/compute-iris-cclake-telemetry-20230206-high-capacity/lvm
+++ b/etc/kayobe/inventory/group_vars/compute-iris-cclake-telemetry-20230206-high-capacity/lvm
@@ -4,7 +4,7 @@ compute_group_lv_var_size: "20g"
 compute_lvm_groups:
   - vgname: nova-compute
     disks:
-      - /dev/md0
+      - /dev/md127
     create: true
     lvnames:
       - lvname: nova-compute-0
diff --git a/etc/kayobe/inventory/group_vars/compute-iris-cclake-telemetry-20230206-high-capacity/mdadm b/etc/kayobe/inventory/group_vars/compute-iris-cclake-telemetry-20230206-high-capacity/mdadm
index c246630b86d833aabf8d24d411841882093e51fa..fda62edd54f50d711253d35fc8e2d61fcf858883 100644
--- a/etc/kayobe/inventory/group_vars/compute-iris-cclake-telemetry-20230206-high-capacity/mdadm
+++ b/etc/kayobe/inventory/group_vars/compute-iris-cclake-telemetry-20230206-high-capacity/mdadm
@@ -1,13 +1,13 @@
 ---
 
 compute_mdadm_arrays:
-  - name: 'md0'
+  - name: 'md127'
     devices:
-      - '/dev/sdb'
-      - '/dev/sdc'
-      - '/dev/sdd'
-      - '/dev/sde'
-      - '/dev/sdf'
-      - '/dev/sdg'
+      - '/dev/disk/by-path/pci-0000:00:11.5-ata-3'
+      - '/dev/disk/by-path/pci-0000:00:11.5-ata-4'
+      - '/dev/disk/by-path/pci-0000:00:11.5-ata-5'
+      - '/dev/disk/by-path/pci-0000:00:11.5-ata-6'
+      - '/dev/disk/by-path/pci-0000:00:17.0-ata-1'
+      - '/dev/disk/by-path/pci-0000:00:17.0-ata-2'
     level: '10'
     state: 'present'
diff --git a/etc/kayobe/inventory/group_vars/compute-iris-cclake-telemetry-20230206-low-capacity/lvm b/etc/kayobe/inventory/group_vars/compute-iris-cclake-telemetry-20230206-low-capacity/lvm
index d9b891cc913b9c7a51f11e2fa546529e70b468c1..2345c72bbb3a720103e6c5ebc6a1fb89987ed945 100644
--- a/etc/kayobe/inventory/group_vars/compute-iris-cclake-telemetry-20230206-low-capacity/lvm
+++ b/etc/kayobe/inventory/group_vars/compute-iris-cclake-telemetry-20230206-low-capacity/lvm
@@ -4,7 +4,7 @@ compute_group_lv_var_size: "20g"
 compute_lvm_groups:
   - vgname: nova-compute
     disks:
-      - /dev/md0
+      - /dev/md127
     create: true
     lvnames:
       - lvname: nova-compute-0
diff --git a/etc/kayobe/inventory/group_vars/compute-iris-cclake-telemetry-20230206-low-capacity/mdadm b/etc/kayobe/inventory/group_vars/compute-iris-cclake-telemetry-20230206-low-capacity/mdadm
index 3d364ec5f240273c857dda2f63ec0926f44f6821..aac11a7157d939ec193ddd24d762c8504b8b9980 100644
--- a/etc/kayobe/inventory/group_vars/compute-iris-cclake-telemetry-20230206-low-capacity/mdadm
+++ b/etc/kayobe/inventory/group_vars/compute-iris-cclake-telemetry-20230206-low-capacity/mdadm
@@ -1,11 +1,11 @@
 ---
 
 compute_mdadm_arrays:
-  - name: 'md0'
+  - name: 'md127'
     devices:
-      - '/dev/sdb'
-      - '/dev/sdc'
-      - '/dev/sdd'
-      - '/dev/sde'
+      - '/dev/disk/by-path/pci-0000:00:11.5-ata-3'
+      - '/dev/disk/by-path/pci-0000:00:11.5-ata-4'
+      - '/dev/disk/by-path/pci-0000:00:11.5-ata-5'
+      - '/dev/disk/by-path/pci-0000:00:11.5-ata-6'
     level: '10'
     state: 'present'
diff --git a/etc/kayobe/inventory/group_vars/compute-iris-icelake-20230620/lvm b/etc/kayobe/inventory/group_vars/compute-iris-icelake-20230620/lvm
index d9b891cc913b9c7a51f11e2fa546529e70b468c1..2345c72bbb3a720103e6c5ebc6a1fb89987ed945 100644
--- a/etc/kayobe/inventory/group_vars/compute-iris-icelake-20230620/lvm
+++ b/etc/kayobe/inventory/group_vars/compute-iris-icelake-20230620/lvm
@@ -4,7 +4,7 @@ compute_group_lv_var_size: "20g"
 compute_lvm_groups:
   - vgname: nova-compute
     disks:
-      - /dev/md0
+      - /dev/md127
     create: true
     lvnames:
       - lvname: nova-compute-0
diff --git a/etc/kayobe/inventory/group_vars/compute-iris-icelake-20230620/mdadm b/etc/kayobe/inventory/group_vars/compute-iris-icelake-20230620/mdadm
index 07317013ba187f350a0abbdc486882a242a7acb8..72fa6ee1027d9ac7317cd96532117f799f5f65f3 100644
--- a/etc/kayobe/inventory/group_vars/compute-iris-icelake-20230620/mdadm
+++ b/etc/kayobe/inventory/group_vars/compute-iris-icelake-20230620/mdadm
@@ -1,7 +1,7 @@
 ---
 
 compute_mdadm_arrays:
-  - name: 'md0'
+  - name: 'md127'
     devices:
       - '/dev/nvme0n1'
       - '/dev/nvme1n1'
diff --git a/etc/kayobe/inventory/group_vars/compute-lrs-srcp-cclake-20230707/mdadm b/etc/kayobe/inventory/group_vars/compute-lrs-srcp-cclake-20230707/mdadm
index 035024a1dcceade64bae664b36ed75dfde6ceadb..c656e097b8186d01e6f4fc4dde660cdce14de5f4 100644
--- a/etc/kayobe/inventory/group_vars/compute-lrs-srcp-cclake-20230707/mdadm
+++ b/etc/kayobe/inventory/group_vars/compute-lrs-srcp-cclake-20230707/mdadm
@@ -3,7 +3,7 @@
 compute_mdadm_arrays:
   - name: 'md127'
     devices:
-      - '/dev/sdb'
-      - '/dev/sdc'
+      - '/dev/disk/by-path/pci-0000:00:11.5-ata-3'
+      - '/dev/disk/by-path/pci-0000:00:11.5-ata-4'
     level: '1'
     state: 'present'
diff --git a/etc/kayobe/inventory/group_vars/compute-ska-src-c6620-20240814/compute.yml b/etc/kayobe/inventory/group_vars/compute-ska-src-c6620-20240814/compute.yml
index b92c98a33eb06421963cb804a0b5b9ebc64e21e5..c5336425158cf748f19fa385651c6bf6ab70b775 100644
--- a/etc/kayobe/inventory/group_vars/compute-ska-src-c6620-20240814/compute.yml
+++ b/etc/kayobe/inventory/group_vars/compute-ska-src-c6620-20240814/compute.yml
@@ -12,7 +12,7 @@ compute_bootstrap_user: "cloud-user"
 # List of networks to which compute nodes are attached.
 compute_network_interfaces: >
    {{ [admin_oc_net_name,
-       "ens1f0np0_net",
+       "eno16495np0_net",
        internal_net_name,
        storage_net_name,
        tunnel_net_name] | unique | list }}
@@ -112,7 +112,7 @@ compute_network_interfaces: >
 
 ################################################################################
 # Compute node configuration.
-compute_libvirt_enabled: true
+#compute_libvirt_enabled: true
 
 # Whether to enable libvirt SASL authentication. Default is true.
 # Disabled until we bump container versions
diff --git a/etc/kayobe/inventory/group_vars/compute-ska-src-c6620-20240814/lvm b/etc/kayobe/inventory/group_vars/compute-ska-src-c6620-20240814/lvm
index d9b891cc913b9c7a51f11e2fa546529e70b468c1..2345c72bbb3a720103e6c5ebc6a1fb89987ed945 100644
--- a/etc/kayobe/inventory/group_vars/compute-ska-src-c6620-20240814/lvm
+++ b/etc/kayobe/inventory/group_vars/compute-ska-src-c6620-20240814/lvm
@@ -4,7 +4,7 @@ compute_group_lv_var_size: "20g"
 compute_lvm_groups:
   - vgname: nova-compute
     disks:
-      - /dev/md0
+      - /dev/md127
     create: true
     lvnames:
       - lvname: nova-compute-0
diff --git a/etc/kayobe/inventory/group_vars/compute-ska-src-c6620-20240814/mdadm b/etc/kayobe/inventory/group_vars/compute-ska-src-c6620-20240814/mdadm
index b8927989aa265b6b58be9cb0547df137a26f330f..17504d1593645d7386e1d5489c0afaaa75522a97 100644
--- a/etc/kayobe/inventory/group_vars/compute-ska-src-c6620-20240814/mdadm
+++ b/etc/kayobe/inventory/group_vars/compute-ska-src-c6620-20240814/mdadm
@@ -1,7 +1,7 @@
 ---
   
 compute_mdadm_arrays:
-  - name: 'md0'
+  - name: 'md127'
     devices:
       - '/dev/nvme0n1'
       - '/dev/nvme1n1'
diff --git a/etc/kayobe/inventory/group_vars/compute-ska-src-c6620-20240814/mellanox b/etc/kayobe/inventory/group_vars/compute-ska-src-c6620-20240814/mellanox
index eec8d94750d4f5d4c27ba0851c695f3fcd607036..abc5b8e0df1eea0c74fc6b0e357153b3b0d67747 100644
--- a/etc/kayobe/inventory/group_vars/compute-ska-src-c6620-20240814/mellanox
+++ b/etc/kayobe/inventory/group_vars/compute-ska-src-c6620-20240814/mellanox
@@ -4,4 +4,4 @@ do_sriov: True
 sriov_udev_rule_path: "/etc/udev/rules.d/{{ primary_eth_interface }}.rules"
 
 old_eth_interface: "p4p2"
-primary_eth_interface: "ens1f0np0"
+primary_eth_interface: "eno16495np0"
diff --git a/etc/kayobe/inventory/group_vars/compute-ska-src-c6620-20240814/network-interfaces b/etc/kayobe/inventory/group_vars/compute-ska-src-c6620-20240814/network-interfaces
index c58b316129c1fb33adc7a603ac1f534efee475c1..b5ad6c90db328d5372eeafccc962d94094bea90c 100644
--- a/etc/kayobe/inventory/group_vars/compute-ska-src-c6620-20240814/network-interfaces
+++ b/etc/kayobe/inventory/group_vars/compute-ska-src-c6620-20240814/network-interfaces
@@ -2,16 +2,16 @@
 ###############################################################################
 # Network interface definitions for the compute group.
 
-external_net_name_custom: ens1f0np0_net
+external_net_name_custom: eno16495np0_net
 
-ens1f0np0_net_interface: ens1f0np0
-ens1f0np0_net_mtu: 1500
+eno16495np0_net_interface: eno16495np0
+eno16495np0_net_mtu: 1500
 
 # Admin network IP information.
 admin_oc_net_interface: "eno8303"
 admin_oc_net_gateway: "10.{{ admin_oc_net_vlan }}.255.1"
 
 # Overcloud networks
-internal_net_interface: "{{ ens1f0np0_net_interface }}.{{ internal_net_vlan }}"
-tunnel_net_interface: "{{ ens1f0np0_net_interface }}.{{ tunnel_net_vlan }}"
-storage_net_interface: "{{ ens1f0np0_net_interface }}.{{ storage_net_vlan }}"
+internal_net_interface: "{{ eno16495np0_net_interface }}.{{ internal_net_vlan }}"
+tunnel_net_interface: "{{ eno16495np0_net_interface }}.{{ tunnel_net_vlan }}"
+storage_net_interface: "{{ eno16495np0_net_interface }}.{{ storage_net_vlan }}"
diff --git a/etc/kayobe/inventory/group_vars/compute-srcp-cclake-20230707/mdadm b/etc/kayobe/inventory/group_vars/compute-srcp-cclake-20230707/mdadm
index 035024a1dcceade64bae664b36ed75dfde6ceadb..c656e097b8186d01e6f4fc4dde660cdce14de5f4 100644
--- a/etc/kayobe/inventory/group_vars/compute-srcp-cclake-20230707/mdadm
+++ b/etc/kayobe/inventory/group_vars/compute-srcp-cclake-20230707/mdadm
@@ -3,7 +3,7 @@
 compute_mdadm_arrays:
   - name: 'md127'
     devices:
-      - '/dev/sdb'
-      - '/dev/sdc'
+      - '/dev/disk/by-path/pci-0000:00:11.5-ata-3'
+      - '/dev/disk/by-path/pci-0000:00:11.5-ata-4'
     level: '1'
     state: 'present'
diff --git a/etc/kayobe/inventory/group_vars/compute-tuned-srcp-cclake-20230707/luks b/etc/kayobe/inventory/group_vars/compute-tuned-srcp-cclake-20230707/luks
index c0e410d47e9db84d41c52abc68342cb8c06fe94a..0a81fefcb7b5552c9f43cf484c49b8375217c33f 100644
--- a/etc/kayobe/inventory/group_vars/compute-tuned-srcp-cclake-20230707/luks
+++ b/etc/kayobe/inventory/group_vars/compute-tuned-srcp-cclake-20230707/luks
@@ -2,4 +2,4 @@
 
 compute_luks_devices:
   - name: luksnova
-    device: /dev/sdb
+    device: /dev/disk/by-path/pci-0000:00:11.5-ata-3
diff --git a/etc/kayobe/kolla.yml b/etc/kayobe/kolla.yml
index b6e500464dcca67982104a5343ea55eb62c251f1..79ec4eb86fd59ce01cd1b4630985abd2f24dfe50 100644
--- a/etc/kayobe/kolla.yml
+++ b/etc/kayobe/kolla.yml
@@ -597,7 +597,6 @@ kolla_overcloud_inventory_top_level_group_map:
       - compute-ska-src-r660-himem-20240610
       - compute-ska-src-c6620-20240814
       - compute-rcp-l40-20231102
-      - compute-rcp-r760-mayfly-dev-20240119
       - compute-rcp-internal-cclake-20240314
       - compute-rcp-pvc-gpu-20240723
       - a100_gpu_xe8545
diff --git a/etc/kayobe/kolla/config/nova/nova-compute.conf b/etc/kayobe/kolla/config/nova/nova-compute.conf
index 74c29bf546130eff600333c71e6abc97c5152011..5bd95f48e789b19eb96a7d63a2f1251494a70a33 100644
--- a/etc/kayobe/kolla/config/nova/nova-compute.conf
+++ b/etc/kayobe/kolla/config/nova/nova-compute.conf
@@ -120,10 +120,5 @@ alias = { "vendor_id":"10de", "product_id":"26b5", "device_type":"type-PF", "nam
 passthrough_whitelist = [{ "vendor_id":"8086", "product_id":"0bd5" }]
 alias = { "vendor_id":"8086", "product_id":"0bd5", "device_type":"type-PF", "name":"intel-ponte-vecchio-1t", "numa_policy":"required" }
 
-{% elif inventory_hostname in groups['compute-rcp-r760-mayfly-dev-20240119']  %}
-passthrough_whitelist = [{ "vendor_id":"15b3", "product_id":"101b" },{ "vendor_id":"1e0f", "product_id":"0007" }]
-alias = { "vendor_id":"15b3", "product_id":"101b", "device_type":"type-PCI", "name":"mlnx-ib-cx6-mt28908", "numa_policy":"required" }
-alias = { "vendor_id":"1e0f", "product_id":"0007", "device_type":"type-PCI", "name":"kioxia-nvme-7t", "numa_policy":"required" }
-
 {% endif %}
 {% endraw %}
diff --git a/etc/kayobe/kolla/config/prometheus/system.rules b/etc/kayobe/kolla/config/prometheus/system.rules
index 49c14a4c6bd09ba450e0f207f5854799ea5f3493..4518d89473e66d09c8100cf7e0ab8fe81483c547 100644
--- a/etc/kayobe/kolla/config/prometheus/system.rules
+++ b/etc/kayobe/kolla/config/prometheus/system.rules
@@ -35,7 +35,7 @@ groups:
 
   - alert: Overheating
     expr: node_hwmon_temp_celsius >= node_hwmon_temp_max_celsius
-    for: 1m
+    for: 5m
     labels:
       severity: warning
     annotations: