a few setups cleanly initialized

This commit is contained in:
Remy Moll 2023-06-26 11:02:01 +02:00
parent 11bda1cc7b
commit d9f97dd63a
21 changed files with 729 additions and 63 deletions

3
.gitignore vendored
View File

@ -1,3 +1,6 @@
# Secrets
ansible-vault-password
# ---> Ansible
*.retry

View File

@ -3,3 +3,5 @@
inventory = ./inventory/hosts
roles_path = ./roles
host_key_checking = False
vault_password_file = ./ansible-vault-password

View File

@ -1,20 +1,18 @@
[proxy]
klustermaster
fedora_server:
hosts:
fedora-node-1:
ansible_host: 192.168.1.186
ansible_user: ansible
fedora-node-2:
ansible_host: 192.168.1.187
ansible_user: ansible
remote_node:
hosts:
remote01:
ansible_host: 5.102.146.212
[raspberry]
localhost
192.168.1.124
[raspberry:vars]
ansible_ssh_common_args='-o ProxyCommand="ssh -W %h:%p -q klustermaster"'
[fedora-server]
localhost
192.168.1.124
[fedora-server:vars]
ansible_ssh_common_args='-o ProxyCommand="ssh -W %h:%p -q klustermaster"'
[proxmox]
proxmox:
hosts:
proxmox01:
ansible_host: 192.168.1.150

View File

@ -1,15 +0,0 @@
- name: Customization and hardening of fresh fedora install running on a VM
hosts: fedora-server
become: yes
user: pi
vars_prompt:
- name: "k3s_token"
prompt: "Enter k3s token"
private: yes
roles:
# - role: ssh-key-copy
# - role: fail2ban
- role: k3s-ha
# k3s_token: "{{ k3s_token }}"

View File

@ -0,0 +1,19 @@
- name: Customization and hardening of fresh fedora install running on a VM
hosts: fedora_server
become: yes
# reuse password for sudo
become_method: sudo
user: ansible
vars_prompt:
- name: k3s_token
prompt: "Enter a (single use) k3s token"
private: yes
vars:
- master_ip: "{{ hostvars['fedora-node-1']['ansible_default_ipv4']['address'] }}"
roles:
- role: ssh-key-copy
- role: fail2ban
- role: k3s-ha

View File

@ -0,0 +1,23 @@
- name: Setup of VMs
hosts: proxmox
become: yes
user: root
vars:
- proxmox_user: root@pam
proxmox_token: !vault |
$ANSIBLE_VAULT;1.1;AES256
31376165343635623536393936353032333638636564646665646464386635383761623632373036
3433306233633465313737303039346635353363326562320a336532666632613663303730643136
36353430353638616239313766666233396339643431636161373965383664663230616664336162
3730353264643434390a386132383238613165653037623466383732323835356365326439656565
38666466343932356137393333623964333463303564623666656533626331646535306531343836
3136313232333265303336613235336334323963316439383230
proxmox_node: proxmox
proxmox_token_id: ansible
roles:
- role: proxmox-fedora-vm
vms:
- name: fedora-node-1
- name: fedora-node-2

8
plays/proxmox-setup.yml Normal file
View File

@ -0,0 +1,8 @@
- name: Proxmox configuration
hosts: proxmox
user: root
roles:
- role: proxmox-basic-setup

View File

@ -0,0 +1,18 @@
- name: Add a remote ubuntu node to the local network and to the cluster
hosts: remote_node
become: yes
# reuse password for sudo
become_method: sudo
user: ubuntu
vars_prompt:
- name: k3s_token
prompt: "Enter the (single use) k3s token"
private: yes
roles:
# - role: ssh-key-copy
- role: fail2ban
- role: remote-worker-node-k3s

View File

@ -1,25 +0,0 @@
- mame: Proxmox VM provisioning
community.general.proxmox_kvm:
api_host: "{{ proxmox_host }}"
api_user: "{{ proxmox_user }}"
api_token: "{{ proxmox_token }}"
node: "{{ proxmox_node }}"
name: "{{ item }}"
cores: 6
# 2 * 6 = 12 -> leaving 4 cores for OMV + hypervisor itself
net:
net0: 'virtio,bridge=vmbr1,rate=200'
net1: 'e1000,bridge=vmbr2'
# TODO check me!
sshkeys: "{{ lookup('file', '~/.ssh/default.pub') }}"
ipconfig:
ipconfig0: 'ip=10.0.0.1/24'
sata:
sata0: 'VMs_LVM:10,format=raw'
# automatically boot from fedora iso:
boot: cdn
# first try dist, then cdrom
cdrom: fedora_37_server_x86-64.iso
loop:
- fedora-node-1
- fedora-node-2

View File

@ -1,13 +1,34 @@
- name: Prerequisites
include_tasks: prerequisites.yml
- name: Download k3s install script
get_url:
url: https://get.k3s.io
dest: /tmp/install-k3s.sh
mode: 0755
- name: Create k3s config file
template:
src: ../templates/config.yml.j2
dest: /tmp/config.yml
dest: "/home/{{ ansible_user }}/k3s_config.yml"
- name: Only run uninstall script if it exists
become: true
shell: /usr/local/bin/k3s-uninstall.sh
args:
removes: /usr/local/bin/k3s-uninstall.sh
- name: Execute k3s install script providing a config.yml
shell: /tmp/install-k3s.sh --config /tmp/config.yml server
shell: "/tmp/install-k3s.sh --config /home/{{ ansible_user }}/k3s_config.yml server"
- name: Copy kube config file back to local machine
fetch:
src: /etc/rancher/k3s/k3s.yaml
dest: /home/remy/.kube/config-home
flat: yes
run_once: true

View File

@ -0,0 +1,35 @@
- name: Set firewalld rule for required ports
firewalld:
port: "{{ item }}"
permanent: yes
state: enabled
immediate: yes
loop:
- 2379-2380/tcp
- 6443/tcp
- 8472/udp
- 10250/tcp
# tcp and udb for metallb
- 7946/udp
- 7946/tcp
- name: Set firewalld rule for rquired zones
firewalld:
zone: trusted
source: "{{ item }}"
permanent: yes
state: enabled
immediate: yes
loop:
- 10.42.0.0/16 # pods
- 10.43.0.0/16 # services
- name: Update hostname to be unique
ansible.builtin.replace:
path: /etc/hosts
regexp: '(\s+)localhost(\s+.*)?$'
replace: '\{{ inventory_hostname }}\2'
- name: Set hostname
ansible.builtin.hostname:
name: "{{ inventory_hostname }}"

View File

@ -1,7 +1,12 @@
token: "{{ k3s_token }}"
disable:
- traefik
- servicelb
cluster-init: "{{ inventory_hostname == groups['fedora-server'][0] }}"
server: "{{ groups['fedora-server'][0] }}"
token: {{ k3s_token }}
{% if ansible_host == master_ip %}
cluster-init: true
{% else %}
server: https://{{ master_ip }}:6443
{% endif %}

View File

@ -0,0 +1,33 @@
- name: Set package lists for update
ansible.builtin.lineinfile:
path: /etc/apt/sources.list
line: "deb http://download.proxmox.com/debian/pve {{ ansible_distribution_release }} pve-no-subscription"
state: present
- name: Remove enterprise subscription
ansible.builtin.lineinfile:
path: /etc/apt/sources.list.d/pve-enterprise.list
line: "deb https://enterprise.proxmox.com/debian/pve {{ ansible_distribution_release }} pve-enterprise"
state: absent
- name: Set kernel watchdog to reboot on kernel panic
ansible.builtin.lineinfile:
path: /etc/sysctl.conf
line: kernel.panic = 10
state: present
create: yes
backup: yes
mode: 0644
- name: Apply sysctl.conf
ansible.builtin.shell: sysctl -p
when: ansible_os_family == 'Debian'
- name: Reboot host
reboot:
msg: "Reboot initiated by Ansible"
connect_timeout: 5
reboot_timeout: 600
pre_reboot_delay: 0
post_reboot_delay: 30
test_command: whoami

View File

@ -0,0 +1,32 @@
- name: Proxmox VM provisioning
community.general.proxmox_kvm:
api_host: "{{ ansible_host }}"
api_user: "{{ proxmox_user }}"
api_token_id: "{{ proxmox_token_id }}"
api_token_secret: "{{ proxmox_token }}"
node: "{{ proxmox_node }}"
# source:
clone: fedora-server-template
# created manually already installed
vmid: 100
# newid: "{{ 110 + loop_index }}"
name: "{{ item.name }}"
storage: VM_storage
agent: true
timeout: 60
loop: "{{ vms }}"
- name: Ensure VMs are booted
community.general.proxmox_kvm:
api_host: "{{ ansible_host }}"
api_user: "{{ proxmox_user }}"
api_token_id: "{{ proxmox_token_id }}"
api_token_secret: "{{ proxmox_token }}"
node: "{{ proxmox_node }}"
# set manually:
name: "{{ item.name }}"
state: started
loop: "{{ vms }}"

View File

@ -0,0 +1,10 @@
- name: Blacklist GPU drivers
ansible.builtin.lineinfile:
path: /etc/modprobe.d/blacklist.conf
line: blacklist amdgpu
- name: Add Windows 10 VM
template:
src: ../templates/vm.conf.j2
dest: /etc/pve/qm/106.conf

View File

@ -0,0 +1 @@
blacklist amdgpu

View File

@ -0,0 +1,5 @@
bios: ovmf
scsihw: virtio-scsi-pci
bootdisk: scsi0
scsi0: .....
hostpci0: 34:00:00,x-vga=on

View File

@ -0,0 +1,47 @@
- name: Set up openvpn on remote node
package:
name: openvpn
state: present
become: true
- name: Copy openvpn config to remote node
copy:
src: ../templates/k3s_worker.ovpn
dest: /etc/openvpn/openvpn.conf
owner: root
group: root
mode: 0644
become: true
- name: Setup autoconnect
lineinfile:
path: /etc/default/openvpn
line: AUTOSTART="all"
become: true
- name: Restart openvpn service
service:
name: openvpn
state: restarted
become: true
- name: Download k3s install script
get_url:
url: https://get.k3s.io
dest: /tmp/install-k3s.sh
mode: 0755
- name: Create k3s config file
template:
src: ../templates/config.yml.j2
dest: "/home/{{ ansible_user }}/k3s_config.yml"
- name: Only run uninstall script if it exists
become: true
shell: /usr/local/bin/k3s-uninstall.sh
args:
removes: /usr/local/bin/k3s-uninstall.sh
- name: Execute k3s install script providing a config.yml
shell: "/tmp/install-k3s.sh --config /home/{{ ansible_user }}/k3s_config.yml agent"

View File

@ -0,0 +1,10 @@
token: "{{ k3s_token }}"
disable:
- traefik
- servicelb
server: https://{{ groups['fedora_server'][0] }}:6443
flannel-iface: tun0

View File

@ -0,0 +1,436 @@
$ANSIBLE_VAULT;1.1;AES256
66313637616438303062313365306530333538623662373938623335346366313263373164646461
3133353962373134613964633636626663356134313630640a393662323037306264343662346333
63393730363332323936383435333765656630333034346537303331623731333231623532626537
6266303065393837650a346634373963333762336662333638366237316335643034663134343465
63346537636435623235376334643064383232383132363235653835666663383266646566313136
63393238396162396630623266613762616666613130313166613562386437623239336566393265
33653962343938396238313664306165613134363061393330396362653237373233636161323264
32643963373235623863333730643531386132393063396433323039633566363964643664393735
35346438626165646234663337353930343534666238633931636661323161323866326635616161
61343663383064373563636266396566316232613439313035386666643139393234326561343333
61396237346138396432666163353464666638393966353762316536653464363534306461653266
61393466353063393936623665333064663935313762623066663136386566363062363130353034
64353637336561383461316332393235653963353833363964386235663636626434646538313938
61343035343962633935393931313865616635373136373531663931326435343635376563336435
33303834343164343632303361373163323664633238333638646332636538616536613438363535
36643731386433333330343533383535383262616533366132363135623037636432643635663966
62643735326464386536636333653130306639653264386630656330643566636635653736333232
38313735613132643637363939316334636539366332323037343366393039363162363738633665
66323831313533383737396663306437656266333961336533643261353334386334323931313333
34653663313466386235323637633962303834316562373062303061323833386639636639393733
66633962396533343831613134613861626165393339613835653963646335613831656262386463
39386463303439636132326463303161386132656530316366383437353531383335613766613630
37616261616531653864333439396438346230373130633064313563373836346664333761363932
62366639313137613639316531396530303565653138653436656436653331376533343832316461
36383432393765613765363733626434643436346537323264366362326464663839633430303261
65616239346637393037636436626161346234653663303832383465626236323561323836636261
64333032303138323263626562333437633234663139313862306666376466313236396634353033
65303766366662303530613239653766386265663162316631623637393164356532393030666439
36633739653963613935376632626536613139326139326461373335626632643431363737643934
33353935653730376165653332623832323532393835323836313466396566376263313332386439
32393935656334376530333532653562636332316237613738353136623561316437363833666131
34663035326636663733353566343464616137663035393365373437633765383162386532356131
37356262663733666166383333653331626439396639393431313931333836306239306330643534
36333235646335663436323664396337353137653366366565636532326330303035633732356131
64373839343834346632323833613163396631646630323866303038323262643538653539373436
30346130323238663362343133346631316231626464646261633434626431383165633463393336
65303635633130306533323931313439636439623431313131333930393832326539313431326666
62393734626464663835366134616231376333363432323361626336633639383233323430303631
35336635623264623631663430346561383366663464323539373735653036663437653366646231
61316234623433343234356430653863343863353365646637663662633566653566633064393265
39333338323061343832336466303165303363386536353535313730366337396263306132316139
38643063343465346336373436646166366262373837376333653961316431666236333964313334
35663735623864663832393261396636356564323464323032613062303833663035323531643966
31633431663963336638616333366635343761643936333437633663623832653535316333316434
61633936633431636433623531343830313862326661653639306530306566303637663366353661
32653463356631333132363331626230616264646134623230643332306166373465646236646135
65393237333464643838653566616361366365343936633836303661313538353530303562336637
38366531666561653135383433373231396132323166313164613963613830383632623963316237
61316438613132346634333939366534663530316339346234616335366535376537386534343266
31613339333332373938656539653462663165643430323635363966333363313832613464396163
33323835313133633438646130396639633263346137363131653537363232306465663834653733
37636133613437356337323831616561353032633131653139313465336664323531323934383530
30323334303264313930313966383465623364356663373130643862653432623337326537646465
30303265303564383533653339336164373262396566363239386233363161303735333632623638
32303432333230383039623734336331633637323164633061306266333931343735646437653131
61323630643131646463383865643763616663313739303633653036376564376463666161393735
66316261323330626130336433373730656461373663396162313530613332646666393434383035
35313565396135306565643764376561333638356466333665346363303238616430616535396439
36383030336261396537336337306463326366613065336363346636396661396235633961363439
31613365616632323033333361346134663639333564316136663430636163363538636435373466
62353835316464316265393538373365303233323739613835363838316163653237343239613135
65643664386461393237623732656130333662666264363138306237386338363438363933643332
34333731666366613461346566643437636133363964336330336338343632313435613433353566
62386465383632656361663162373837373339363962636330353064363966396137663632666430
34316337656363653136346337633561653433623164323930323232656338333063313266353061
64666163323133356337623064353536643931393030376366653836623465306433303034366631
61663630666237356331666664373062356162656264336264326165343031623364613366396635
66326334623839323031316239623937336162393035326663356465306332303461323832353633
38613961363333393430316131626637633837363762636430326534636437373964623832316636
64356433303663336338643438343138383036623732643865363430646639383265383666383264
66356434336532333238363334353437626337636131633635623430396136383935396237393166
64366136636563643432623064363432373831633139646264373665383639363437653530383039
64373765663033663762333238303330306334353731373661663763373739333835363035376263
32393935383130353061383961623235653265303965633539373166636333353564616233306336
37333331303133393634373437643832383665383436316561336434613537623434626138643831
36363163623466393662323330333239633765346362356133386163323466373030626163333637
32616530373665626331393133303839393832613631363962336632393233316636393366623537
63616631363931333532653634633632313635386237663363633064373566646464313936386538
34633632353663306130376530353638626634383865353634353031336632353135376136663263
38313334636464333363306630636462333364313339663462643862313064613866303932303231
66636634376438626232656330363632666165666233616535306538333862353236383030386230
62323335613364366434363035376531303635616235343263633463336234323535616636376461
32636166656536313865333034323665663834636432333832653035343133383731383430633165
32653335356365623036323333343235336234306564373465383835326637373764656339356562
62303365306262613631656666316536363431356537366462393066653466306632303061376365
38633536386331366132333062613537666334616534663064663330323764613462383261343938
61306430386264396664326461326633366361333663636331643531356136303265636662303465
35653433616435366163373866623961393230306161643439356665386463313335313565333130
65323632343838313130316463376465653037383866643934643236633335663365343433363535
39346365303066636363333961313161313633396636326431323965333130616636643135333866
37326539663630323163646331326232636465373166643037383061616531366665626339303466
66363530353333633534663761316266636365643562323662333661643131323333653230316364
36353835663130633332323066316633343061666534306561373064306162323734656662626232
32303362343431346534643036353363623733363164653934613265663133663532636339353030
62646161303534636632346133323862636639343463663334646334326133386538346366643836
61653962663635663335623439363762326332333034343635316464646162396535313963393661
37623839633761366136336630323436663664633135653939346437323565613664383035396535
64643263653039623865373439353965646661396430303437333634646235356662633532376230
32376130356366653037323131313434643166613331323732343761326239326235346231393261
65396432393332623433373365646265303933363734643632323238663734376639666665346334
35313238346666393239626637613366306436376530626437366564623037663030306166333431
35343938643838333131646261623663363239643236643337613161313861653734393265376636
64323462396261303630306531643864633437313266316233373335623131636265343534623530
65393130306532393234646139303361343233626264623832326234636161373134303031356437
39383463383864623165623037616230343831333864613632333165363861393639616163633135
35653463636638613334303835363231353439366135373861333237653539303639663232376432
62326134643333636235303435393035316630393333306266643165343437366231626561323064
63326537616362393261616664373235316533333462646666383536616662666364366565343639
31363031656333616338613238336165623235633563303665616261353132326137653835333432
39303636643330663466346163643138383632396365613465393830386361306630313064633765
32353234653663623038393135313366323333333166313739666235643538383238343361663838
34623932373863633639303434646639303463643734666633643435623662353261313935376464
65316436393032393266393930633466656165616337326135653838656533383963333965643763
66343264386664326236653036343737313235666166366162343734373738623537373136346262
38326339656666373938643562646434303562363465643434373339303063656439613536373133
65633464396333623030323133306639633134636663333431393031663132323638623831633738
37323063396538363163656533336638326130376463616461666530633531303737313939386563
31323861393935366563383038333432363962306164326436656364616236393838346633383964
63373738383562383739396134343330333431326139613736376666396335383065643534663363
66346663663036623830613037376261336363363430353935303332343030616365323538343636
66643931393166616136363430343634623765393330343139353732303139386661663263626134
63626665343062346461373061613338373731316135383332363539346637343532316337396630
34386636393465666436663939356361646466376161363765313137336634666338313838376463
30356634343066613931613535363338633964636530326332346431323231363563353063373561
38313938626633373038303861646361326335616334633063613332393637623265386564323533
36666234313833336362346332373164356231333261323962656561313965646362663030383562
66323131393432343865316135613138353564616466626564626330336531363165613434386465
65646464366531313733346132333361343564303761393263653533636434636264386437393137
33666638386532333261616435316139633763316662623964356438623437303663333835653737
35333834353362623061633736666565626262316138653863393964343965613432303962383966
63343464643662306438303538643334616536623239386638613631343330333861613732663836
64643564396432393766323530376164316638663064663931313739396333313836353235656539
63346437336664316566323063653862366131396633356532616662333261303039313663373633
63373963653733663730306437393031393463353964376232613162313764303134353563653961
31666330386564633464303466653137323936353438303031396331323562393861376263623438
61663564666138353833323461633861353262613761353534383432333230333465313735373934
37323036663936346538313730653939633331626231633534393464393739653838386635343833
31653963636236303966633835663866643531366632333362346332663530376131393561616130
63336166383738613430353966396634633562353666356663343333613562346134356130666261
31666134383936633337373261373030356631323063623832646662336630616635303130303561
63626162616437383534663165393538386233393838343436633638303235383732353739366631
66303939626564316335383237353236396164373666643366373830326632366532346266383333
38313964366363316164356262633632366330636631323339303863643132376465643662353536
64303335333663643963356439623762333633643131653334353836616162633633663364643963
32633163353235343566313262623835643834353832393565353636663265616533373361303666
63623134363964393262383639653261373831633865373930373364663065623264316364633239
30633565633133343766626437306533366266336235613132323637653662656263616461353939
34366135386435663166353239613361326134613666333337633737386434636263616133346339
39623030653136333565363535383039333265373965353437386564376338363462666134623964
62623536373931346133353134616564303565323234316530613636316262653964633730666338
65636561623362643965333931646631303439383231613538383262333435353936353739643965
31316237393138653038356637336662323639386439343332353334376633363432393764623237
37663733386336373931346363383065663262333837343562393635323832643065393339386535
38326661663039396431663036313530333930353561383336353165343462376665356166363361
32306365646464363631306563386431643333623165323639626636383234356335666339613237
66396166646138333466343539386665326661333430643436313638663462646630383430656531
39653833346530663566386132383331623363636436393634383939373265363437626262636664
63303230343532623739616364346265616664623261643063623039336261646530393436323665
61633061383164633165626637356262616466626163386332366238623437396266626135356335
34346433373763316562383066363131613338646333313466373332353635616665326637376534
35376139303864346565636335333234386533393564633262336361353862386238653762353634
63616234346566333361643033616137383765376465343133663263643334333163363932393961
64323439323034333361613636303663393935626364343031653335646166623261353838373165
62656634316137306134356161633564636461343735623862656330653532653230636638613835
66343335383461366630316566333461613835356262623237353135356234366463393637373730
63323035313063633030643761663466383264386161316537626431646137386265333437343366
61326331383765366263663733383361396166383265666635363966663931326131643939626661
32356434336563643033613965353065363061336463333539636464306333343264383639356533
39366563366539613963626439656633313536373832646333313731646635653463646637643232
64396265376132343463616136383264376661666333353331653461306333393666396566633639
37663737393262393932626165653666643032306638663339323763303539653166306365653230
30396633613630353766663636626664656162613263393531653461336336636534366233636162
61353265636131623166396635636236366263346238336439396532323036666464303439396362
63666461616133396464633930373264633034383233326362353637653236386132346639623638
65666438346232616363613062646632626665363434303162303664343338303264626366393838
63346535393933336562656130373265633762666333643439663438383430363335653938636533
36323963666637323236316638353263326564393538353163346237663533326565613065323133
35316666626135353830383838323164353735303262383735623335366134383132643234323638
37353361663261373936666663306636656437363362363234623138613065613534393764643234
66323036353533346362383238383333306338666262366366323961376662653537626332613939
34616433643334656334333033626532656132656439333039353363353031626166623137393461
64343639636263643539313065333430633434343034363764393936323765633862663935383736
34393032343461393661643437663938373035393634356263303131626462623536343231343838
64666135616661376562613534356530313836366564343166356462613331303563666531386565
34396536346539386437326434333765393633373639303732626532356166313136376134333362
66323834303564353465323838356230356433313532613531336333306461343138353330653938
61636463396434616166316138366266313030363939656439356433353136353438663731376236
30653430383635306436623965326634633965626337353963343039373962346464396237656337
62393736333833343534633939643233653836326362633738323830303333623036613763396661
32663061623865386139663637653632363039313665613063626636336663626661666436333638
30336638353135323366316664323863663830383434643661353336313939623531356665643731
33363664353331393765373932346631316630396239313161616461613235376236613636353932
66356164646135663663366461303031333933613963666566323263343639653263613762633663
33663339336462393830306532336538333865643130343930666261303939373761623762396436
66356262386538336236663961346165313537393933303439393136666236346532373739376530
36313337343835643037616262363064393231663036333437623361376462613861643534623462
64333531643261346233343232656532373039643564656134666132343865623830646463343161
35393461363962343136656439323365363632356235373232656636643136353037656265623362
36656163383236383634653938343037373039326261393163363864343535393137636635346335
64613437366530363930396535343962323730626230353866363761393165333038323138373834
64393232366333353234326433653435313562656531356337393266386164346635353334623865
37303538613165346638643430316438623963393736303564383730663634666337396338323464
64633062653963303438306664376264633266353037303530346533323431396561383737363337
64313064363337636134323131663735386563346636613564633263386562323935353532333235
35623131636262303430666334663231633863363234366531336665373635653466663161336536
63643636383062613831663436623139626637646436633535626265343237643631343835346334
39636332303939613431626136383464373865323538333530616233636333363034346363333335
30616635623333623863656335383237653062333337383634623039373364373139626266653339
62626133636261663736353832353437383761353362386339353863363634373639333064663766
65326162373436656234613835636333666661393861663163633337333038383334353330393030
33316330656363643463383635626132646639306239363335663364643235623663386331396536
39313331626539616661356566663637313133363135383662373934353439323836643633326463
61353566646462613135393665376564333133616331316530653331393462363038326265623931
38386466343066316438356436386166333437393263326462393033303330376562633861396364
37356362343836343663343238633438633938336130626362656637656263333662336132333137
30333339626434383738616539646635323233383838623562333731633837366365623866663831
33373264386239663466303837663964376537633239656462373734373261663962383565653633
61366264303963346361313465633939323532383338353438363666316238313163326661313361
63643366623931643632653061626335633362376637386233343264663833653434326564396133
62333165643164343333336237663162663834323035393632316166623533313565353536333963
64666139306130633631323335616534393937623738326633316630306364346366383039663635
63626436613134343065376466633062363738396632653462373537386133323736616365303132
35393638306231316563616338356165623666356439623039326338353162366264353363666430
65353564386361396338646236366462366463633732363537663735386330616237323731643865
35663530363263613338316466313466303366373537383631303965656539313761653534366464
63656431353132623130653461393030666130303961323332643935646533613530363533366363
63313163666137653538326632646133356137623239626637663939616662306630646463316235
32366230336261326137333936303463653438623666363538353335623162323462303232396330
66316132323236316234303232643561643765323336613963306464376261353939613232366230
66373863346464383865353737653337373238373265313561316336653939636130363434353031
37653262656438663465643632643464663231626661316534666236303532303634353062313066
35353735303132393230666566613035653666653934386130373936616366663639333132653966
37313637303436653661646362316333353132333833303561373035353061616532643636303837
33373765333935303230373931653334323137663932333633623461323963653864666430326665
39386334316633376666343936646366376536353634383138393233623637303966636462643438
65316262386530646565633761646232383139336464396536626239343363373734613866643235
34353865643435663637633936323439326134343630373163366466396361663431393631653761
31643633306463633035366361643738333433376136626561373239643332363432636430343363
63646364393363613135313762366335643862373334363237366639323539636564333066616337
66366635646336656162663531633932346638623835303961303438376166663736376137346162
63636237666235303665313564353736393661333233336230626139323965353238656339396536
30326264643834623765373138323739346234653966303862323339343864323464383761633439
39323931323531376435386662373633643561386630663262346131336464386539623363373265
35393338393132366235353136356633373162373264373035386137323534333230613130396361
31646561386634653766626561366534343137363636356166663964323034653432653738376438
34613437353933336363336338316263616562396237326533366139613138633831313938393838
33366461373432613735616366386330656537616464386537316564613236393965373430623839
65326665303162343366303264316635383535666433393264373233366237393234326266613637
65636463316262653361356137383532663166383661303538303862346634613130336465333539
39306634643930366634313832613834386235613739383931373161386437383066626235343330
66323631306264343133656638383164653565333938323665356233343338613036353039313663
38333333613431303564623931313562626262323635303931636461633863306264613335613233
61343037383337663565663732633736303937386535303432613530636434333334313536323365
30653030326438313938646634633737313962636164386131393331333262366531393833633131
37333734663435646161323661616562346139383435356163303932316163366535366337303165
39396239303163353333336138333938653561633965623365623835323265646530653932363062
30333230366536393430633063613437326363356266303539316333656337373266616630346366
30366132656538363866356165326365313834333632353461323634376539343831656537616530
35396231393631663133303133383834373463366634313161356364623133666539333133616139
35346335633865386361646566663237643831643232353333643833303132373763323037643862
37666464353262353163633736316666616632633564366234376234373865303734316530346561
65626236656630303431326564666263363237386631663532613264653438646633616130356235
32396532656237646561653265623139313465313332646536343263663234346162666564633864
30316663643937383662393861613237306139633338616130326432396436626164646134323336
34623865623166323834353033346665613137656436336536626633376332633039313361623836
61386162306133346536303330316632363539363238643639396331353035303664323432653231
34656138306362363737346430313065396530326565323736363065613937363234313863616561
31663930396337663833646565383965343437383633333362353538343061613263623734386562
32373961383230363033316362323532336631383564613664356437376536366161313831323962
65353338383061643436646337356338386135613632393538333936363465643363363938613366
38636565343535623534613237323038396632396366663563393138393536653730303866623963
33383564376338653734386538643239616231333533626238623335363264356331666564633438
63626363323765396566643436313132303237313339393334663034343163386134653563363938
35643663396437663337663937643162383232656338666236626235333161643862653337626532
31343366663263353930303034646166653434636538633335613638623637663236396131613539
38626435363831316532386233303662663834323434646333303335393664623365663165653361
62633365373061656332383964646562383662623335343262386439356130333832316363396538
66393966373539333535636461633362336238613334313834383036326462336264663033366237
32333139653136643764346664366461643338633535663539383465653563613931386166643230
37323639356165323736653436383865393634326165333638396632333136646164613638373065
63353830336363643133636435356236663235393637303134383034303637613563323930316564
61396136353538666561633633663465366365633661363762356663613134353131333731363031
35343066336130316166636664396362363463326563656239336262366434663134376464626139
63653661333434626331383230656265643137646538316530336465306466366261393266373964
62656366366631383662663034333532616163326635333963636164623966633166363861343938
39383662323766366631373334346633353066663734363438653761363764376362346365333933
64666231353031313561393233326636323163643930643235363238356631343864373730326539
36366634653666373530396661626139363165656266326334613634333235663966313537613638
65643730366337363136346533313161646238386236643939363236663730366532663534346331
33343635623364346562636166393234343636666361633362613939636261353939303566366635
31313561373330656630343334333530366331613961653565346262306130663637396366616133
32396161343736353332333434333939393665356361333434653965363336326232323533663866
65613536393639376365313730303036333137393932303566393233326466353830303164303533
30313233323533323932646565326265326466306665663166656633663739323363306662663632
35383131306435643061643664616234343665303863303430646266333563396132353333333763
62326236626435623462623238623835323966613033393639373238633434313036643865346539
38643636336635636434643432313131353463323066343132343261303761363030613563366161
63613638633931323536663434316633616464653661396565366465663462613266383962633131
39393035333764313565623637373636323238653933613636356537663861623638336538323863
65613332376562666462373266636234333164393463633337623462303063336461623631326539
62653961656131636233323965383539363761656463646539346262396464626566376632386134
66666261623131366136633231343739643466393939303164356562663362333063393964353137
32303532633535633034616239656133316338613430343239373966323362336564326230613438
35393264646637363264373766383235353564623239326537346634646431613836323739393234
37366330353232316339653730396631623361326533323363656562633661386336353166326130
62663661343538613037376465303037323963353833313834666564353732356462633633643865
61623662353634393530616536333537656638643235343233623661376434623734666536343036
62356531666635623531623539633936323462303738666134356565336537623431613762353534
63363434633533343233343434613862643434396438343566326462616164333861326330613437
32343765386436343766626437663236643631353832343036616333396132333739353063313235
39366432623165313438623130666161613865626439353134376633663866346430336237623663
35313334306337656665393365666430303761343066646639333534633536663565623935613939
63396364643637346237656330626265356431643065356661356362356163333834653733356562
62633036313732343334373636636562666638326665303035386632643839623066386263363139
62316166343264386638393038326631363337366635613737623461316530373064303363613638
61653937306638353630656562393965353931633838613631653337386638626262636563373636
64376462346538643231326236373135663637643633656136306364363533316530666336373665
65316435636539626265326135653930313435633335376361333464376537653763386239636563
37613865383564613130386235643265353733613534666331656264616166636131323437393764
61613065313562663966616232663263666136636663343864363961666137663965653732663937
31663838623532383063306535366138323334363130663038363032373264393939306461396266
34646234393361393439376663346466373432396232633062333363643331383261353434616132
33353765326138613263363032666432326161376430613262363565316633653465346166633033
65343636363664613162613432323236633761323435346135626439636163613632653833646366
66346635383332396532326238393961313366613535393038386535356339336666343436636335
38343639353532626330313237326562366131323639303565393439306566643238303462333538
62373135666639326432663761363930613038653930646562656163643030303130346661313038
39356135336665373630343963336431643830633637336439656437333837383332326537633263
66363964363436396235336230386162383134333136313065306538316364613233303065343331
37653062616535376161396234306238313064316538393039353964666535666137343139393236
34363034363639633866393430383065663739393836313633393761653165376563663133346230
64623033353666343062336430363838613462656535636161353062393534626234386636643934
32623863356563363166326238613562383964613430396535616436356139366362653138386533
61653035666233313061616439316466393661343731336161333832626233363762303061336632
61313162633532353964366236333633613930386565306633613062653366343336333265643962
36383839633138373234303837353562313464393136326362376330336663656133353233663864
35623663623134396139353164316562383038653466616234306662616464633563316137366466
63613462386434366636333636623964313830343834633734366561633264653536353732353134
63623266316261666433623836663137333066303466383564326630663931376364616465393133
30666635653632313833643837643266656337356437653139323531346435326534666230366663
33653035623139383231636135353138666432323534616233663161373137303363643261303261
63343231313562373264333965383537623561313566326263616131616538613661353733366234
37376532353637346533373135306463666666646536636564393661386363666234303463316637
66393836336439623537366133386430653464316564326234643932626630623135343335363163
32353662366533616633306435633261306339663230313535313234313161663234356531393663
63346361643031316239376633393338666139623633363466333066363562613830333237663633
62623764386261633533363165333438336131316261303363373034333638386663383664613639
64346435306362643564663135616265333162653835643334373938653634353431333437663431
63326535393132383861363165303165326534643337346661653532656535356461356165336162
38323663376333643262383036303532393335363362313737623730363031656463396238343536
33343831613937666363303461643632336638393338343536643737363033326338313231643832
32366335343831396435393766313637653432643366393637343935343136333037633033323162
33356234626439353132323839623335653135656131666533626262306666303033633836393834
63386433393730326264656566373761643165373234356265356532376564616663626534306239
64643761323466626330633136633361636262373737346637383130353365666561353937636164
65643235336139613134363932653536633036313135343166396439633465643438323064333530
35613930326433633662383062643931323035333731646433656534636164383838316136333863
31323736383962303034613532336262363834303431623131323031383362316639666664643963
65616532643131303834336462373866336565373638363238656365396461663835326535346163
39616135393731383266653837303332633730616133653937323031346466303839353530356335
66316332643766356333613639623335373532396162616563346439376338323531333366313333
61326165306239353539383830643165343362303965336238666237653135353530396137356235
30376333643938353964383366646232386464326536653166643631333863613862383639623034
64343366636566613164633438353562663166313332376331666438656331636636326164323438
37373238356134396131656436626337376139366436666465626137313831623430303234636433
64656265306233633539646362386136643039663834336338626235303336663539316333666435
35623365393835306464636530393932306561623731343866666139666633633533663962616161
38353335343664373435343262393636663134383034366465343439333132306132303334343466
39656566316232396662653733613861333061343464303564383331343733396236333636396230
66396462386563306230343736303831353262633565653365333633363066356638353032333832
32353834343565663563666262633863313539326234303763663732623362333532393365373562
65613137336636303263646264363137303837356263646265343435313735613731656465326565
38666534646638366139623163343164656566313330303839383666386531613561333933333935
39323233353630636534373130303233653762646430336339343933323834663735383935336330
66303964633131643933636263306232396161616463646232383039336563346637346236376461
35663663666532353837666236663536343234326461353036306130666663636139303631326334
31333563313633346465663431613663333034323131356634343566626164663166623962306336
30663563393232306461623639356635656231626566313832653162646130373561666563636637
39303664323662323931643334323163303433316164373463656163636435343538343763343462
65363331663165363134323235356631373463343662396136366332656366666135333639366664
30376532333838636363663962646263326639383730623535633562386663333837656436376365
61616561306265336666663032653964376634666361643264623961383732616534663131643464
38643039343661363331643130383562343633313132323430653065356465613133646663663366
30613736323430303131646165623835316165666138613765633739386238323131333730343761
34303432373665393832376630623732373532623039626636343065623032303938343561333735
61643030616631366265663263343337323062626662636461386664383763333234613337313932
63346262643065653238623731383037663139356363346336303639643333613562333537376565
34613061353530346661323238373137373765666534663331643538616162626139656562616366
33303065366630653838313234356464643632343430343866303338356362393861373138663836
35383332343563633264396161333533633564396663313032626136643438306535336330303534
34643132343232653032663339313665373633333365626138323336393261323933353963626664
62393135356665336561616363663962613537386632626131666539353431353330636235373962
63376332623561366630653862313631653563303965373561653430346166386666373366613061
61613534613834373135353336333266373339623166313966326434643636386637333361343233
33343833366539356630303265353932393066313963643432646265613839646365323535373039
38356266393863353334613032343331333665393766353962633865383336343230613630316266
35663966363236613264383964663936366366393334353531616138353833366665353963306439
37306130373765666637386635336231633939663765323831613832666565373866343861303761
61326132313530383865366463333634303865383962306632656661653330663037396634613237
34323338343565306163373664666238353436356539316335346664366564383239653964356131
30623739633736393266393831376564326535313633366233653563313834313832393339386132
30373364653737663265316365613736393862626538356663353234613964633963666363393361
34353065306365396538373434333439363930393132343638366135353062656665653538623563
35363439336431393165316662313466373362326436633239663635646163613264633562373436
36643639626466326234383538666134653139643037613638336231373132663666643663633536
36396464343632663833613434646539356331353862386263346464643564376135323331653765
64366134626235373561656135346332306235373639343031616139393038613039643266386134
65326538353632393062653632313961316635626532633663386530363938333039653739393339
30393036623735313934613932356261376261613064633136623564383331306130323236373761
62306536306466313566323839386465663733313135363630366264396538663638646534613063
33313136646630623931643664376461353162366533343762383432316266656463373261373731
61316532313639326232633532393839616566663164613932366263333663373465356431613961
32343935356633626166393639306663653761366534316631613031613934666138626464346166
36343265653764333337643961646331323432366334346130343464633532313830623431353665
63636261626561666531313235633339653936616335666563656561623366343033363038383233
63623938383366383463333435376162626638623135336631623732346138663537633866663964
33383835333238323235353031343964306363323466386365613238333436376438353634353262
62343636376233633134303138653766643535616264376166323533663464386638663830366434
37353431616537636431396463343165393365376136366439363866316631313566623662626538
36383533373261313734303036353232383132646661353036373163653630313066393933626637
36313364646463306239363337333164656263616238633537666337396136333663303635356635
33626431626163346238626532643831633737316232663337303834383166363963363639323036
30613964643330343838623238653036356266613064666466633765313131646431303431393862
33306436393133373135316665643865393438633631613831663131303565353161366166613164
34653863643365363939303837393736656237353431393534303839363238646631333661336133
32623232353538386565626335366338306636663937643237623235646561383139366633323430
63303539336165363566326462346563323838386465663433633132643162663465353964393766
66636363653730323465623563346464616133343962623564623730643964323634666464333064
63393164313137623166313736336235363431353937353939653364613335333635343964613630
37653966363237393039303634383837376565653634643634366138616361336238316536326235
63623831366138366637323033626330616230663333636465363339613836396332643731393032
31373061643962383432663933663262333839393331383761366633346565393634346666373863
31663039643365386138613564353565623230613634376562303635303530613766616632393639
36313535346631336361343566373732633165663530396332373062336136303565363733393132
323839643230646137633766343564666539