diff --git a/environments/custom/configuration.yml b/environments/custom/configuration.yml index 601cb4d16..b892c2c20 100644 --- a/environments/custom/configuration.yml +++ b/environments/custom/configuration.yml @@ -1,4 +1,7 @@ --- # Dummy variable to avoid error because ansible does not recognize the # file as a good configuration file when no variable in it. -dummy: +# +# ========== MariaDB Backup ============ +restic_backup_s3_bucket: backup-testbed +restic_backup_docker_tag: "0.18.1@sha256:c1958a2a1c8614f5c317347c2aaddd9f426076f0521430b55509eba43d7516ee" diff --git a/environments/custom/secrets.yml b/environments/custom/secrets.yml index 2fed4d945..f920b93f1 100644 --- a/environments/custom/secrets.yml +++ b/environments/custom/secrets.yml @@ -1,14 +1,6 @@ $ANSIBLE_VAULT;1.1;AES256 -34653334613432613331383063306531376339613139313231363330396664343063303036666330 -3361336266313038663133396135373430306662396261340a623634343533383930663963636466 -65313662656461393031323230626135376533656130353765373035333230323037373630636233 -3139356434663061350a333865333232623238316262366562383361653065666266323035666162 -61353032636637373961653265356132303264633136373433323832366337366135343566626435 -30643962343965656435323736373538623663646363343739613735626634653336626336313937 -33656539623730646264376339333237366630376335333764376538363331363635623664333561 -39386364326332633135343037353663636135346334323234313366303532303738613039363437 -37363963353230643763643433633036643565393437323139346134396164643561373230643138 -64303632363461393463613365633434646433633562303336666363386666316264376431316331 -31616431633166363134373333396536343933383436626566326264663633623462336438313836 -38623535353561386531386464313631303362366534626361663438373561653836333933383237 -37646134613163383863373430366137646332666639336639643062373831316263 +65636135663137643465613334633666306139386363306562626133383330343566646434346164 +6237353632626231323464336435623263376237393638640a386461613230363637303864386335 +62313765623437393535383239643632366363633038386661623734613031633439346662623861 +6238343739343337620a326162383563363332393062666238366336633764336361616566663839 +3339 diff --git a/environments/custom/templates/restic-backup.service.j2 b/environments/custom/templates/restic-backup.service.j2 new file mode 100644 index 000000000..a48e9b592 --- /dev/null +++ b/environments/custom/templates/restic-backup.service.j2 @@ -0,0 +1,27 @@ +[Unit] +Description=Trigger backup of MariaDB to S3 +Documentation=https://restic.readthedocs.io/ +After=docker.service network-online.target +Requires=docker.service + +[Service] +Type=oneshot + +User=dragon +Group=dragon + +# Determine full vs incremental based on the current hour +ExecStart=/usr/local/bin/restic-backup.sh +TimeoutStartSec=14400 + +StandardOutput=journal +StandardError=journal +SyslogIdentifier=restic-db-backup + +# Security hardening +PrivateTmp=true +NoNewPrivileges=true +ProtectSystem=strict + +[Install] +WantedBy=multi-user.target diff --git a/environments/custom/templates/restic-backup.sh.j2 b/environments/custom/templates/restic-backup.sh.j2 new file mode 100644 index 000000000..da979fa79 --- /dev/null +++ b/environments/custom/templates/restic-backup.sh.j2 @@ -0,0 +1,26 @@ +#!/usr/bin/env bash +# restic-backup.sh – managed by Ansible. Do NOT edit manually. +# +# Usage: +# restic-backup.sh +set -euo pipefail + +# ── Determine backup type ───────────────────────────────────────────────────── +# When called by the systemd timer, BACKUP_TYPE is evaluated automatically: +# - "full" every {{ restic_backup_full_interval_hours }} hours +# - "incremental" all other hourly runs +HOUR=$(date +%-H) +if (( HOUR % {{ restic_backup_full_interval_hours }} == 0 )); then + BACKUP_TYPE=full +else + BACKUP_TYPE=incremental +fi + +echo "Backup type: ${BACKUP_TYPE}" + + +# --- Backup Maria DB ----------------------------------------------------------- +/usr/local/bin/osism apply mariadb_backup -e mariadb_backup_type=$BACKUP_TYPE + +# --- Upload -------------------------------------------------------------------- +# /usr/local/bin/osism apply upload-backup diff --git a/environments/custom/templates/restic-backup.timer.j2 b/environments/custom/templates/restic-backup.timer.j2 new file mode 100644 index 000000000..8fb01a56c --- /dev/null +++ b/environments/custom/templates/restic-backup.timer.j2 @@ -0,0 +1,16 @@ +# restic-backup.timer – managed by OSISM. Do NOT edit manually. +[Unit] +Description=Hourly restic backup timer +Documentation=https://restic.readthedocs.io/ +Requires=restic-backup.service + +[Timer] +# Fire at the top of every hour, randomized within the first 5 minutes +# to avoid thundering-herd problems on multiple hosts. +OnCalendar={{ restic_backup_oncalendar }} +RandomizedDelaySec=300 +# catch up on a missed run after reboot/downtime +Persistent=true + +[Install] +WantedBy=timers.target diff --git a/environments/kolla/configuration.yml b/environments/kolla/configuration.yml index 08b78eaa2..db4ac132f 100644 --- a/environments/kolla/configuration.yml +++ b/environments/kolla/configuration.yml @@ -119,3 +119,18 @@ prometheus_instance_label: "{{ ansible_facts.hostname }}" om_enable_rabbitmq_high_availability: false om_enable_rabbitmq_quorum_queues: false + +########################################################## +# mariadb backup + +mariadb_backup_gpg_recipient: backup@testbed.osism.xyz +mariadb_backup_node: "testbed-node-0" +mariadb_backup_s3_endpoint: "https://api.bfe2.teutostack.de:6780" +mariadb_backup_s3_bucket: "backup-testbed" +mariadb_backup_s3_prefix: "bfe2/" +mariadb_backup_retention_hourly: 3 +mariadb_backup_retention_daily: 7 +mariadb_backup_retention_weekly: 28 +mariadb_backup_retention_monthly: 365 +mariadb_backup_s3_region: "" +mariadb_backup_s3_virtual_hosted_style_bucket: false diff --git a/environments/kolla/files/overlays/prometheus/backup.rules b/environments/kolla/files/overlays/prometheus/backup.rules new file mode 100644 index 000000000..fdd2f75ec --- /dev/null +++ b/environments/kolla/files/overlays/prometheus/backup.rules @@ -0,0 +1,59 @@ +groups: +- name: BackupSystemdExporter + rules: + - alert: BackupProbeFailed + expr: 'up{job="backup-systemd-exporter"} == 0' + for: 1m + labels: + severity: critical + annotations: + summary: Backup probe failed (service {{ $labels.name }}) + description: "Probe failed\n VALUE = {{ $value }}\n LABELS = {{ $labels }}" + - alert: BackupTimerInactive + expr: 'systemd_unit_state{job="backup-systemd-exporter", state="active", type="timer"} == 0' + for: 1m + labels: + severity: critical + annotations: + summary: Backup timer is inative (service {{ $labels.name }}) + description: "Timer inactive\n VALUE = {{ $value }}\n LABELS = {{ $labels }}" + - alert: BackupFailed + expr: 'systemd_unit_state{job="backup-systemd-exporter", state="failed"} == 1' + for: 1m + labels: + severity: critical + annotations: + summary: MariaDB Backup job failed (service {{ $labels.name }}) + description: "Backup failed\n VALUE = {{ $value }}\n LABELS = {{ $labels }}" + - alert: HourlyBackupMissed + expr: '(time() - systemd_timer_last_trigger_seconds{job="backup-systemd-exporter", name="mariadb-backup-hourly.timer"}) / 60 > 60' + for: 1m + labels: + severity: critical + annotations: + summary: Hourly backup job is {{ $value }}m overdue + description: "Hourly backup overdue\n VALUE = {{ $value }}\n LABELS = {{ $labels }}" + - alert: DailyBackupMissed + expr: '(time() - systemd_timer_last_trigger_seconds{job="backup-systemd-exporter", name="mariadb-backup-daily.timer"}) / 60 > 60*60*24' + for: 1m + labels: + severity: critical + annotations: + summary: Daily backup job is {{ $value }}m overdue + description: "Daily backup overdue\n VALUE = {{ $value }}\n LABELS = {{ $labels }}" + - alert: WeeklyBackupMissed + expr: '(time() - systemd_timer_last_trigger_seconds{job="backup-systemd-exporter", name="mariadb-backup-weekly.timer"}) / 60 > 60*60*24*7' + for: 1m + labels: + severity: critical + annotations: + summary: Weekly backup job is {{ $value }}m overdue + description: "Weekly backup overdue\n VALUE = {{ $value }}\n LABELS = {{ $labels }}" + - alert: MonthlyBackupMissed + expr: '(time() - systemd_timer_last_trigger_seconds{job="backup-systemd-exporter", name="mariadb-backup-monthly.timer"}) / 60 > 60*60*24*31' + for: 1m + labels: + severity: critical + annotations: + summary: Monthly backup job is {{ $value }}m overdue + description: "Monthly backup overdue\n VALUE = {{ $value }}\n LABELS = {{ $labels }}" diff --git a/environments/kolla/files/overlays/prometheus/prometheus.yml.d/65-systemd-exporter.yml b/environments/kolla/files/overlays/prometheus/prometheus.yml.d/65-systemd-exporter.yml new file mode 100644 index 000000000..aa2992ebf --- /dev/null +++ b/environments/kolla/files/overlays/prometheus/prometheus.yml.d/65-systemd-exporter.yml @@ -0,0 +1,12 @@ +scrape_configs: + - job_name: backup-systemd-exporter + scrape_interval: 60s + static_configs: +{% for host in groups['manager'] %} + - targets: + - "{{ hostvars[host]['ansible_facts'][hostvars[host]['network_interface']]['ipv4']['address'] }}:{{ systemd_exporter_port | default('9558') }}" +{% if hostvars[host].prometheus_instance_label | default(false, true) %} + labels: + instance: "{{ hostvars[host].prometheus_instance_label }}" +{% endif %} +{% endfor %} diff --git a/environments/kolla/playbook-deploy-mariadb-backup.yml b/environments/kolla/playbook-deploy-mariadb-backup.yml new file mode 100644 index 000000000..380969a0e --- /dev/null +++ b/environments/kolla/playbook-deploy-mariadb-backup.yml @@ -0,0 +1,16 @@ +--- +- name: MariaDB backup — control node + hosts: "{{ mariadb_backup_node | default('mariadb[0]') }}" + become: true + roles: + - role: mariadb_backup + vars: + mariadb_backup_component: mariadb + +- name: MariaDB backup — manager + hosts: "manager" + become: true + roles: + - role: mariadb_backup + vars: + mariadb_backup_component: manager diff --git a/environments/kolla/roles/mariadb_backup/defaults/main.yml b/environments/kolla/roles/mariadb_backup/defaults/main.yml new file mode 100644 index 000000000..2b5af5569 --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/defaults/main.yml @@ -0,0 +1,111 @@ +--- +# ============================================================================= +# roles/mariadb_backup/defaults/main.yml +# Lowest precedence — override anything via group_vars / host_vars / -e. +# ============================================================================= + +# --- Manager -> mariadb remote execution ------------------------------------ +# On which mariadb node should the backup be triggered +mariadb_backup_node: "" +# Location of the SSH key to access the mariadb node +mariadb_backup_ssh_key: "/opt/ansible/secrets/id_rsa.operator" +# IP address of the mariadb node +mariadb_backup_node_address: "{{ hostvars[mariadb_backup_node]['internal_address'] }}" +# ssh command to access mariadb node +mariadb_backup_remote_exec: >- + ssh {% if mariadb_backup_ssh_key %}-i {{ mariadb_backup_ssh_key }} {% endif %}-o BatchMode=yes + -o StrictHostKeyChecking=no dragon@{{ mariadb_backup_node_address }} + +# --- Paths ------------------------------------------------------------------ +# Path where to save the config for the backup script +mariadb_backup_config_dir: "/etc/kolla/mariadb-backup" +# Path where to save the backups on local disk +mariadb_backup_destination_dir: "/srv/mariadb-backup" +# Path to overwriute the location of backups on the manager +mariadb_backup_destination_dir_manager: "{{ mariadb_backup_destination_dir }}" +# Path to overwriute the location of backups on the mariadb nmode +mariadb_backup_destination_dir_mariadb: "{{ mariadb_backup_destination_dir }}" +# Location of the extract script on the mariadb node +mariadb_backup_extract_script: "/usr/local/bin/mariadb-extract.sh" +# Location of the backup script on the manager ndoe +mariadb_backup_orchestrate_script: "/usr/local/bin/mariadb-backup.sh" +# Name of the docker volume that holds the mariadb backups created by kolla +mariadb_backup_volume: "mariadb_backup" +# Path to the docker volumes +mariadb_backup_docker_volume_dir: "/var/lib/docker/volumes" +# Full path to the backups in the docker volume +mariadb_backup_backup_volume_dir: "/var/lib/docker/volumes/{{ mariadb_backup_volume }}/_data" + +# --- GPG (asymmetric; control node holds the PUBLIC key only) --------------- +# Email address of the gpg public key +mariadb_backup_gpg_recipient: "" +# Full public gpg key which is used for backup encryption +mariadb_backup_gpg_public_key: "" + +# --- rclone (runs as a container; config + disk are bind mounts) ------------ +# Docker registry of rclone image +mariadb_backup_rclone_docker_registry: "ghcr.io" +# Name of rclone image +mariadb_backup_rclone_docker_image: "rclone/rclone" +# Tag of rclone image +mariadb_backup_rclone_docker_tag: "1.74.3" +# Full name of rclone docker image +mariadb_backup_rclone_image_full: "{{ mariadb_backup_rclone_docker_registry }}/{{ mariadb_backup_rclone_docker_image }}:{{ mariadb_backup_rclone_docker_tag }}" +# Path to save the rclone config +mariadb_backup_rclone_config_file: "{{ mariadb_backup_config_dir }}/rclone.conf" + +# --- rclone remotes --------------------------------------------------------- +# Name of the mariadb remote in rclone config +mariadb_backup_sftp_remote: "sftp-mariadb" +# Name of S3 remote in rclone config +mariadb_backup_s3_remote: "s3offsite" + +# Off-site S3 remote +# Hostname of S3 enpoint +mariadb_backup_s3_hostname: "" +# Port of S3 endpoint +mariadb_backup_s3_port: 443 +# Full HTTPS s3 endpoint +mariadb_backup_s3_endpoint: "https://{{ mariadb_backup_s3_hostname }}:{{ mariadb_backup_s3_port }}" +# S3 compatible rclone provider https://rclone.org/s3/ +mariadb_backup_s3_rclone_provider: "Ceph" +# S3 backups for backups +mariadb_backup_s3_bucket: "mariadb-backups" +# Flag whether to use the virtual hosted style to address buckets +mariadb_backup_s3_virtual_hosted_style_bucket: false +# Prefix to add before all s3 path +mariadb_backup_s3_prefix: "" +# S3 region for bucket, not necessary for ceph +mariadb_backup_s3_region: "" +# S3 access key id +mariadb_backup_s3_access_key_id: "" +# S3 secret access key +mariadb_backup_s3_secret_access_key: "" + +# --- Object Lock / WORM (off-site S3) --------------------------------------- +# S3 Object lock mode: GOVERNANCE | COMPLIANCE | "" (disable) +mariadb_backup_object_lock_mode: "GOVERNANCE" +# S3 lock rentention time in days for hourly backups +mariadb_backup_retention_hourly: 3 +# S3 lock rentention time in days for daily backups +mariadb_backup_retention_daily: 7 +# S3 lock rentention time in days for weekly backups +mariadb_backup_retention_weekly: 28 +# S3 lock rentention time in days for monthly backups +mariadb_backup_retention_monthly: 365 + +# --- Schedules (systemd OnCalendar) ----------------------------------------- +# systemd timer schedule for daily backups +mariadb_backup_schedule_daily: "*-*-* 00:00:00" +# systemd timer schedule for hourly backups +mariadb_backup_schedule_hourly: "*-*-* 01..23:00:00" +# systemd timer schedule for weekly backups +mariadb_backup_schedule_weekly: "Mon *-*-* 01:00:00" +# systemd timer schedule for monthly backups +mariadb_backup_schedule_monthly: "*-*-01 02:00:00" + +mariadb_backup_jobs: + - { type: "daily", schedule: "{{ mariadb_backup_schedule_daily }}" } + - { type: "hourly", schedule: "{{ mariadb_backup_schedule_hourly }}" } + - { type: "weekly", schedule: "{{ mariadb_backup_schedule_weekly }}" } + - { type: "monthly", schedule: "{{ mariadb_backup_schedule_monthly }}" } diff --git a/environments/kolla/roles/mariadb_backup/handlers/main.yml b/environments/kolla/roles/mariadb_backup/handlers/main.yml new file mode 100644 index 000000000..c28484f73 --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/handlers/main.yml @@ -0,0 +1,4 @@ +--- +- name: Reload systemd + ansible.builtin.systemd: + daemon_reload: true diff --git a/environments/kolla/roles/mariadb_backup/tasks/main.yml b/environments/kolla/roles/mariadb_backup/tasks/main.yml new file mode 100644 index 000000000..ab69ea36d --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/tasks/main.yml @@ -0,0 +1,8 @@ +--- +- name: Configure mariadb-node backup tasks + ansible.builtin.include_tasks: mariadb.yml + when: mariadb_backup_component == 'mariadb' + +- name: Configure manager orchestration tasks + ansible.builtin.include_tasks: manager.yml + when: mariadb_backup_component == 'manager' diff --git a/environments/kolla/roles/mariadb_backup/tasks/manager.yml b/environments/kolla/roles/mariadb_backup/tasks/manager.yml new file mode 100644 index 000000000..ee6962248 --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/tasks/manager.yml @@ -0,0 +1,82 @@ +--- +- name: Pull the rclone container image + community.docker.docker_image_pull: + name: "{{ mariadb_backup_rclone_image_full }}" + +- name: Create directories on manager + ansible.builtin.file: + path: "{{ item }}" + state: directory + owner: "root" + group: "root" + mode: "0750" + loop: + - "{{ mariadb_backup_destination_dir_manager }}" + - "{{ mariadb_backup_config_dir }}" + +- name: Render rclone.conf + ansible.builtin.template: + src: rclone.conf.j2 + dest: "{{ mariadb_backup_rclone_config_file }}" + owner: "root" + group: "root" + mode: "0600" + +- name: Deploy manager orchestrator script + ansible.builtin.template: + src: mariadb-backup.sh.j2 + dest: "{{ mariadb_backup_orchestrate_script }}" + owner: root + group: root + mode: "0755" + +- name: Deploy systemd service units + ansible.builtin.template: + src: systemd-service.j2 + dest: "/etc/systemd/system/mariadb-backup-{{ item.type }}.service" + owner: root + group: root + mode: "0644" + loop: "{{ mariadb_backup_jobs }}" + notify: Reload systemd + +- name: Deploy systemd timer units + ansible.builtin.template: + src: systemd-timer.j2 + dest: "/etc/systemd/system/mariadb-backup-{{ item.type }}.timer" + owner: root + group: root + mode: "0644" + loop: "{{ mariadb_backup_jobs }}" + notify: Reload systemd + +- name: Reload systemd before toggling timers + ansible.builtin.meta: flush_handlers + +- name: Enable and start active timers + ansible.builtin.systemd: + name: "mariadb-backup-{{ item.type }}.timer" + enabled: true + state: started + loop: "{{ mariadb_backup_jobs }}" + +- name: Deploy systemd-exporter + community.docker.docker_container: + log_driver: "json-file" + log_options: + max-size: "10m" + max-file: "3" + name: backup_systemd_exporter + image: docker.io/prometheuscommunity/systemd-exporter:v0.7.0 + network_mode: host + privileged: true + user: root + restart_policy: unless-stopped + pull: "{{ pull_image | default('missing') }}" + mounts: + - read_only: true + source: /var/run/dbus + target: /var/run/dbus + type: bind + command: + - "--systemd.collector.unit-include=mariadb-backup-.*" diff --git a/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml b/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml new file mode 100644 index 000000000..3f6689322 --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml @@ -0,0 +1,32 @@ +--- +- name: Create directories on mariadb node + ansible.builtin.file: + path: "{{ mariadb_backup_destination_dir_mariadb }}" + state: directory + owner: "dragon" + group: "dragon" + mode: "0750" + +- name: Deploy GPG public key (from controller file) + ansible.builtin.copy: + content: "{{ mariadb_backup_gpg_public_key }}" + dest: "/home/dragon/backup-pub.asc" + owner: root + group: root + mode: "0644" + +- name: Import GPG public key + become: false + ansible.builtin.command: + cmd: "gpg --import /home/dragon/backup-pub.asc" + register: _gpg_import + changed_when: "'imported' in _gpg_import.stderr" + failed_when: _gpg_import.rc != 0 and not ('unchanged' in _gpg_import.stderr or 'imported' in _gpg_import.stderr) + +- name: Deploy control-node extract/encrypt/promote script + ansible.builtin.template: + src: mariadb-extract.sh.j2 + dest: "{{ mariadb_backup_extract_script }}" + owner: root + group: root + mode: "0755" diff --git a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 new file mode 100644 index 000000000..2e966f2ba --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 @@ -0,0 +1,80 @@ +#!/usr/bin/env bash +# Managed by Ansible (role: mariadb_backup). +# Orchestrates one backup run end-to-end from the manager. rclone runs as a +# container with the config dir and the manager disk dir bind-mounted. All +# config is rendered from Ansible variables at deploy time. +set -euo pipefail + +TYPE="${1:?usage: $(basename "$0") hourly|daily|weekly|monthly}" + +[ -d "{{ mariadb_backup_destination_dir_manager }}" ] || mkdir -p "{{ mariadb_backup_destination_dir_manager }}" + +# --- containerized rclone helper --------------------------------------------- +rclone_run() { # usage: rclone_run + docker run --rm \ + --name mariadb_backup_rclone \ + -e RCLONE_CONFIG=/config/rclone.conf \ + -v {{ mariadb_backup_rclone_config_file }}:/config/rclone.conf:ro \ + -v {{ mariadb_backup_ssh_key }}:{{ mariadb_backup_ssh_key }}:ro \ + -v "{{ mariadb_backup_destination_dir_manager }}:{{ mariadb_backup_destination_dir_manager }}" \ + {{ mariadb_backup_rclone_image_full }} $* +} + +case "$TYPE" in + daily) + sudo -u dragon osism apply facts # gather facts, use daily schedules because facts have a 24h TTL + sudo -u dragon osism apply mariadb_backup -e mariadb_backup_type=full -e mariadb_backup_host={{ mariadb_backup_node }} + ret="{{ mariadb_backup_retention_daily }}" ;; + hourly) + sudo -u dragon osism apply mariadb_backup -e mariadb_backup_type=incremental -e mariadb_backup_host={{ mariadb_backup_node }} + ret="{{ mariadb_backup_retention_hourly }}" ;; + weekly) + # promote last full backup to weekly backup + ret="{{ mariadb_backup_retention_weekly }}" ;; + monthly) + # promote last full backup to weekly backup + ret="{{ mariadb_backup_retention_monthly }}" ;; + *) echo "unknown type: $TYPE" >&2; exit 2 ;; +esac + +# extract/encrypt (full/incr) or promote (weekly/monthly) on mariadb node +{{ mariadb_backup_remote_exec }} {{ mariadb_backup_extract_script }} "$TYPE" + +# pull encrypted subtree from control node to manager disk (Copy 1) +rclone_run copy \ + "{{ mariadb_backup_sftp_remote }}:{{ mariadb_backup_destination_dir_mariadb }}/${TYPE}" \ + "{{ mariadb_backup_destination_dir_manager }}/${TYPE}" + +# upload encrypted subtree from manager disk to offsite S3 (Copy 2) +rclone_run copy \ + "{{ mariadb_backup_destination_dir_manager }}/${TYPE}" \ + "{{ mariadb_backup_s3_remote }}:{{ mariadb_backup_s3_bucket }}/{{ mariadb_backup_s3_prefix }}${TYPE}" \ +{% if mariadb_backup_object_lock_mode +%} --s3-object-lock-mode {{ mariadb_backup_object_lock_mode }} \ + --s3-object-lock-retain-until-date "${ret}d" +{% endif %} + +echo "mariadb-backup: ${TYPE} complete" + +# GC the disk copies (non-WORM); S3 is governed by Object Lock + lifecycle +GC_COMMON_FILTER="-type f -name '*.mbs.gz.gpg'" +case "$TYPE" in + daily) + find "{{ mariadb_backup_destination_dir_manager }}/daily" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_daily }} -delete 2>/dev/null || true + {{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}/daily" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_daily }} -delete 2>/dev/null || true;; + hourly) + find "{{ mariadb_backup_destination_dir_manager }}/hourly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_hourly }} -delete 2>/dev/null || true + {{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}/hourly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_hourly }} -delete 2>/dev/null || true;; + weekly) + find "{{ mariadb_backup_destination_dir_manager }}/weekly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_weekly }} -delete 2>/dev/null || true + {{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}/weekly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_weekly }} -delete 2>/dev/null || true;; + monthly) + find "{{ mariadb_backup_destination_dir_manager }}/monthly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_monthly }} -delete 2>/dev/null || true + {{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}/monthly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_monthly }} -delete 2>/dev/null || true;; + *) echo "unknown type: $TYPE" >&2; exit 2 ;; +esac + +# Delete empty folders +find "{{ mariadb_backup_destination_dir_manager }}" -type d -empty -delete 2>/dev/null || true +{{ mariadb_backup_remote_exec }} "{{ mariadb_backup_destination_dir_mariadb }}" -type d -empty -delete 2>/dev/null || true + +echo "mariadb-backup: GC complete" diff --git a/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 b/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 new file mode 100644 index 000000000..69f0126f1 --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 @@ -0,0 +1,99 @@ +#!/usr/bin/env bash +# Managed by Ansible (role: mariadb_backup). +# Extract the current full / latest incremental from the kolla backup volume +# (or promote the current full into the weekly/monthly tier), encrypt with GPG, +# and place it into the structured staging tree. All config is rendered from +# Ansible variables at deploy time. +set -euo pipefail + +TYPE="${1:?usage: $(basename "$0") hourly|daily|weekly|monthly}" +read -r NOW_Y NOW_m NOW_d ISOY ISOW NOW_H <<<"$(date -u +'%Y %m %d %G %V %H')" + +# --- locate the source backup directory in the volume ------------------------ +current_full_dir() { + # Prefer the kolla 'last_full_file' marker; fall back to newest full-* dir. + local marker="{{ mariadb_backup_backup_volume_dir }}/last_full_file" rel + if [[ -r "$marker" ]]; then + rel=$(sudo cat "$marker" | sed -E 's#^/backup/+##; s#/[^/]+$##') # strip /backup/ prefix and trailing filename + printf '%s\n' "{{ mariadb_backup_backup_volume_dir }}/${rel}"; return 0 + fi + sudo find {{ mariadb_backup_backup_volume_dir }} -mindepth 1 -maxdepth 1 -type d -name 'full-*' \ + -printf '%T@\t%p\n' | sort -rn | head -1 | cut -f2- +} + +latest_incr_dir() { + # Print the incremental backup directory whose *name* encodes the most recent + # timestamp. Name format: incr----
---since-... + # Sorting is on the name, not the filesystem mtime. + local path name h mi s d mo y key best_key="" best_dir="" + + while IFS= read -r path; do + name=${path##*/} # basename + IFS='-' read -r h mi s d mo y _ <<<"${name#incr-}" + # skip anything that doesn't parse as a numeric timestamp + [[ "$y" =~ ^[0-9]{4}$ && "$mo$d$h$mi$s" =~ ^[0-9]{10}$ ]] || continue + key="${y}${mo}${d}${h}${mi}${s}" # YYYYMMDDHHMMSS — fixed width, sorts correctly + if [[ "$key" > "$best_key" ]]; then + best_key=$key + best_dir=$path + fi + done < <(sudo find {{ mariadb_backup_backup_volume_dir }} -mindepth 1 -maxdepth 1 -type d -name 'incr-*') + + [[ -n "$best_dir" ]] && printf '%s\n' "$best_dir" +} + +# Build the relative path from the source directory name, so the +# partition reflects the backup's own timestamp (not when this script runs). +# full-DD-MM-YYYY- -> daily/YYYY/MM/DD +# incr-HH-MM-SS-DD-MM-YYYY-since-DD-MM-YYYY- -> hourly/YYYY/MM/DD/HH +parse_daily_rel() { + local name="$1" base k f1 f2 f3 f4 f5 f6 rest + IFS='-' read -r base k f1 f2 f3 f4 f5 rest <<<"$name" + f6=$(cut -d"." -f1 <<<"$rest") + if [[ "$k" == "full" && "$f3" =~ ^[0-9]{4}$ ]]; then + printf 'daily/%s/%s/%s' "$f3" "$f2" "$f1" + elif [[ "$base" == "incr" && "$f5" =~ ^[0-9]{4}$ ]]; then + printf 'hourly/%s/%s/%s/%s' "$f5" "$f4" "$f3" "$k" + else + # fall back to current UTC date/hour if the name is unexpected + if [[ "$k" == "incremental" ]]; then printf 'hourly/%s/%s/%s' "$NOW_Y" "$NOW_m" "$NOW_d" + else printf 'daily/%s/%s/%s' "$NOW_Y" "$NOW_m" "$NOW_d"; fi + fi +} + +case "$TYPE" in + daily) srcdir=$(current_full_dir); rel=$(parse_daily_rel "$(basename "${srcdir:-x}")") ;; + hourly) srcdir=$(latest_incr_dir); rel=$(parse_daily_rel "$(basename "${srcdir:-x}")") ;; + weekly) srcdir=$(current_full_dir); rel="weekly/${ISOY}/${ISOW}" ;; + monthly) srcdir=$(current_full_dir); rel="monthly/${NOW_Y}/${NOW_m}" ;; + *) echo "unknown type: $TYPE" >&2; exit 2 ;; +esac + +if [[ -z "${srcdir:-}" ]]; then + echo "srcdir var empty. Couldn't determine source directory for backup" >&2; exit 1 +fi + +sudo ls $srcdir + +srcfile=$(sudo find "$srcdir" -maxdepth 1 -type f -name '*.mbs.gz' | head -1) +if [[ -z "${srcfile:-}" ]]; then + echo "no .mbs.gz file found in ${srcdir}" >&2; exit 1 +fi + +# Output is named after the source directory: it encodes the timestamp and, +# for incrementals, the 'since-' linkage needed to restore the chain. +name=$(basename "$srcdir") +dst="{{ mariadb_backup_destination_dir_mariadb }}/${rel}" +[ -d "$dst" ] || mkdir -p "$dst" + +sudo cat $srcfile | gpg --batch --yes --encrypt \ + --recipient "{{ mariadb_backup_gpg_recipient }}" --trust-model always \ + --compress-algo none \ + --output "${dst}/${name}.mbs.gz.gpg" +echo "mariadb-extract: ${TYPE} ${name} -> ${rel}" + +# --- garbage collection over the staging tree ------------------------------ +# Delete files older than 2 days in docker volume +sudo find "{{ mariadb_backup_backup_volume_dir }}" -mindepth 1 -name "*.mbs.gz" -type f -mtime 2 -delete 2>/dev/null || true +# Delete empty directories +sudo find "{{ mariadb_backup_backup_volume_dir }}" -type d -empty -delete 2>/dev/null || true diff --git a/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 b/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 new file mode 100644 index 000000000..fdbdfbb67 --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 @@ -0,0 +1,25 @@ +# Managed by Ansible (role: mariadb_backup). +[{{ mariadb_backup_sftp_remote }}] +type = sftp +host = {{ mariadb_backup_node_address }} +user = dragon +{% if mariadb_backup_ssh_key %} +key_file = {{ mariadb_backup_ssh_key }} +{% endif %} +shell_type = unix +md5sum_command = md5sum +sha1sum_command = sha1sum + +[{{ mariadb_backup_s3_remote }}] +type = s3 +provider = {{ mariadb_backup_s3_rclone_provider }} +access_key_id = {{ mariadb_backup_s3_access_key_id }} +secret_access_key = {{ mariadb_backup_s3_secret_access_key }} +region = {{ mariadb_backup_s3_region }} +endpoint = {{ mariadb_backup_s3_endpoint }} +# Force list_objects_v2 +list_version = 2 +# Force path style to address bucket +force_path_style = {{ (not mariadb_backup_s3_virtual_hosted_style_bucket | bool) | lower }} +# Don't try to create a bucket +no_check_bucket = true diff --git a/environments/kolla/roles/mariadb_backup/templates/systemd-service.j2 b/environments/kolla/roles/mariadb_backup/templates/systemd-service.j2 new file mode 100644 index 000000000..23684d781 --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/templates/systemd-service.j2 @@ -0,0 +1,9 @@ +[Unit] +Description=MariaDB backup ({{ item.type }}) +After=network-online.target docker.service +Wants=network-online.target +Requires=docker.service + +[Service] +Type=oneshot +ExecStart={{ mariadb_backup_orchestrate_script }} {{ item.type }} diff --git a/environments/kolla/roles/mariadb_backup/templates/systemd-timer.j2 b/environments/kolla/roles/mariadb_backup/templates/systemd-timer.j2 new file mode 100644 index 000000000..4d7b4fcf8 --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/templates/systemd-timer.j2 @@ -0,0 +1,9 @@ +[Unit] +Description=Timer for MariaDB backup ({{ item.type }}) + +[Timer] +OnCalendar={{ item.schedule }} +Persistent=false + +[Install] +WantedBy=timers.target diff --git a/environments/kolla/secrets.yml b/environments/kolla/secrets.yml index 7afc2cf9c..af3fdb147 100644 --- a/environments/kolla/secrets.yml +++ b/environments/kolla/secrets.yml @@ -1,1537 +1,1580 @@ $ANSIBLE_VAULT;1.1;AES256 -36363564313033376264366133626636343737613834386564396234303231316666663265633134 -3332366132323839353163366130373366346631623137610a376364643365323537663464303233 -37663239363633663562666462313431363037646539383532623964623233663538636563643737 -3837323363393833610a623239306562396433643734656236323930653162396661393033343465 -39386630323233653562313437653538616432633130633133316338623234373832313266303731 -38333731353166366234393139363432616238666133363530363635343431303664373061386132 -33646565326364343934623166663430613832313866353566366366396161313831353361343766 -64333334346164326264343064633930346236663032326239363065326265336234363230653537 -39623939316664323866363231316531616430636532373738653161613261336637643531653264 -65396632616533663964643937393066303635353236326130376532666532653539306664343061 -62633235343735616138333437303932393765646663653538393439666665333034313433633939 -61373632306531666466306164303262633739656534653962396533303864373662313335313837 -66653935386461666235313165636433323563306363316661316666653365343639323630333662 -66383139353361633666356339306661306333386161353463383765616264616262323434306561 -39376363643765663266616238623730393530666130306431303761623934313631366639376235 -31396236663338313331393033346636626536353630613936346430316236353462663531366138 -34386238303130373033333261343931386432336530323062343466343036396563613936623965 -65366563663237343437636465653530343132663561323934633031643730323030383035336363 -34386330653532613438343764666236356136363832613963376266623864653965303736646563 -37303965376330396634303636656161626239616164323537343539353836616631653333643966 -33663937643732316130666238343565383637653933336134346365343233643866633232303736 -61653564356334663565323565336565333137366238393834303766633362383264356539656362 -65333739363863396533346634323139396461333062376662623432626266643262643534653439 -31303162613466303862626636383562663561303861386339636632366235616139656337623930 -66336639636465363163393761323331333330326533366430396162366565396361636533366235 -35626637656536623363376136626535343334666333366237353736303232656636356631366662 -36376130643030373033633764343239643736633038663065316362313334636532613761663036 -32373832656130663233633164626330373536363230373437633531636531383961663738383365 -35343463336336303361343235313031623966656365323236333365633364653664373032623934 -35393339336636623437633762623261376162623538373532393239636638386532383734663338 -30633436306666386463386631373438323536663537666561663635313565666631323539656232 -37323337386264326531333930383839613735613266333232306665346561663439643130636562 -61313936343735643436346339383439366162336436356233663061663066393266326164636363 -64643531656237333234313732343161333736613039633835303465353063336365333536336439 -35316365613965393435376265643230613736316536636633623964323239363330663636646362 -65373132313965356135656131316230373631616339363433666632636234623734643834653065 -35653436343031396136353862643830303933653537323731353637656637343133313265646661 -63356136373566373032396638323033656265616234323434363734313335393032656432333166 -36363563623131393165633165363232383964313563363636343339323534303236376665316361 -30643662373534613434336261663235616339346564393366383232336665333265396132316339 -30653663326237643237393865653139316666366430373137303161373563366136386264643633 -63656336663239623630623331636638343933656136643836333433653364616362653434363130 -31373262633365313538343731633362343439366463623339656164356461393831343539393965 -30383539656633306133353336666666373961376135386132373032333232663161316230373265 -61666532373136376635303461626534343134623734633639313631356536353564376464373364 -65383330373364623966366134613335646232386565333635623131313463386465643433383731 -39643664616261616264393263663863396234653733633062363566363063623961316339376465 -33663235616436313936383532653338626562306439666630616437333839353337333232333134 -38613732336361643862333434353532376563623037343336323730346162623430396662653839 -32313964366537306633376462363137343939343435333537326562636436373936636639386663 -31333862396534346539653933663539616538343864616230343766353436333261613764303935 -35643936363863356161643832393264633133366331633061633730343163356262376264666237 -61306234623236383735643135656434333832366566393134646164363631663866313037363739 -64353463646236316239386335343864373832356661396261393731613934373230333837346432 -61363362343738376666353137313537663433366130326461353930366662656636323365656537 -37373638373435656232313462373036366563646433386137663832623037633865353031623737 -38636639313231323835323131633261303663323961366263363539343162366465653363666362 -64333434386337613136653132616166393437303235326662363863313264393333396431363832 -64376533316638393637336236623936316130333362333938623566383639623733613965643763 -30386565393636356231363762306234613438303136373932663763316666626239323765373138 -38393063383636303261373966333537313461373131633834316564316661666538613165363036 -39343935323563313265316661356634323735613137383563393237383966653662623665613636 -62646362313165363834663063396430636538303030313838333364366435376332613535306634 -39383831386663356339393165666564653765396430393539623430343064373265656461336335 -61316334343061646466346137666133663061633134316330373039643932336534356435653566 -65636635623431633530343265363031623262613030643836646161313739366533343738303765 -33373431383138373732336538663539353332316562353266346165393838313134353234393761 -34373565353163376565383532623166623631363334383661386635393238386663313066356234 -37393238366133346335633135336634633432306463393137663536363834623931303363306534 -36373962376237333162613732363734326562656532666133363133373239666462376565333563 -64346230353538663434306165313535353336643635313863623033373761333933396462623762 -31636561363736323566646136363735666535633230656665333139626163663164663634643636 -62346564373464373961656561626433613465386331393933306236623261393963373938653036 -64616664623034376266616431613337333961346431363965316435373863323735393132383333 -30623236333939316433396238633933346537356239383139396462376132363138616638303830 -66613463346537316361316139346365623261623230616332663333326232633831653165386263 -39366333366461383437316533616536343736666633393534663965663534303439313234326663 -35306237346533663633346335643134333133323532383034326638363439306135373132626264 -62303339313933616261353130646438653336376230623161313930366337323138656362393134 -39313935666662346439653865653634633261366133616164386137653537666634363963353235 -31636131663266613532653163363336666331336434346230343830623033646264646435663434 -31663731626335633935353734386465303030626333663639323031306434383033636164343461 -36316136396662663436646530343032666261336330626439386535333035616639353261626634 -30393033633237316639376133373564663061323863323636393835396539363762373834323630 -38313361323030653134653766373335623266363434633330303631613232383964383830303763 -31313232343538616531303162313135396430373337306530393732313833616266373934623936 -61366662386565303237303461623735646235613032303365393731646332363265623966376637 -63623331663639303231383530333039303835326462373166646434363866646261303936333539 -39393736653165373038396132666433373132353761616632373737343962343437326130623534 -37353333616661343435303234336333393036376461333739316164376161356236613232333364 -34663464666335306337313762663065656161653062326166383536333364366463313930373138 -62626361626234306261343234623736663338306362336333363066323830656265653133663461 -65363766376632303664376331306534373061636539643837303039323963373832383330616433 -62653632666466653337396130663432343062333134623034343538323634633063633935616139 -63353064393031393261663738316436333530306238346235316134306262386631313165313762 -34323464626337366633313839373165613234333765636136356365623464343166303834363564 -38333838373030323632363533306462313362373931656161643138616539313835353065303762 -33626331613933376132663239393566663262333365623562626338363831613934336535386139 -61653365366238396332363030313766363161663763343062333337383932333234323964363961 -36333965633031363430386232313238653666333835613130376536616135646636656332346537 -39373135646630316536666338343734363836376531346561316235343464363663373138663365 -62303566363763663561323838393334313232336462663363323061323433656666393034626636 -64386237326430323465386336333035383066383435303139393462616132653736356631383265 -32356162666631316538353132646236636362326363343335353664333331303534376164386537 -30333930656631653165643039633333653035343439663833326530396366633538653139396366 -62326336613564393634396636333334646334373137616338643238646562653436386433656465 -61343066356236303735633938363265376665306163323534376537613230393637336462646563 -33383661363934343834306233656562306234613034376335396332313336386231396332626633 -35393334333234326633663862666265333066373235653139363761346563383262383439633830 -63336562626463623036303062623031343236613065376632386662613833666364636134333466 -62666331336237333665653837336432376161373230396139363561313763666365383931353936 -31366435343439656464616135393962313164303237613932373333663561343934336532656330 -62316238623537373434393461653263383538383033356332326236626537373161656339313933 -36626462653833326263343330333133393934343566383532626131356637386631383139636538 -38363436646464353963656561373136383865646561646231626432373161653632646233636163 -33376461323665393963366364383632656362646431616661386166663364646266636234623433 -36623630356364356437643864356137303734326333306337356136326339343235326165346364 -65383532366363613132666430346163643738396237666637373161626336316135353031616536 -63666566343731663862646539326538636535366339386134613134633434363064373561313830 -34313230343630643831613763366663313064666266346637663266356265376437303035376566 -33626339366438323662666433363264333932653432313131343338613335663436396664613835 -32663430333332636231663463393966353466313766363731336337306566623963313938303837 -33643634306135336662323663663633363265393838333163653838656365346438333630353031 -39366138313732366630623365333466366561666639323137326133383261366539633239633332 -63633333393262346332616566636337383365366437363261613561303435636365623432383561 -64666139326661303338613736623438303262653464383837356332626335393639356534636339 -35656332616264643966653262633464363137373561323663323734313431393632333534303031 -61303738626330383464646632343939646138383430366365376533356337313231363630626631 -39363839623637666634663836666633656462663239343230313738666465633933346337373633 -36636138383163313364653066623164363732316438633264393038626137333930643865653430 -37633932373061303031343762643032656431653965333433643531383066343036356637613735 -32653835663465343533366461303338363833623961633130333765316236643537663930383037 -65373037333362623566303864646634626165393430633861343366623031393038616231636336 -64333737663938363161333637663963623566656132353965383363383665373130356432666434 -65653664653131396637616432626639623038383635633536623435623932653939326230303535 -62373739643733383735623238663264613337393064356564633361663064616436353532616562 -61363565373831663434626138333961306134303930366364373335316365393238303432626266 -33613037363231386634386136356538373430653831393539613866343231363139303938663463 -62373065303335363263373063376238343537653931373563353937613436643330383339393566 -33643665346137353530663537613938323934386232366132303734643036346263616564313865 -64356537623939313532663932383166373731643232656430633764663466623764363933383665 -37353166633331616365383534643266666336323032326666636332303935336433663235386164 -66313130643265313130666139353439633365306432636239383061326562366463356464616461 -61316638663430316563323139343766353634336132346330666637323530653939663438313832 -39666234636238633431653634396466333166373735616332616139363939623037363638303162 -36393438313063303765373739373062663937633833646431636236313966623663363538336531 -34323233656166666135396532646263636165353363363064313463323635363638383734633237 -38376439366465636435613163303466646237666238316661626434626331643664353834663734 -30396236323235343761646461386432646432323133613235316162646138653265663337376562 -66366262373961626265313935323730643566373662666437373737343639306362303834353432 -39396163333566656530656534353134386233643639636233376637376634636634313862313331 -33356638613531376234356138643830663166333233393934356135383635326666646235623562 -37323237666464313735303365386238353138376137316333383863616532343830633234376465 -63346336366334643033303431653337343335633731653333383265366233333034613933363336 -38633237363633666437326433653866623131393133323238313361323062333631663031316539 -32343466303635306537383261623736303830323138356435333238316337323039636165393235 -38356237663430663335376561316464343761663766343432616631383939656132633163636630 -36623430313664326461323231383734333238623534363836626631633439666136363132313634 -64613834376365623962636463643265353763383966633039303763613363666362636338383834 -61663331313936363439646630313162346235643235353935663366393739623665303330316261 -30356239336561386431393266326238326562643633303031373834326266613735393062393435 -62646630396161663732306238326337373065343938343038383865383239613762653430333834 -33393461653566636630383336363039393735316535336236306536356661356231393062353164 -31326265383166656563356564336334333537336132363336353466613830616163326433303132 -36613635386237643466666562343636363230363961663836386363353631396138663161326630 -30646536356335343937313830386337626365616538396165343939613038616237323466623362 -31393466346532633661363233646465316535643432376132396537633263633230313932633663 -63616635383338323038363861353734306663613531343230343035326130636666393662323739 -62303261393762376636386266646436333562376531643537653039643062656530363232653532 -38336463356161623637666334396663326563616663313066633365666561356361633332643233 -35633566623437353361366437366162653565653730303231366561306537383864363661376636 -31306663366435313066373566386230316636666530396161303839646263666236623031616230 -35663932323938303531646130663964306564306661366130353635313431346136646237656130 -38646530656166376634653362323134303131626561303862303237323834326332396363383734 -65353838323363373437633766373461356261356437393862343866653165346636343566353336 -38653364616331623866363436643937633730303234646230613664623836396262373633323431 -36653030613931333666323066626161623131316561346533323035666632306438373766643239 -64346233616365386635396464626364353266633730636365643635303666356232646235643038 -31643136343036336633383763393666633964303330313039316665336637613932656633376166 -32313736323138396466383734343862646538376532646161373439373238313763323233613366 -32336164366463393565396135306437616330366631653661633435653466383036666637343230 -62306639323039323630303837336636383566643138653065343338636137643063303662623463 -36643734646463373533613465363935653066353231633965656533656363386133333136313830 -30366231396466333564623336663961376630353036303339363563396666666435363534396365 -37626466613636383334393836333938376232343138666564396665346562373833386437343530 -39326161643766323131366166326139613433313964323238363833626564663661613333393233 -37626666373635333833366265396561323638333535383562313262303638623866616637396233 -35633139363366366262333639656433393361383633393661656137643631656665623430376537 -62366533303366353165633835313130356431656565336532316430383132643664623065323862 -35313062326462303465323830373632393035626432626664633466613263383135613864376334 -66616437366236303864623331356639366365363033656536653062636563353634373765376433 -36643030343232393766386164623862366662353237326264376233333436353432646632343461 -34613564633430623734366361333966633065333139366233663364353563343536646235323065 -62396365306233303833363039653432306339313732393465333632333262383437356462336461 -37623131646166333963643265313330316561643232643539653162616639333837626633616133 -61333061616261353561326433336362646464373065623436383339636561613734393734326335 -63393135353139396539323632623265373731333833666265303939343737653663336333653561 -35613235353465373536663633353162663538663466326230336634373665333637303866396463 -62363930363738643931393661333633653734663961323737333261613438303830666533353035 -31633334653066353237303466356333343164623164616561393366383838626563363464313930 -65656630623162656137623331393166386666326365306430613832633336333835343834373031 -62666466623230356438336462616366333836616230656362316530623162353965653865373863 -38653633633437333832316665306566616634306165366261613636323763613465316662316262 -38656536356164623562613037343533613231326233366533383333646132306332663238313565 -34396363393633646330323837393236393034363338366432363264356235303936303365666531 -62343335326239383033346235343366326665393937613636653634666662623766373761343763 -64306263616332336639613735633734373333646332346234663762386262323638373837653931 -30663932653737656635323331643438636266663538616537646338353538393739663866346262 -61613131646634373831363437323965363637623238316163346230353161653032383061333663 -65393431636366336662396132383836653462636334303561666330656237616233383862626634 -38303566636337393264386131623239613230393338393132646365653532376666363061656537 -39653435613837656663633763363866366535663963633135373031303836333861323835373030 -31633737303132653235666133636330316337313634393565633130333465326333633166383163 -31303132343861393935386139303562316334356237363633376131333461366637383233623437 -37633336313436336332323935316231333338633233306632643133626438366232653232666133 -62653030663839356138643534323131666266663535313537653664396436333064343037623263 -34666361623630346130303233396535333536366438656233663761346261336362383238386365 -31616161376162386435636236383463616166336264353930663134653263323037363866383465 -39393839396165393239383662393764666237323034333434656566646662633965313733303830 -33663663343537386361613630346265333364613562336666353630356533356134386165623532 -61386138313633643531303336366263393635343362363966303265376663626363376432366533 -37313537633366636637383534366438643536313132663134663763653366643131353764623534 -33633336663266343035323465373938643236323035333436356434613139636136656363316261 -62303762386232336265326531623061646130363831616363363136333135343832623632396138 -33653963643637323661343734626434313364646365363231313233343835663765646137386361 -30356439326261356561646136316532353533396536376466636336326165356164306261646166 -35623265336464303733306364303936336365616631383034376335393234646561333964346462 -33356363656161643532353064373865623835393764383331386437613162393139346338386562 -35376339653962366262653962623239633162393964626263636536646566333236393637633961 -66633664666234326433633031313331666231616539646133396238663765323836316430663364 -32356364653864383565316638323832653163313362646430306666363832333765306234393962 -61613036303637343466303362313365663938303835616331396535663736383063653538633130 -36626435343639386431336465663566646362653731336334323438336138653539363464636133 -34373739653633396264306161353930313930333534306265656439313531386461366134643531 -30613035313235656462616439613363306232313835633734363563653562636437323464373163 -64316332346235333366663166316166613366376232636538313233363361343538333066323034 -38646638353938633437623363343236663335353732626533346363393263613561383531373033 -38333732353237303031363630636136333932393938323561373336633366633635646662343437 -34343838653230373530633661363038663662383733626234323639306465343939353935653833 -34643034353536653630333935643537653566363462353038383336363364623563356664393633 -33653765613262666262306661386537633261643066623831663437656538346466636265653330 -66363362396366326566346439343033653565326136663233633130336663643836373139633533 -61393234306236333736363664613165323466373130386331323063356266363163316331333462 -62303161323633333964353763316239376538383533636437376530313534303034653837373635 -39316330336635303963353330303564376237333233376261613437613234613639396235636431 -33663165616135626464633335666537643438663831333735333638616337323131613064633131 -66616565383366323132613365663130653765383161333563376531363763653661623462353537 -61396563363161616336613435336432343963316532306232636530376631353033323466333762 -33643134393534653561326237643532623534616465663063633166633266643033326438626539 -30613235656232353037306538633736616163613137363466616564306139336264626533346337 -31373163383434333361666466643263666234353266313237616633366465306265626266633330 -30386539613839646635353937393639343637643337313235626366363661306337383866363033 -63333932636461666337323932333036333935343739373662316661613139613461663961333230 -30353362633064653037313265383166343734356562613866643762666135636466396166633463 -33376635323263623235396162313461613431616264333536323934323964306263316265613437 -36333238646136646338363432626161623232353665393130323734316162643731663430383230 -38663930316166356232303635366639643730353261643334323664306236373335656636323734 -61376239633161386534353832613131613934303535303761373934343039616664336564376537 -38396438313338376435396633616232666338393862643862643338626231653063636266393038 -66343233303535353130333066613865656132313165623764356532346536663563636239653835 -38646162376166613133613939303566336533343333653962646563666533636164623465336263 -39643931613538663930316462626633643038346165333665623332633663663237636665336364 -39663361346363633135346534663732393837613364306333646661643263646134343230353131 -33346166333437393634616631333939336237346336396364643265336534666336643263383137 -63656336326631666637656138323430376338613563626361376163643034323634663736386261 -33303839313165373930393062653464303934313263316262363231666561656436636232386461 -36326532313464316566636362303032663762386333613336346538623763366366366439326565 -63323661346137626461636331643537353431666435306337356538633864616237386466633763 -35393066343033656561396130386638393062323266346566653666373230306665383564306239 -61356266616232333439623864376632383861653362313566656565326565656664633963323431 -38336265396439643631306361623531343164313431336132333634303031333933353530323338 -63653731663338306166633162656662313762666362383061663362313633613634303866666434 -38346535643636326535386131656466353565336334626230646432303638336234393737656233 -66613035346231323039663561363739623665393430623065643334396566663265663532656364 -62363437326466393966373365383439363666633863346566353230353362383638636439633931 -36393964633439373933623135323335346362396436633061303338386263336263306535613332 -66653134306431656335356465333830396662656663636532623364396533396638613965663336 -32323939336335323438383439326436646535353239326366626637353862333530353763343534 -39356261353233323665656238643736343939363163663430303036326266613963303131333632 -63366563346365356336353062663564363331316461656333666530333563353866633062306438 -39323538393637633331613236393234376632376639653364313563386632343764653233303461 -66636637383561353132666639626231356466656264373736313264653565623236323638653165 -64396661646465306362653430363361343433663565363364393033303232356662666536353932 -30313833393265653434343431373162333863366666383735303061376538636637616664666563 -63313964616132613534666638356534376639333766643262393834343435636137346362656266 -61313963663965646539646364353564343637666239336334646663366331386661316638646239 -32643562653636336463636531663637393133343236333362633835643864313738373432393466 -62376233616463376463633833363334363132636231396333333363373765393736396331633735 -39323032323938393562396362613332353330666134616239353566356336363162316139653037 -61373763386366653462343131626338376336626137616663333332613237613635623634626365 -62373366396535633438323332366131386166636265336439396338346233363331626638626535 -31353139363131636330666164616537313032353936653132373230373762393763363039623036 -62643033663731616638633639623863376565333561303835633539356462666632356364313262 -31333333343837303066626238316661396135336262303336616564316461363434326538396666 -63643137613833643663653362646263396634383739306638386633653164363836613936363265 -39663734613564316132646339646336653730306637643738613934306363613932623935643137 -37323462626463323037353138643439393130616166613139633561343534656665306634666139 -35653337373662376665323339613161666563626533333438643763653931366663343762396163 -30306264616638353137326463623764326638363538633937373064336631643637343663616235 -39353266643063343135383962633934656163366461353839373362636666313463363931343566 -61626332373231333333623538366330313032376539623862303736666661303032303764376361 -66306136653930313930323936366562383636633535346431373730383433613634333439393637 -66363734343035663232616462373436346361303835373832356133653764643530343166376234 -36333135623765306436363030393466343430373937656662356431656634376137643430313866 -62643863316336313865313532316637373636376463333166643038306465343862396565653466 -36316265323731303634613666623631343537373435653138633735343238613564373466383562 -36386237653336366261366436623664373463663135663532353737386136623039353632666536 -65353234333737646132303432653234393964653064663063366364653634336539616564666562 -39306635336561373263666663623266663037363761623234626164613737656631653237393065 -37343664306136653862613133316337366433363432373335376438613834323164326631393765 -61666230313831303837326661396364343066323934376435366334656638376365303933376436 -35623565363631326262633863613331383563356430346264393639653732303436613639353234 -62343566326139316237653066646161346434396464343938663061613834313438303561323730 -30326139343861326237653134323937386336306261616631613231636439376431636535366561 -61333536623032616163383637326161316261306161643064623261346531646633353962386232 -36313664326639363033316335336437346331313664636463653134626265386431663261623336 -33313532643361393339373965316433643735323236326331613133383262336638323665373132 -61333139313635623863636562363538396262623439633861356264653566346233336562643562 -63353034323065343563366538383831346233356335343561366262623230333335383366343335 -38333030373636303761643534626165346365613661626261643565656431386139346236626236 -31353938313630656664373632616163646662643432326533323362356364343039366165616632 -32326661653366346662313930396635633939653066363531356663633635333439643762373738 -39303432663335303533623538326163636265316231356666323630656532616263623365653939 -35353737623063663434316361316466633264623664386363613663656236303330633337313564 -30303463386163653033363564346437383432366332656536343532303034356633303363336462 -61396365356462306531366533356366376465363134383730383535373337643531346664313835 -64646561636561613139396261373439393265663633343233646562333365626335386130336139 -38633535666138613566653337323164653436306363323138306335343762333133626130626639 -33623262393037366239376235623332333536306134623163353064303465326564393735663166 -39343636643862346533613038396530363063643165653834356662656665316631353462303131 -33306234656634386236326338303964636464356137343337386436646336656663663834373730 -66663664623033366562373530663736643765643862363136333863633236616636663838376264 -64316264383234383231353036303434396239343536626263633763336535626363343139613766 -30336439386436643965396331633331666361616130313938303265663936383135396639306237 -30316131353438313666353866366331393037663136376130613731613935616265643737633732 -38653662616232343035363963323431313566613232663039363232346362373032343231633566 -39326635613732303363353539623134343838353666336237613038323064373762336536663036 -32383539613733656162353563623962663662303931333339623236363838346365333466656531 -64373630613731633137623633353239653837306337303565353962303462323961396563373463 -37633233366135623031386664393833386265613265626664306162616230353933626536306432 -35623031396166396131396339323864373637393838346465343262303335623064396333333061 -39663231346432623936376130353334643438366437653732326263336139616161326438656633 -32353835373564343637623335666465636439653334346631343239636230313030643962656433 -32633665633437393065336437383462393331356334363764376339636634386663313266323133 -38643134303431656133386237643163316132323163323934383131393234313537386433303530 -33356531636431616632363634616334343530363735393334333133336335326330313539666334 -32613637623431313566346535333434356164373666393335633032653065303235353266633664 -33323566373365666530393337636265633965376232653735343634306662323964653330653536 -64663365313530323935636238386339363135396337313562666532363662616534613637663161 -66653439333439383664343664306136306265613766663964663533343036323663323130633930 -62303465626139376465353031646435393263356164323832653537633561643836646164356561 -31653739393461316366663437656234643865396266646532623766623963326664643137653738 -39613939323737316334323765646161356138366631326662626666363135626136313633663365 -61313639316632663537326530613261366632376135643766333539313639656431643161353232 -65383235643365393230626532663935623834313832636530653639333937336136383933613135 -36613134373234383236333966636263633035356366376432313266356561323830623830663335 -30393064383961376561313865333533313133346265636334363962623361646265643936396434 -34396338333135656363353663313830616466393562326264336638373264646566336464396339 -35393934613336666263386365363666326465336661663030396134663063373863666437316638 -33333936373763363939336339313135666634383965373038383466303039356238383963643063 -66313063653562313238313034386166363738373532616237313961633735326532333966323934 -34633432343136613237356165356334396234666637653538646666313166663933366132353966 -66643633333136643562646263383039303038356163633030623534653565313066663837336533 -39666539396335613733323334613737623935313432313366666637363262376530646634303364 -38616531323635356561643764386136306539623934323338356137363633643235343562353733 -65363037336463376132363764663832636365306437393631346566373638316466393738633231 -33333764386236393734636635643962613464383031333166396434393739323035323164313166 -36323838343131303133346333656261396565343531343636313133353632323565313663616466 -37313166366461393939383363353533303533383961383061396561353965383036336432666236 -63623737666166343064623931656436333361653463666463346166393762303066313561353466 -65326666323431323262353837663264303037323938616138356365343933646133316135353231 -38333336626138376236353366376166393937666434653932666630323566626539656636653538 -30323136363066343035313264343165636235383930343665303566613837666439363736623630 -38636562353935616531303133666666653037313533333932306239396239643832383730653036 -65646433383465353933653038643537653339323930653732313435393433313137653733663633 -65643130663864323930663634396338633033633161386437316531346132326364646665363565 -65666633643239336662356631633461633737633735303930313436623464663463313834363763 -30666561343761336230313761373934323761303538323864653636623639623961666439326531 -64383538616331633437326630353164626163376532346639323634616461346638306531616234 -30343234643938613261656136383063363531636162313864386466326137623964303530636532 -36306439646530643132343930386163653836316332306663376139666633653837653030373239 -62636366356166373439663331633234306663613065393566653538333938356533623738663731 -30643736383266343662316131653562303035383939353830613966333433616162623632316461 -66306666663762353462623433356265366362653839663562643636383034623262396632393431 -31663536633532643965623934336631613931363866336663323061386537313665306666396637 -34316634643432353338303639623239396164363462643738376533356230663337396161626431 -63653438646132636130346464306231663738363262663663663932363834363166303664396362 -61316435336132336331623936306531386233663939643438373334643531653337613639643637 -65353066653932393965346333636438663732343230623131663065653363353431633630336632 -30396438653061663834336638323561313461613863613066393061613631356364313465326536 -35633533616563346564343335653831363965333061363436383434623261636464366432383530 -37613366316435313238326564663833303663633863356562336264346238323865393362353333 -32383834646663393835303233303139383437363734323732313232393033383132316532326230 -30376336306431633164643837623865383436373061313965343839353232623663343332616134 -66663533333766613139303365396166626664376261356633383737623431303464336534363934 -64383164383334333135613764663163313331353862323937393634376363323731643833663863 -34626164386134313466383330396437613631393464383536623265613033663032316663383930 -30373366666432373530613635636337653564343830316138666335653530356537306637333238 -31313762323637323833363632643137303063353262326162656665336236343461326532656633 -65656432356437623935393538303839313134363030333131623764666133626661356430663937 -64333161393533363136613130376233373766363730346638656466366239346239623233613866 -39376461613966343333633962303637373464336130626366376565376536386164353834363536 -30343036636432636235386239393161313962303230643633363965653830303066366565343337 -32376164613833656461383664346239356135346265656331366431666461323266613561666331 -62373463373139386237346331663534643731373161633661313230343030353562303133333036 -61656637313639313863343364333133366163383862306565333937336132323764333835396132 -65616635663932383031316636383562633863393863393666653038383965643563373365613334 -32393732356132323164653030613839616237663831396261333332643031316464353666386338 -33653864373966636562383163336565333531363838353365613735653534666263303164333132 -34313062653361363335346239313764623830376366643439333061326134343230666130313539 -36393735626138623737633932613765373231376132393537343337333963646532373138343833 -37353736336332353562396434373831333263633835353337633663323437663764663736363231 -37626230356238346263623738663063333933303362653332363931363139383637643064633733 -61313639303264353662386661316534346336396236323031613237363137323235646537633636 -35363131386663653066646563383630616566353338373133653433366661366430326261343061 -31646537373338373461356236356665616338353361376634333935383337633635323766303565 -62623261343065353831646331393434386362323963333930623130396533346264613363393635 -31366439666463663239366639313034353831326561393133313438633232366363643962346662 -30393738323162333432666164623334353763313431306130363238313437643561323733373737 -31343031373730303466613830636236313166303033393961376163363663386637336163616536 -36343939326537366464373035376133643262346536393066633734653131356461353636633366 -64653832313332656239663361353232383037613562353035326331666534356435623437393033 -38333463356530316461313831343937313033323934656564623535383433636536323064656631 -35356365646431643766326263336333333563653361346135343662636562306330336630316463 -32613166323462346161323635356132303431393163393933653964636634383966336565383334 -32373836323432363535333732343863396137313932336633333532666366373632373063643865 -37333638643534653139373431323738333362393261303031623830356435363862613638323131 -38636333313261623032663236666536313065646535626437613634316330653836343364363231 -65306330643633333838366166663239653131366230313261316238626166353637646439643439 -30633335336165383131303735353863393162393064323763376630366137353164643933323531 -31623031363233346532643037646463333363616435366434376533396331386438346562366366 -32656439383061666237656163376535313664656664623661616532383565343138636263353162 -36653433626139623134643833646236666263353730383165353039646563623661396361653233 -65353632626363623065386236653934313662633965393936613738323236633134373930333464 -30363239613931333339616663326565623635353733303939333038386232616633313639306466 -30333062316533643562313435363764323937666265376439633639363562333164663132633761 -39633339356232356633346130356137366362323335343231616430363931656136396232663262 -36663536316232623865393438636238623437653236663165616662373735663164396330343334 -39663462373335396239353663346263353237303335343863393866323434376636396334313064 -38616532323237623335376532363534636430376330383266393331643936626431666431656434 -39623233353135636266303938383631396563383134633632613036393837633266353866363265 -30323335376133626135383837653164306633386138356563656238323035613165323166643464 -63643232336230306661623162383433356138393563623963306239353561333636656136306662 -37303239326535656665393533646135383736643631383339623264333232613937636465303732 -35313930356134616465303635663830356434316236343164303136663830643864333363363961 -63353066373631333130303732663564346564613866636331666437333834666534393365643761 -39376430306561323033626464646439633638326538626262353439303061616236393432306330 -32353063346431363166616432633537326534653237636537633837643163313934353530373062 -37653733363634656438316138376366613162313164313935363437336136646133303963656537 -38323133363630316233653563363837306664386462393063656564303436616332643531363262 -34616637313466396434323662346634366137396361306532616364623533393135613838613563 -63323761643635313565626532316561383563383861333030323564373465336261653263623332 -32353263316635353766666339393531653535353239373139313064663830376466633437353664 -63323061303337353430346634313166643563313361383135326435653035343536626566646434 -65643730313664663035336432363664303663356635613134373562363637383666626662343564 -61393634326363666535316131306134353233623138643165396232663665356439393732663237 -31623134393937326662613434666230613630643937313736646536626461386331386563313364 -38646365633431613437663438333432393434323634626330373961663433333534326366396436 -66363238383434323365303564316366623637363936363536613332626137306562373537633838 -62616630366164326530663439373464396263373666376135643238343166363433303936386437 -63643231623433313430366636396335656264306234313232646363366566386233326438663430 -64636534333563363839653034323436656636386437346234386264633965303666383837336262 -39353336396137343034613966643834373034386161316263626364663866376534333632313438 -66323633613230616539313263393634313537366633633336333730633630356637373034343061 -37393135363636646361616263616636653837363963366266666237396665653130663263313135 -63633837363463616438393961303962643535623835356239643761633263353330333733356561 -35313332633135343464383662303264353837626664343731333934633230646637303235383030 -33623263656339616536633039643830303366343935666532616361303332316633333164353130 -30613161346666373934653933383965316534396162633433336361393066303163656365646339 -34343764666338356462633261393530356461386363643638393134363062393966386531633662 -30623537333664393539396436636438363032626131623438666366316136663462313538346134 -64393962353162323237393766303737356533656363363137636431333261656239353936353131 -37326361376538616135333131626432633638663539383335666336376466313065663165383938 -66613535343162316634343634623035356439313165396235636562666433343537306135323061 -64383538373930633433386530346366626536616137663264346630663833326533626163366630 -64306131366463363232303664326537366366333034343931393130376164646532666461386462 -32373436383332636362323531653534613362346638353739333530383837633665333466353033 -66646265376138636531306435336466386565383436343039373334613565636238393763653766 -65623263326565383661333837633933623135633363396464313034343439376236376536633934 -37383464353132663362663366373961353930356234613131336236376466616164313037346239 -63633333633836356461636566303263396161623337393737336637353837663663326231356436 -33303932313137653434636338363131393132316461633437396266343166656361636662666666 -38363562613762633863633537323334313832643530646131633338363434643833303166613335 -31653966623765323161646335646566636261653764616561363038393136373532353462636638 -37636331643765616231616538366238663136343031396131616663656237313238393237343565 -36393231636134643964383563636563333965363535363233346638646534626533633563653561 -30393635323737323064373437643963363331346235666435353533383662386466396237303431 -38373333303262303761323062343763653865623832313138353639356631626630663436333062 -36633261303637623565613030656234366337626662636535353336333939373631643033376263 -61313230663465653565663563303538383765393865303632613861353639323030636432613139 -32356165643433366466633639396336346234393137393133303331636332343235336430393562 -64383837386664333330373237396135383532363065353539353731303632323137613431353763 -65343136343138663765636465306530346434613365623733633930386236623233316230653066 -33386634326139643062343164623337643930373965653430396638313739386230646536363736 -36633562316635643236636431336662363262346335353937386335333763633565313331343936 -33393536336464366162393635356263363637323765343733393663306336306461326535366362 -65326231373864383163616162366264343761616339623039333265663262333335323333656665 -65323764623061666136646438376436626337303664363364633337323162323133363532303165 -30356565633838626533316535343531373564343832326432653331313532633963643363396538 -64336666313466313732636236623366303230383331396131646366666466393031363935393339 -39656465373962346538616639353139393762656439363032323431373436316536653934303234 -39393861386536343934303064393339313139363734386136653239356634303562663234653237 -61383464303432396639376630633538326437356434643765616166383863646332656630343664 -64336361316264656165623236393437336130363934306130633264363362313463373764383364 -35616462613637386231363366643465323436376634386265656138656539313137363466396466 -32303963393331363737313666396531366266383864633863353165663032303639633035663066 -64333034616464386362653536633932343861366337396239666136356530623339346539366537 -30336566316232316363386538653561383131636134336265373066636464613866333333386439 -64303130616436363236633439393836303137396436633163663636336432366165636338333766 -39336161623834656530623334363633373937636334383166333138626631373238323436646638 -36363130323564346639626130376366626164373033326430636162383438666166656533663334 -36373431356264353332653733373766383138353761633161306162633638363663376265386466 -66653537396233666131633730326338643834616233613436393130316331623365356531636135 -32316161376435353763343561396366353437663563303330393432396362316236393333326136 -38643133333135653130616635393230613433386238333932396335613365383161613766643239 -37336139336432646361616431366131346533663632373233613061313339363230393339313466 -39336437623336396235653765653933643662626465343038313034376132663739363831383736 -62386338346433376235646536646663343133303134336132326432303034383534383333313761 -62656366373962363234343564303737623636366535363735306230373063323035366633313031 -37373265613039316465383937343766656338346365323563656532306363363038326366336366 -36393637303764366334643239613131313136613035323664333934356461396639333638663733 -31636138616164663032306162343137373532653334386463383531383365393861613665396661 -62383661393433316462316663656536653638356331623037336161313634363931656361656463 -63396263373934346563333137363339613831653838623863316261656439313132333365373364 -62653962393831386631333236616166363964333339633534613434366438343263653863636663 -63616238623432353731653132346139303365653034353834383361323738303964623239303564 -30376531316439316532306334353566303333383761303733663365313763333234633737396564 -37633236623431656330376330333230633238303562376230663036353930633730346634303362 -61346439656137383762316239366362383338333937353934313363613933333664363537623665 -39663036313134653137313466373433393563343133636230383839633336656237333461656232 -63326537646562663533306433313438656335303632373566393233373534346131393632313064 -30616533313430396235376466633836646137323965623566346638323461343161376363316563 -65333162626433326233333461396630623332383932393562363130313632393537366532633233 -65666230623434633164353134316134353135306262376638636366306635643466396236343332 -61356237373930383231363862666533333638333437376164363838373939653165626538656566 -63356231306334383131323833633130646237376566303831343966393265613264666534353966 -37346165626531383830323232343661633139643530353731323832316637353165376631346461 -63396463306434386637636230313262316564656366663131643939616534313164313861353933 -31303333653631633934653635646437343930386134353865656461396530313232653638393832 -32356131366338393535623231343333646161336138326461643633343038356136343932616631 -37343933646136393262666166633462336232643634326636333738636666303239303962366432 -34356636623661633162626265393961303965353630393032323861626135646539396639646266 -34613831636435343138373139363035383262303739386333646531343530316432386262303761 -31373061613836653961393762366535663730376263633632363361613539336538346263313035 -63343331303466383362323338623832346238643735303436636534333836303739316162323865 -39323661633737616563633966303762333535323762373434373336326261636231633235363965 -34643532633431383834663530623039303137393966643564636464316435356662343961633064 -35313862323137353637346431633331663230656466356362353835393639333561343439613236 -64376162633334333130356562333831643337386331663838386266376332313465363164633133 -35316265623331393762633733653961646133653737383635663838626335326366356132353730 -63636333623061623563383265616363373030623537653230353762323263303761343339636335 -65626535366438383132666532623165373230653835373037303534333133376237633765383532 -34616264643561626562316233623565396437663364376331363933613762626430396534323733 -61633933383433366138336538663734343636326439646562356665356134303038653930663239 -39636266623161663133366132656635616639376363343239633461366331373965366433636163 -38326339313630653536336166623664316331633536326139623461356633386630333039303061 -32633865663063653830383936313534616538343631653663363430376664646661373730376537 -65353331306230663238636334333330333933636632316564656138373161316532323635333234 -32356561613066303038653534386637363135626562353135663230313766626463353565643631 -36623765643139323831353565306432306566663164316166656433353634316232393834643662 -35326631313666336236323136386237613466636439316563393036613531623938353132393430 -37383339636166653461303739646332623164383934663164343038353565376433306334363763 -61393036343532383438383237643930363733656230666435323731663065363239353466666638 -38326536316233386236363334306566366232323139303466343635336637303635633037626136 -66623037313631353936383834396564343462316265623864613733363930366430366235376238 -38626232346363316435633034356561313930386665333765393965643634316133613932636663 -37393361303539313333313366643439633061633136373631336266326366353861643062366230 -32343061386336653161616366303665346535613739616166653439316234616161353036306535 -61613831376537346137373161663864323831653763306466303966653862313635363362626236 -66373964623836353532383338376435363765346666353831353663383463333935333664383834 -38363731356361326564613738643366383830313037306563303538343934613265393963376163 -33323762373538343563303361396330386466666133623535393362373331636335363765336530 -65653331663766363566623030656530656135343738633764376264373430313565323763323766 -64636665333736316161343966343934353237613134643561316636316630643064363635626132 -39643032646564633666343761313462346135363366353765323436343734633066663030616636 -31646364333935336633373864653763386138323238663738383134313562353132353833633932 -62303263666430363138313939663666613731336531646462323232386562366533656165623832 -34363836393066326138373734346434383533613966643362633966653334653363323335643838 -39623038653636613164653762376532303863373038346437363765393335333731383431646665 -63333165376361343932376630306365346237656366303536303061383864633133373763353437 -65643962396430613761616336656337616465616635306566666665393964313736623034353933 -64383238613836333261656539383232633765333464343763386636376635303630346634613436 -31666536386633636439613263313533613061383362323533656262353534333934656637333463 -34386438373033363732613334633637333333306364303436626633393935356233646338626630 -62333236383662633762333932336637656261376431353839326563363664386264653931633434 -34666235323636333262393761623864326630613832653637323338373838303365353938633766 -65383033643535303961613738353538316530373162363331383639656561383430666334343932 -30323564643234313035656536626338303365373038303263626238343065336338333365363334 -65323831383339616564333132623862306238306137336435366431376166306437326232613632 -65333937666136623565323432353335303434323731663337396364386165656233323335343866 -35663730323065323931306639666537396638333533363430326432323837323363643266303239 -63373532336263353130346565316162383332646630663864613763633038643439363961626531 -34616430343661613638343639326631623430313639663139633333383336353462663035313632 -64393530633133633835643331346461303732343264646232663265303531643864366565636634 -30316365356263343232373636383166643138373565313264353633356461346237313837323138 -31346539313332393337353465323736396633343162323535316634366165366263643230313735 -65383532303733383665643438643230643365616139633861613637366235656331653837383964 -30653961393464323661363231646639326662353735383438346633396535633230663161363538 -33363065366463393034643636666533653962313930366265663338643434366335353762663364 -30323237343732306463613634626537643931306665333435616233393734383031626364383037 -39323536303864613364636163333234343363663134306139316162373261353334306661333161 -34393337316436396534303131306630306637623539303435346363643731323637626532313634 -39343363303666616262636663313735326238323039343736333135333834333030313866373166 -32376361393764373533323638303161316133623732326430663364396163653033323439356366 -63363032316665386261316136373534383230383465666166323163353336326531323465336463 -64373838356662323338393664656532626431666334663631613037626433383239316638346364 -64303564343234633734363162373263363232346662613137653735353435333636353463363832 -38373363356533343639366364313762323365336132636336376337313632343534323537343463 -64303435623936343932333064353738386338323965613562316265653237323264343463316564 -35336631306461333031336332376130616438343132396639383762656565656163663566386333 -36346664663830666463396636633834373665346161643063663430373134663532633564353962 -63633433663430323738326137396135386366356439643865373262356466306663353532396433 -66663966333135303463343163653065623634336532343261396533396139656265636162303164 -39643765356562383665653837336632303135363633343031343730653133663164396463663861 -36316266353338303134396133356432353435373130313831633135636631313432346438336366 -37663939616535373330343764623536386133393861613538383133356362626534616435613634 -30663932616337653831653339376436333962613635306165313365643431383339383038343135 -35353735616239653466343735643336613031376130366464356361366431626339623638323365 -36356161613037663638393863393963383235643531346532633434356635663863656132383866 -33356366623234333230353264376236616630376437393535366233316237613136346633323436 -63333536336539353962663839646163383362616638346261613234343462333166643832323339 -31303339613430393266643365313836316432623634653634326534363863616630366632633336 -38373339643466666662383861323263343663636230333536376133336139316635626435653933 -61363932653230336164333332346461373735393430323861313630313233393432386532396536 -64383733356266653835643439613334303435333762653333323136373533326162383130666531 -37643139376235326632343737373364333935326536393339636231646533626331333530333738 -31363132316439303964323239663865303734306161356637393264353965653663353763653961 -37323063623562633463626664353235396665306631343234636230363865643635633038656134 -38633139313430373334653435636631306362343230383761636434393862353839616466303262 -39373536323436353566306130643162623166616438383439386461343165303436383535336332 -37323130336362303334626634386635343135653038646330326133343266663533383231363139 -30646462353033666461386232356239633833306431623239666637353430323862616133636366 -64616363316639613065663238663163623735316239623536626532346466653131376462323932 -38386666313565306438646565336539666161663163616538663630313435313262356233313233 -39353333376636363835666638373030653630316566373264333366636163663531386166393262 -31336433613465393935663338323436663536376138363161653164306538353836303866616166 -31643364326532333765363235646436343230363533303831373137303662363862656463326265 -65333838393630643161613036306339623566303830343264366265373133356132313935613064 -38323963393038663435306566326236376134643033663139373036373030353837313966613865 -32663637366434643131656639636333656363643638646531616137333861336631656662343635 -63386533663662343462363762653332643435353332396265366234376466653331616139383539 -35383735666137613230333638376133636532356264353365376465313139306336613334623365 -38623235623862356130653839356563646537346633633636393936646233343164663036613934 -33633138306562373364353163316662326231366463363162646236313835643961396163366431 -63386566333930336136623765616661373061383664396432656464666436363235383364346563 -38643462313537613163653962333535383535363266396563323164333465646466373830356362 -61303439656230383461613035646562336662366366343763666163386261306337613166363462 -66663436366633356531313331616438663435303765373533383939666264303532336362613335 -65333535626130643962353966636538396534636662346362303538353438616365343239346137 -64353934393661353130366635646565653265323064303930353066616165656333636530613538 -66393539316432636264336332363632373333373964393062326438373430393633633762303031 -39386135633464376265663765643865396132343464356635656566303232346332373434613662 -61353437376335333265363466623665373761656461613166316334623266643836393263613265 -63313830373238653065656538613436303639373336363636663364373965323938323436343166 -30363935383733303166306130303230393566313138343434633038396464333034326332343365 -32316166306634393737343630363435356565383036353531343962653037363061363237616466 -39386464363065353661323438623764633937353963303731323836633365623938316461323563 -36333263366365346134313732376166653164393565366337333733613132346631316338646331 -64663937633731303335653838353531646238663162363635346433353562373762626638643634 -33376465633833653066623332623866636338646233636432356532303830633763643464323331 -31333333313065326131343063326161313363326537343030613766616164316666653964666536 -37333535313732376539636266333466313438303961303431383562626237393431396561376332 -30626530626662623166326630393332633434343064613165353462313863633137396339323465 -35366331613361323966646361393139326532393734386131653066323364346331303362326563 -64326261356235346164356532333766316134393636333562643164393034346438386433326436 -30353438353533343630626266316464326539373437313130303161343038373336343334666231 -31393137656139326564386631326562613035316261383265653236373730386234346564303661 -65386333383330363862346264363830623839333039653231663634666430653462343963616238 -32323732343631353036353963303638623661353965636464313866363963323166633131616130 -38313966376463663036633538643839316632336235343837393138383665346534623837393134 -34633361306637366432346262323431646666626139626230356431643164313562306165656563 -64313438313634376334663862306339326665353865343261393565383162396362663234346332 -61656537323662666539633438313666643862316539336663376361646130623932353235396235 -33356164636665306134373065303231376466393331653438663838316136613536323134663663 -31646139616530313437346334626635616134633061333263396430636337393065343935303965 -31353832303639383961373261373038333737356664626261333031353966373436643834373333 -39363735353662386366306239353431636335393162663736376633626430633136656462663638 -35356134323861373063333236303864626439653835633962313439363762336132353336343364 -39303037363138393534643338393534303539346166323238643536393464643732323834393539 -32376438393239633832353330646330626236303830336532313838326238333832633666623062 -32303531353365323864663461656466356630353434393162336165386363663537623561643933 -34393332393661633339366234653061636361343533633063333561343530346462323237343531 -31623433643064623932316236643433663763626130366630376433633431346433366539663935 -33643136353430363638356361363331623034613031363836663765633336643630306565343035 -65653936636366623731303535646133363066393632303766353666333066643032343066633064 -35666433333631353661653665373236333163643630386638393631653031613034653337386165 -30663837636532663939356138653735326637643532643436333165376336313735373162353263 -66303366666539343031396533623136633662306432386565393638633434653038656137313337 -33313862313131316361343661613463653432326432366132376661653366363634386464633665 -35393663353764303465643430366638363632396461663533376338653732326433353665633132 -38653032633234346139313031653534663939616635333835376662386439636463356432323633 -31613065663564636436376132663165396266613035363333303563393637333161643638303465 -30613632623538613337613161376235333432643732326636303738393330363135336138633965 -33336433356234343362366630383938613534333230653864333334633439646136616632626566 -39363031356664346263343830393633323834373835613134353831633533396338373238633266 -66353031316262356434383737393839323535373435376538643263383861666162373462613433 -33303831373433373932353333313134356136623266326438343565646365613937363563356663 -66333233353261376236373331313136353935346133336163616131613065663932363966316336 -32323665616430343232323965316534303330363863333138383734663363363931356536646561 -34623166393362386633356633383238663162333334363565636335313033313031383338333931 -34396163353930306666303534633436643031613137316135393930373465613366393064373363 -31303032353130623732346666313235376531343730626664613336336239633737626364663262 -39663364626334633162386136663266613463633437303034353966393565636366373862633136 -61323066336630626437393361376239663364393734353339303736633665623366616265646664 -66616438663736306164376437313136396266646163356237343837353463336230383061633836 -62356461393431343166313430633633363861633237383866373730333561396634303732653833 -31653961616531636562653837663232613238613566386636356336663138346163623836343334 -31336133626263336439666632613038356331313937316235323432333135376632653732663066 -38303339316337323464353231323230623436326264383464383630313065633032373031666430 -66366164623666316662623833343239363265396166613264316332613638313962333436653162 -63353530333132323061666139666137653564663535666530346331636635656635353662366264 -32333637363035356166656237656461666563646239353439626437363765396363623161663933 -61383634393965646331306530633366356233336236376437326636313936333230643636376466 -39353030303136303462386335623965363435323435646533373038353430363366313738303830 -66613763303037353830363638653135633737663563643038646337346433333939303666323538 -36353337623338326132376462613564376133626461356536333235366631663739646335333266 -35333434386439333861333135623464633135386235393633353432333337623036643033613063 -34323333353638306530386136303237313663613138306266386630663037306438393834656637 -64613437646636306230313738346463616532376131623764643339616137626336383139613339 -38653862306163323733646435313531333230353763643336353138643333326463306335386432 -66616266306664646337633866633931666661663063366265646561366135333438326364666535 -38643263356532653237383764363735326633316538373832303139306462383031643433616237 -63353566336238333434646364613537346237623338373564643064333262303437396666336331 -36363137303835393536613139613534613665643863376439306465353130323130313937343232 -38663462663130656164363536396463633466653133613238393532616462343135383934643063 -36626662303166626666343662376336636236663064373131333966623763316162386539353463 -31343835336330343235363033333731353866323338623234323135666266366365613236353938 -33343461656530636361393261633765643437626339336636353062386338663965613266316166 -66326331643334323564313535386361316330303038303235653438303936353731316435656661 -37333036323362653232353237353236313664343561386132376431326433646138333364396561 -37633731663336653964323230666535653164636338626432383335386235383334663563666162 -66613130356466626164613337366135343861343461636339353865383638366261373734643831 -38353063363639326134343533373234313631316163636337353839386235333666643938653236 -30353464303763373434393166343036333536626138323437663632303635376233353038316230 -32366666383537623935326561663634333237343234386565666636303961663136653031383265 -32306235636539313339666162363337633166633731656334616239336362636463323030633334 -61323139313963363933653533366538313762353338383832613564373532633261323263363330 -64363031356161396562626535663462343130376436666266316563346333643436663366326462 -64373465353437356238383266333465356332343562306334646666336437613534316639656234 -32373765653535343933613834386661656130656132653864326165383865393065353930376330 -37333435353963346661616134383236353835326230663335626234313439306432323035663039 -34643633663232333531383561633437623764383435363634353430316335653635373462613163 -30333266386534353462656364643562643236356136393762396335663733383532663061383837 -63613834643162356261316261666664366632356562396533653537376532633635663064303163 -38313139663638616634356638356164623432646632323762306431353134623066386563353531 -30633538323064383139373537656165396162633334386337646432653061646433663564323266 -66643163613031316537663831333632373435396334636632636434303761656363653263356666 -31336663316434666334303761613934326236323739643064643639363439343163643761303536 -63633565363864343839373338323566306437383033303165383565643035313764613663643836 -66393232383031353065616130626333636130653831326438326661653263626636643136383861 -30306262333337663766313439666161336335393932623337343531616131303066323333656439 -32396538373134313338623438626334306266393266343831383739373763313535633639663466 -63323965313532333863366334633962326564323839343836613638613234663337636434643065 -66323865626630633165333335616630613965346330643166356262396564633932383062303233 -63376632343764363238363735363763396235356630363962363130343538626264363061303763 -32666562626331343331386137636462613864356339353562313135336535303438306261376438 -33643361663964393138646638376330626136303335313135633765613762373739623730626166 -34396531616664323330376239623239356334316632663536326664636433346464363235316564 -61646262636166336632633563383839303335646565346331313464393763626130346666326634 -62643737626165653338303437666663393435343137383232616436666433313437323934613134 -65393864346636303065653234633332373334623935383164636561656161663737616664386133 -35313162333734363138626465343864333566333135636166356166303261303038616339396138 -34626533373161653862303762393662663434613731396235306630326365633631626536303739 -32646336336637303664666135343563323032393935633765326533313666616535313935613336 -61353939363037633339396632393261643837326637633934343135343061633161303138373736 -30333662626634363835653934633632616138376133353031363565613532626639323064386235 -32373937356661323435643231386362623530336530386665656563353139633333333763333964 -63333130303465313064396461313265656337363536613065393232356138653666353338623465 -30333636656438633936353630343436313531313037366665353334323766303337313637373863 -35316332333234626566313261613037343764393837373562376161363338313464343033376138 -64376164353936653165633664386233333865393266613464353534323164316430366565333666 -62316363386332303732653865636166356631663436613335316130393534353265313666386162 -63633065386461613830636137313238653965386139353633623132646336326166323031393036 -36303939396534343866663230393734633533643766323934353436613365616234653165363666 -38636138636639663964396139633932633662663035373664636134336536323934353761313931 -36373636316438343362663939663436393162313731303064316133313633346431333734653635 -66336261633233653866653236313864336365306539643164373839653538346232393362363262 -37396130653862666335376633336539343366313933623637363034613261313932323538393235 -30336562373435323735343863303730633664356261356265363934326335336631303865613032 -64353263666631343762363033333663353230646466353261353738623035343530386138333238 -61396331646639393834643261343938666335393334333037336163336564323730636164383863 -65386330313062353266386339346331663532376432366362383263613031303632393837343261 -63393833643834393136653165613937383561383564326235383162346336393165616363343334 -31626264303963373863376163623235343832633532313238643932653734646634646565643961 -33646566363366343864636366616662303935386234313464313465343139633265376134373865 -64613463633737393931646632393130353336396232643230323638643232396634623035313839 -65343565303633626435306633303731353166633639313166303534393339363135323530373432 -35333635343233656562326233633039633862386130363930346236323133343235323433633137 -34646439663661613861356335643562373161643135613863623866306230386435323866303331 -35356635343532633266616633373835376363366666326437623139313464343630376237353166 -35313561316638663166326663343630396535373633363934316535613863373539663364313765 -66363230636332313139393938363836353237323737363432393861643233633833353232623035 -34313666326338343735333638366230333639306465396134313766366434303231363039653837 -32623365393835356139626634376336383933323130343064623932343235613531333364356263 -61346534316236626239633665613561353830376466636438636131346262376664646134636538 -31383066323234646162613832303334353763323133333836303336333035393439616638346433 -33643539346339326230653064373033643433303466333534363161333264326437373135393335 -38363530336134366437323331383961666231353539663361303234376532363366353461626232 -62393165666636306565393462663266626365373266333864333533636535356465663164393366 -61646135356162633733653862343732396561343365323366326638636532386364333063623937 -65363661386139663833336361623033323033636130353566613166636163656537366634353462 -32653466623237316436303262656264626430323566616362623965633362393835343435396262 -61633235333165336263623166626238343262386334623764303339363830383963386166626464 -63343763316163666362323531386465666337363335363933333062616439326665616331386430 -63313330323264366566393037306136386132633061663562623561613233616232343433343735 -32383266646137326632613364356230643262313835333862316366353838386238343835353334 -35386130386366346562393137396232653335363230373131653864366631653166663462323764 -32363430616561646634636465346631363831356165353132343133333862643939666335326638 -33373466666361623564663438303530383532363134626636653636386435316533616631356233 -64613365316261326432366631333534313931623538363333313737373831313265653335356333 -30333630393538323336386634666539336632393133323336323966383866626165656163643237 -30386339666437373465353034353932333433333938633761363730383035366538376361383663 -31663937643538393632623134643362383831626330303635623932653135383562363435306663 -35643630313539363832663065326538393230333036373433313764333263303539376330656235 -36666536613739613138626231633465363632306234626332666132383636393230393732666664 -65363438643164386436303035396166373363653163623366303564613737643165326664666536 -34366363366338303265656639646231336133616437666337653432393865613637623163616665 -36333436303139653563313138623763656333623230623433656465333862363863383664373463 -37626361363665653562316434386238356431626539653362663065363138626333393361623034 -33353434323434313536313230663962636238306631613932626139313233636638303332356337 -65643534353161303462366335393062356332363564313237633263363963633636336137643932 -31383738383439303065396135386463323236376238383831333266313331336461306462343766 -33333034636135626663643934353562363532343966383939356661666166366265396463653136 -34333563643863616264666531376565613339643562333366643537333735363731636535613234 -32383431623166643635643334663132643265643333363930363939643166313639643463383661 -65666137613039613134356433333562363565386339633437366261386662633636386561303964 -37323366623732313731653631333038303336343632653039393939343361343066393132313562 -64643630343362633437623365623062646634396564353964386439316435323037636331386138 -35363232356332643436666638383266303932636564613666366565616336376564366466633062 -62656434633333636534353835336637623664356539633331316462343136626236643636656430 -31663566373739326133393537333134616663653161346434653133336661343139633962343566 -34663039633561623463643238393161633134616439383331303733356531666431666137326130 -61643261336339363633313366336662666337643032643365396439646133343436646639643335 -64366166626232376336636632346662393136313862666137353161393931356132626632383732 -31323263353737366430393330613535383830366131376662383537353735323439666331636138 -34316238326439303865393639383330353231393231363639626138643734373639333432646335 -31353138323664633363383235313134356562653036346330326465646463363633353635653763 -62613565333131623234366635316263353233306135633337316332616633633338316434623332 -31616639313633663363663130306630613238303334363438313039383161616631353165393533 -66366632316361343030616263616437333532303132613034656332303038636438663663353538 -35383139333862396236336435363637623331313739643865336164386631663439626538356362 -34396636386137643536616630343731303733353666643534323865656130653861633537366565 -35373030306232626236393131306335366466653230363638326163636366323039313966643637 -39386534633537323136653862346431643534333635333661623764353235636630646538653762 -31316261363532313433376333373731356233663036336536303961386464333036663738656432 -65356334646162646332663665393732613564626532356437386461653263353961313738323237 -34653562633035646639636230643937313138636639336134386263356461663933396638363531 -61656262316664313961373630373031383130376662353765373539343138666439363362376162 -34353333626439313632396439653031623438323935333032383132643338396538643937613134 -32613163366434346463656335623531356637333766303435643165303931636365646431653664 -31396231376165333864363932633662646232383462363834613063303135653132383564616236 -64346262343339393664363733366362633538326237653832376630306336313061643335636138 -66366433653265616330636165306665386561313661363533383136643763313931343833353365 -61353064376133333537383431326366636237326232396332663837366366326130306663656634 -36396238313137613237333664343330383664653639316436643264616136656261353163666630 -34343064316363303034346234306535616533333637393963326233333030646366666638613334 -64376635373561343034636130393664626132656462613862323433663737343039613364303533 -30643063336333663064633962663033623638356362333830356637343739303764343231353735 -33356432616337643563323963316132373566633939613639393061323832656164613264623966 -62376234396430363164643630313439336438363161313530346265306635363663643238356364 -62323663346562373630363365633437636662613631313132316165386166393933623433316435 -62346565303366303732643430636163626161383466363334333934373737343831356639643935 -65663739663638653638343366613763323932303130316363303161643064623266663864333836 -65383234633861373932616632313166656365666466383465633966346361366231383532376166 -36393231373566626233316161646231356232643731373066626537383966616134373838616537 -62353230653561366539653134393438656264636464333836393934383765386534653132326435 -33646665663762633830386631343030623234623538306530393338353739373032333234613363 -30313736313063393237663038363032323135653334396632303763323038316663373334306531 -61316434323138663163623461313662626366356535643664326330623836633233383030373764 -37386266343566623030643539363534646533613563656331353161343236326561353033376564 -39393765313239366337316663323833373935353635646236613162393566363839376633326134 -36646139616130316363373532326364353265656432613737316234353933666666306536616134 -36306338373336313733643035376436343763386266383937386163666234306631363939373332 -39643362313937633335663461626631383235643866323961303964656536303865363864666237 -38363833613039643763303864613639333762643938353037623337396531303162623365323230 -34636563396237386634663461366161386139633232666430633764343232623438303562303136 -38376561636365643364373737323539376139313161663066333866363035633935303830323831 -62353464323036306331323734396439303064643435373262333233313764636666363333326533 -38386331383434613736346439666438393134393532306530643162376535376637646338333131 -34303563353562373830303862653534333363626235366333363031626331363564346465363233 -34363039383838303531636164633834663263343366353166633034323363383230336637313866 -38353432303262333532336662643734373835323566626531386538383831626131373266366132 -35303063616135623738663135343738646361666365326365333335363937636536663561353930 -33346231303537363136316535366339353738643634313834653864303064626235356531613464 -35616564623036613635633635356231363835633239353862663263313364383335663835626466 -62613530636566346464633963323038656538643964666434663766633337666163353265386138 -37373932666637656666353936356533306632616635396438633066363435356539333332353031 -36636534313265353132363236383033333764653461633736333137363937643537383661613034 -38613835316465393430313465623138346366633765323430333830376538633431353439646439 -37306430616662333965643462363863356463656231643733386131353337316562306232616134 -30633939646535313465303764383738386236386234376465653334643635653330623833306538 -61646338336131303761383466363866373531346531643131653762303136363366653865373835 -61666333616566376264343265356132613534313537333666393639663061633835373336666261 -63633061373461636239333266643465626530303734333833363262623433646661666438326533 -32343330396335646465363430663866646338386539373832626432626332353965343631343838 -38343165386537633835393632333964376136333231376166386666373436616664663633326461 -66303266303939653032653330366330353263336265613738653936353830623432396665326163 -33323837333665326163326436613266313034393662333636323534613761653764393563306233 -64623762386264363134663330353730616131333433376534326432393662666631623263636634 -37653263653534366164616365393161393235613833386665636138656365326634373761636531 -37633866386565346263376564623234643439643663306633646361393531363730636461653336 -66306461386531333538393463653462636263313636663138666332353634373966336432633231 -38666234616165633464383234313038393432626639663764323038646630643438323664663237 -34323930313465333934346366663530363261653931663033386364323563353936323931343539 -35663966306435386462653864613031626630356531316132623034663039316664356463646232 -34356231356537353036653964363538396631346631363230656233336339633634626262653733 -30393061373162623838653363366134353736383061316536396139343066656365373132613361 -61376161656263623834323133306230663864356161643666373435623139346265386438393335 -39623064393463653064356239363738356130303966333534353033613065396265646331356130 -39656130383531363334326666373735643238303937623065303539636436303465653134633332 -35366562323439343865326161616336643037313632383337393664333266636464376566316239 -33396134343136326466393564343738333330316534333066626564666366646264396133363362 -30343166633539366334316333666466363438343137373530303137316334323731333464333038 -31653239386336336331383738363038326361356333393138646539383234356562333339393837 -33313537303061633231363333333230373161313864623335393739363035653432626533643937 -35393665666562336236346239336432303662336532326237336339363364643536346462643264 -38316337626639623538663266323539373564626434313231636364353465316532306533353034 -63326531316362386261306532633230313233666566356139306231633432313236393565633934 -35336332323936633231333232623564363738346533323232396566386535636666396637323662 -63393236326335386530323634303731363164363036646436326637633762643062383134366364 -34353231386264363031643633616534336339646133656337316664663561363962326637393736 -63663931383039663930313564376561303665313535396531643733356465646136633237643035 -39633764626432653838633938653231653664353162353965333461386130306630343163343331 -62396638326336316132326164636564333964343466353766333037386530326335356462323235 -35343934366365396339663937383733313030326362636262663637333630393662306132363434 -32303436373435643238346261346639613132353666616537636533656664623638303261616236 -33306532343465663564306361656433633933333038373032346462313061343761393366303638 -38396532373831323561336530653836396463643732393433376662363330663830306331663432 -63396564643366323032396261303937663462306266313963623862326231393434636339313261 -30333663313533346330343561643332363439623732393039313563323030316530643664656662 -64316635396331666564643062323464353733623336383332306262353066373234636536623138 -66393963363430666437333066303037313462643834313637343237323732346261306561353562 -62646266316261663438376437386361373866353537356365323030346336616265643261616339 -65323763373331373231633337626565613931393161663764616332616139313531646238396565 -36353565356239623438663136656535316431616364646165373530306637303535396164373238 -36383737333631666262303739363935333238306166343662383430353234636534613530363266 -32313436303338383162663065643936663338613063313163393736666666303661363433653864 -62633433646362656439393963393561373264346131656131356434616461373631333936666265 -31353065386431346136633264623431363261346535396136343761303863663937646138646238 -31396137376239343431343032613939623239326364343166643139353763393731623333396234 -66353233663735306563313532613433646462333434303965353462396636393437356137313965 -35663664303563333234623537643934616134363661313663396135306265663133333538646631 -65643164333938616139626262326661333331656538393166633232333631306239376236316265 -34643062313937313139663334316635356535626432636135323664333539313664383262396437 -37396263633736306438373962366235656335626439363666393333646364663030386266303933 -64666431653834316566663964373165373136613033366166613363626230353139376530656336 -65333661323836363765623962663364666437316632653762643562376561356233643961343839 -37343030386536393764316266333161383333393536626237626639616236373438373037343238 -35333837356266393337643962646630633862393332343832383131393438633038643664633039 -61646333343765643337363462326561343864663430616332306331393536313638393631376536 -65643165333039623036383463386532333262336234633936653864313431366232666236336365 -39373631613335653237633430346435393636623632643038363930303465653639613539616636 -66616366626564626435353634306163313037626538363632633465363336363639303235663633 -33646538323165643461363038616561393834636534646634303733366566363930353161663231 -37656432633834363766613139323834396666383233336135326333333933333935376632366364 -35393363643938393036383765626662363430383234333538373561323663316435376330613537 -31633261313838633339303566653563346666373533306465323764353562666437313762626333 -64613435666664663938613532336632313333663664656561623735366433643131313738316261 -62626262626364633738303563353765303036633666373631333465333930393162363464333165 -65613132386638623338366537343736346233316133313835386561616366356233383465383330 -66393766346166653533616663623236343166303938366361313133663932366338613132333631 -63376534656561656434303634653036336138343833626661323236633438643462376563316135 -37393561356233633930656535363065393631646265306634373361613136656634313831663665 -39363735336338363662303037646662336532373632313133333165393937643436373537623164 -66646131626364306362623162366535363732316431323961373737353364313863383734653934 -34393938353530643136633438663734323764383161656138373036363135363137316164636537 -31396461613136313533646261316362303463663261393138343230626535646261353535366463 -61316531333131643636616634356139653762303337343735653838656239323439323261653937 -65323835643238363062303265316134363365323330356231343537323765356332633263656332 -62323939303365383430353038313631663134313863653765336631653962663532323736353339 -65363234326137326438656135366333306636646361353131363764383965623836313932623537 -36656235666231313637656164343832343331313337613138613332653263366237663761623536 -66303665383362316463626635363861393130383562613031326532376139653032626433376332 -62326533613030313030323535376339383466623735363335623863393863323065306333336561 -66356565366232666335303035323630313036646264636134343532366437353439343636383162 -63643663376665366566366534636435663163343830373730363162646238313738653532343866 -39313836396466393066383533336230613366653734663933306338633437626236326264656234 -61613763336335346538636638343464343638373338613937613732363734663435663238643430 -63323739316565336632643566383830346465373262666631356133373830343566646130306439 -33383533663161303137376663303335366439396432613333656331636636313665666530303533 -38373138663661346132383538356236323637643863373135343135663462323836326631323465 -64623066373237363732366332626563633335643330343535636430656166363861613862363161 -64336661643864636639376138653932636434323334656330353865653965396432623865363134 -37633662303634336232653936303238303539393932646534663437646238356234353565343430 -63373666626131643461323033383030353866333261346363326162366339643438646138313130 -63363262353130333635653437623535666238363534386530323464343634646630356663616635 -34663035303239396233336535336535376263343133383834336166363036646562383236353335 -34623937306636633431643262613331326231393965316333313338376438663431363937663036 -37373762356331313464613437613363383864303730303739666437636434323963356432646435 -38633731363839333431333537373135623037353263363630383864616437383035343062373164 -36346432346338646365303635616534363938643763653033316639643636363966626536336332 -33323331636562376564383739326433336634346466373238386663316634353735383530383535 -64316133663935623135616163633464643764366639386661633663366361663665313533396364 -35343561663963646262326162343131313633373333643361316565373738383462323066313233 -33653564346630633535353138666162636436303332633032356435386435303234636562356363 -65666537613766356264663235663237346164323461333439656237396136373538396631636431 -63303466313962306632363464313564383565363764326238663364373665643631333239376465 -61376262643637316438626137343132343866353539393164393632633831333831336631366264 -33613734303534346263666631386235653930643631656532363063353665633631353138613437 -32306161343433613432396134646562353063383334326162623832333834376538326264613933 -32303835326165343064636635643530353738643334343831386265643634366366323262363164 -36643637353961383964313732396662663563383764646563346539393535353431356437366361 -38326536646361363931646633623736346666323163326165326665383433363832373535353732 -34376366373033303133643636393733336437386462313163393264333135343230623664643533 -61626131303566373535303238396431346235383032656435386166366365653439653766313265 -35343665366639663338353634333934616134646466353139393533326431363735643531316464 -34323661306666643330346137656635626133646265343163613639643661313365363738393737 -36636638623561633031313833313134626334653865643334623038383334303930613163356365 -35346262396164356330633066386663393731646566643730333632313964356239653163633238 -38303936336634666336633339633331666663383530393161383331616465623661383265333239 -61336430336132346264616233356636363731336339643932333438313832363365633332636132 -64366361373234326433326435626132653134663239653338376564376164666237643865616265 -37376138363230373134636564653931643030643537313533666435393037393136376433343361 -39643336646331323736356631316230333365323462656633626538653437663436303731356263 -36333762333664303332366232386332343435363065343033383239386137636333383736653030 -34663464363562663439333235376539393435636162356438623837313533393362373562306333 -34363562353430653663666433656237383765663461316364633062316362393565333461396163 -34626336636136303863356362396337346431366332373763346361326632653532613735393934 -38383235346135616337396535353238303365326663373763643963396631353533356461333436 -32623034383039353564653665313833383139343461613163643961373230646132626438636263 -37303935636538333265326163356337616666363862643232393532313634663137653630336465 -38316666663534343037653365326132333865386436633334343738393663613030646334386264 -39343739346535633065366165353835376433353533623533653434303332656138383432303664 -64303739306430376462643037313063623763323438636434366665383961306137313435343833 -39393536336430646265386537383938656533633930343535393530626135356262643730373661 -39353962643832303931613963306163316539303666356133313861353362393563643134623833 -33656336646638343838396139333364313062356537336339616564333533656465643039353262 -65616165373639613533323566383739326565313032336663303937373033373938636263376162 -66306239343039333436666563316263613266383439663939336539356635303531303933636436 -37636464656433333731343339336231313265336165643731623835616637616461363630326333 -35643661633863633433656432353136363161336163653835626330363636386135323735376565 -38303962386431646332653138393435643938663536653233333731343463343330353233636263 -37323133343064356236313963383731626537323434343738373137306662323265316165333030 -66373266333665653635653831613237306334396263663262643331383330353936306238373065 -65643833623263303762633034333630623630393632393435316532313361653333353735623630 -38333935303436616161636565343966666431643136313765613636353366393633653635356566 -39663134386638636161336435656334353731636263303938623937393737303531343133346232 -30313034336661333766383162303362653131303938613262393366376232626631653030313036 -30336232643332666431663864663335653835386666386337336132306131343732666136656130 -64313835393964303065353637313530393938383836323231633539316431303964343439653165 -38366433653063666630306666616633386265323464346635646234663462353063333265633339 -30653065633566336566343630316537323738626161663565383363666438343333616661306138 -39613538313264643262373733636566633135633534646437336431313333646134653533396434 -62393261393962316236366534373331396362326237633465343363333564356662386235373835 -61356637383631343436623830643466383563366337653764613930663531343937373435653132 -61653662366462343366626338383634313934633335363634636232313932616432653064303363 -34393738656635663962336332353435396237616462313639633432363161643036666338313235 -33356538336439626532636438366461643365633765353364343233346166373039336239333930 -32396334366661613562336664613263373031393866333630636137643862313963616336616364 -36666630303731386463636237323561646231363732326239393864353634646337343132323831 -63636233383561373564346132323038303133373161303338636163316535646337326164633931 -62323366376664646639666261326330613031633533393637363139613765656437376439353162 -38343163636263386331623761383530363432346332386537303634353738373338373630313061 -36613835623638323234343561656232366264396136383338386330643234303037316462646134 -38323931376331333264656635663033313632613666663462353636323336323038353565343839 -38333738643266356136636266313737646561663164323464333732663735633631636461326162 -64396163303334336332316133363832653363623864633330373437343638303738306534376233 -38613461666566633035666262623936623361653164336238306236323662363461336663393232 -36633162623937633037343532616337396333336235663831333632663230663037323637633539 -61346631643564616633313766333536323137616566623362333964366235333333326532333761 -31663236316634373730383336336639353032303832376264396234633939306437643135373962 -66393965353330306133306466363832373833323430336437663866333965343637313962343037 -38663162333665333965633532346533376565613365343936626665326665626535336161633632 -31613233313037386437323231386662653063323333323735313138366638353031306131323934 -39666234663335383433316564636637303333343731366334303964323531306434376163383565 -61666633356161333136373032633135333636326530326231343965333662613066653232366133 -33343265663261653231346563663333636331633437616536333666393764643735386335613931 -63326162363362383931323334633564643063353135373733306664653931323530653965336133 -31613031363466333638383437303330636433333930663937666233613035303230333538346266 -61666234346434393831396133643139316264323438313138663232643736313366653530636565 -66623435666235643938316164356162353036386535303662616462623266666632333465653330 -31626563366230356636396230386136393239396137663538646432393138636261663234353465 -62666636356334613932336237386462633062316137363562653033373061323439373032376532 -66656137616339366530646335343461343162393035333336316564386534343061336139643334 -33616234373933636365386563373632653931316366636437366366386438633863353063646133 -37363433653834636630646436313637393039653735383463376639343939306466326637653665 -63383963373935323464346334343664613363663330333864313361376366653133333666646539 -36623136663761363666626632333233636236313738373835383564313738343430353036353763 -64353362373131396530373933363839313433653330326635626234363432623731393135363162 -37376337393934336131663035386335323562336131663863373565373331633131353935313933 -35386366636466353433313163613365633262323533386366376432356638343361366461353766 -37373532303334343133316361643932386561376233613863376639663162366665336561343137 -62303563646464396664643730653566363439633837383066316561646463656530336164396537 -34643030333663636366376665613130346165356261313064623435613831643061393662363835 -33306138663633376364303133376239323230613938663466613737613636383835626430313332 -64626537376637383531386462306161356537396231353438393135306163356435666130626530 -36316633393062623934363735356230376230663232623833353735646231643535343939333066 -64616661313935613937633464323935333935356561663164323064306432616131313863653539 -34613630363738353733366639366633383432376366663862653531653865623335326330393735 -31343235623362613064316639333463306339633838306265346633303166643832633131313130 -62613635363966666666623333303564373562653065363234323061343333323939626563366161 -37306138646237393561653665373061633361336231323431326536666463323531613963656431 -35366166393764383634326332393339623036613032656532386365636564633436636536383966 -39646332376366363337656134616464366133363464356164353164663638373237386637663935 -38323436343964346636663664303361656337383933633334663630303961306639646562626437 -64383634376265643336643431366130653061643238643339313765663437636630653333313732 -32313332646464653064333030353832613961346338393130646536333431343836343262343238 -32366635353534396234353430336164303131646561653465316462336562356337653139643362 -33643431373066313031386234343666313362323433653333633238343839653535613266663466 -39306263343263316138346266373231616637343838316335336635643566636431303930633433 -39303133616463353439653535383934366133636135636239633866326139353266633937373761 -36643563663630346135666265303231636431633230363233393736353231356335646431373331 -62396138666431653061363134646636646539376166313561353339643962363961396335383836 -61636537643539643765666537333034373335613334313232366233353838663338313431353966 -62663961356635383231633863316361363366653630373835303637633738383439353164373561 -66393135323233373032613939663731326336386533656166633530376361633938353664616562 -36356564386166656433313539316138326232616632316430653764636330623437643738653037 -36306664613839656663343339653865383664316466313433623261353361653462376362646532 -33333762323266626164313436326435313838623130343062633431396534346163393937346137 -61636361656263353865626439373133393837313764343062306261306361343364346333353839 -39363862643236343462633239626661326366656231376431653763333634356633373938373735 -34393132643662336338386432613064333337376562323364626134393565343534626630346266 -32333236613464653636643030376637353733386537383334366336303031303364646634666533 -30306233333562396266653030656138353130303530396466323063656536346164633631643536 -64356462663431633364613231303562653930626437633461323138353333346238363135643538 -65626664343366346631643263643961396532393236633132616565393234373032616462373137 -37643034656432303739343263333965656432366237653264306336323738656539636563616537 -35636264356332613033333231386262663066393030393930323764356461333839313862313264 -35356261396531633565646163306435623462303633356230386361393131396564323066623134 -32626365376634323662636133613062316162366438393933653963326530386262653861616436 -32386166316361363537383430323164636133393535646662636665363539393634343638376366 -62313233613662626239323235356663336639383432373833626232663533323437326534663430 -64333530623762366233333935636332303334373832623163366163323762376337363239616238 -37326165313032346431326333653537616236373364373538663534323337616165323338333961 -66363065626633653261323765613761343632383866633436623738393733613236383633373030 -61626563336430373330376230303637313965343266653536626565343834656239356635343536 -62633030353234393563356431663866333830396363613461333161366536393961613739333866 -36303363653831396437633437343338666561336665653237323137393838343264356263633965 -34373135636334333239633738616130636437613330376331613631306435643436393365376533 -35663939666330663934633033346633373333643036313136656232326535623765316165393537 -37643131333731623634316633626264323165303734333135633364653839346435616336623536 -61383438336163343965353930313062366435376536626463393235653062313563333062363163 -32316633313239306133653064316161313432653266646635303962316661323364646134616463 -30656130306564616138626539336662643461336262326162396634326633313236316439663934 -36393134396132353438376461353663396132393065313638333961396665646266363061353432 -66303638663933373061653639306230393565343761346135363432353739313330643636346634 -62306235323736663131316431333239623636383939326136383634343666353939663134393833 -32333961306639633566663033346433313765356331376138333863336661653533303061623162 -32346461613432303739393062346163333135303939653766333331373934393161643063333131 -37396564633334633862383439356661306438653931353439623031333131303165653862316237 -38363135326662333133616535306330663735623338336664333436393963666132376236396364 -31326135613161383164356233316136646234653131363836366266353434353461356462633334 -63313634613566363730316366353039306436643439333539656636316238386362316632333035 -32646663373263373635316630643131633738656333386434303031653737373466393335653032 -64396466313238666662306538383861333632646632666438656361666538326135393861333639 -36343138613563316361623565386432386365393732336235383662373131326364656237393031 -30626432336662343935616630643066663965636264376232316664353836646139333661623263 -31323833626664336362656563363739326432323435303235666164323964613361303733343463 -66383336313662346634376336376430633065623665386134306366386134333861613161636562 -31313665633361373637653837386131613633353536343539623938633434663864313261653035 -33336166373264346235396162616339326632326637373035663235306537653064373430343237 -37656164303963376638666235343933613561323434383161383739323338343731306666646566 -62663332646531386161376461653466373034303433383539383463306338636234346238396463 -37623066393339643036376365623231333933303562373564313738333137336561376330346637 -61313435366439616334636434646463343531663163343534383166366339626539623166393665 -62626237396137636638323237313334653936663638313538313436346431303532343362336536 -61613138323033666161623564633634663366313433333439346234313764363432626531396663 -65343762666262666630363938323538656665353533373965643566376530633136643964376330 -65356134656635643231656630623932313763396364656630623062663839346237666132613738 -36383266666435373936353632646466616234313566653662646662616333623762383961313136 -66306531613436396631356465643966393531346138666632613632303964336431363931303564 -38303961666436343038333564316261316331323761393939663234366262646536363337643663 -31643837626437383533623863643261303033653730643432353638393365363963613234343463 -35363236316338306632336234396333616266393236373132653235326233366638613434666435 -30643862343835613438313533623430303431323330616536316335643334323863643036353435 -37666632663961356232663763633665316534636665396336353137326133323530353338653831 -32333864383833326135626461313566393439373232346536323532343537613862313662386366 -30376163663137303631613066363936373030343865633033663635656533643533373766663531 -34613263303165343566313336336238353634613137656465336131313336613363313861373130 -37356265373062366364373931343463663838643533633662653633306566366639666636623338 -65623264333533313736386664313265386535356539323864626665643263356539356461343062 -65623731356332313330373263353465313562633633356332383630323464333633316434393732 -30363366656638306561303731376633353762613065396439626332663932306531343562613633 -34633966373234613834353763396363316432373036376461656466363363303533323530633239 -37643231313532333936313139306661636137616130613433643639653164316134383066623434 -61363636666130323062616665626239663935653364346535333439666661343139383234376534 -31313235386137353762343735663963646563653465353934363136373233383130623333383634 -64666561656638323230643266313538303035636338626231633030343132373537396535653664 -64323832346636633133383433353063643036303838343933326163653132623031376232383536 -32373531383833343365623438316238303130633463333164383639316237336331613135396363 -30643766366561623461336337393264323861626335393831386466333535613738613965663137 -34636264636639306438636132356366383035323564383738313065383430336663663732616537 -65633038336364653835333439633662313636313330623363306637626135333763616230643033 -66306239623937396162316130316139353734643662623266353931323936633031333737363536 -38653539663465633336653333343736303539653039626635396630353861613161616262346431 -64643430373538663166636264333138656231613138333535396231393665663262643133633966 -61613163653134323865643532383031303566393832336566306332326265663164393962333239 -36396366376262333832363061633634393439356661343934396536353733613630313266613031 -32336636323061313935356237316537363464633737653838366266383863633066303361623232 -32613434636635383430313939313737323133363333376666636433626631313336306665323166 -34383139346130383933343663396563366634343964366362303330623863316365363563326337 -31306466663535353834656339636262373436613931623736653462313466393466333862346430 -64623239633665323765383532363233383966363633643965373638323033396539366135366266 -34393433616665336135636331313132363037613333366265623138313633653230373835313630 -38656633396161633461663837666164353362356133353363316338306236346231316634653935 -33383930643932326435313634663961303831623262373434613762363965386665373063613237 -64363162353561343864343266323738303462636434376364663833303938623263623966353965 -36343030333638373062333537393533326134373438616337646262643838346434383939363831 -35326231623830653031313066383262623632656333663238313137656364323130373732643038 -33373539666530383930393931333161616461306239376666663233363565646661663138633139 -38626266666366643235633835346630373131396165323065386638313339623264613365376138 -63663666373834626165326363376431336439316261313562323964373634663337366265623330 -63363632343965336164623066376337636134386138303833653631613062313364376235626262 -66643335373234663537376561353562353534336639623130613966333863323338393030363737 -33343138333334393032366666346137336164313239656565323739353935643663613732306337 -65643539333236383765613836336130336436353433356331316163656135656234656435653635 -30633035343836323532386262396333303939333561333638613237396165303763343134313361 -34613932363363336666653431636139646134666237343064666366333838623332613263383635 -36633138336438613434323835636130393731333836363164373964623732613738616438343861 -39393538376532616234623437303965616564313039326565616562343136623966353462333137 -65353464363631326632636461323963323363303265393039343862313030656533346162663335 -33653839393538333735346464633133613966633162383337363530343763303836646239366334 -39313032303832363966333636633863643333366364336462653434363036313339316537396534 -38326239663462393864666237303136323162393662623962326431346365373534613763663839 -34323337366538313661643663336432353239393535656231636436613865383763626166623734 -37356563373461626333363331396433383334363536396536653063323335373365303663356264 -63333434386266313065656533666133363862376136326533336130316435613730393662366534 -37656632613137373535623435643438613738353938306661393539323630376665346564663239 -32366266323562343062663036356332623038326634336232386566633661343362613832636266 -39636139643764383162353233636336363631393565373763323031616234636465323833663066 -37396365333033313766353939303037346662333238363461626236626133363432653866363637 -35383336626262613537396465363238376262333063616663346534623935613366383033323630 -34646136383037353666646639653132343964383066326466383238376636643239383063386561 -37626638316131303132623764393961323539356563653565356336643865383032313961303135 -34656439613565643530343931333133333031656165333865313261393535653336303330633362 -34623130646236353130626635366435613233313766656539386239303831323833633037353233 -64666637333835316238396439633737393065646430613231376635343733376365623635646538 -30656236663037303366333133383839323966636633626235336237613266636231663164353662 -35653237326334316332363564353633323134653639653234633736313833396663323861613939 -30336461643666636434373966353566373631386130633663636231333132643161383264646537 -30343638366163333730666539343065353366383039316362373133386366353537653661333862 -33393931633730323330613638646532376462613161636162326235633762323335663864386238 -62373235666333346565336361633533323663353065663230306566333137343337636533653065 -32366466386236376339666538373865363033393066303335303232616539346433363138636639 -32313339636264363666666534356563373465366139373537346261353934383364336363313039 -34626163613533396266363832376362373866663365393331366465653532623334376638326535 -63376366653330363232316334666563386665626432396234663634613266343561363732363035 -63366666386562643562336165613631393766393762613266313537643737633965303366383262 -30376566663531656565373530633939646536386563616437336135343134633535313861616465 -36363264653037363864633338623865643436326361363338383266363237356631636433383165 -34373037636266313765646363623236666634613033396438363637326166396334363831383236 -33393164386236623363313532363537313630663137353762376237383362353034656536626165 -61326562363936366438353130313633633438613864316162336132653730646635653632356433 -35353139616136306538613066393638323561656266356361333263346632353233633366366139 -32666138356431353335383530666362343030353863386164623333333365323430356232323263 -37636533373163383133663334656366653038303633376463633532663739396332346637376435 -35346437353261623464383535626233396534333935663637333337343438333031333838336334 -31333566633132653038616464363239626564643637363266613162323532363536353561643833 -63373239643462626231323863363365396537363462383262326161356564636338623637326134 -62346535363735326535653662616636656531306537316536626331323766636466306337656164 -30656665663563383834643662373233656364626535613131333235303763663935333264356135 -66623564613431333539313138386263666334326131383738313265303361376633646365373665 -34363737343362303834633864663863323530313464343836323739373534363965366163353731 -63313262633961383935323865366339616562363064613034353930376534313837386137346665 -32653564396232313662356636613739656262613764623665303230353939306433663830366264 -39636161386430393031373166313839316239613562323463626335373637373338366465353864 -31336366653534633838356236353031353731646361663564306538313336653430343966386238 -32376563303931353537356264383632356637646334396231333737393331636634616661643534 -30393832303737663233326234393337613933626431636331613637336563396331356537333936 -34383034326162663563336363383961613032666363613239663533316164313237623965613862 -31306635626566303436623364656332326361383434343164346633353062393434363932396262 -38616666386566323163663436363837643039656666353763623966393132303538326632633963 -32333062313138646438656434343732626231616162326432643532313663383339336334636532 -30353766393666303466313632346161663731313733383435363535383832636238633361646365 -35353339333033373166396465323238313137663737366331373035353737353033333563656430 -36313434666239653134366462616235616533303134663635646433633761646438333237393032 -39623035613566633930343430343634343765383361306362343536646664333236613264363731 -30396430323038333963663061363865326238376361346530306430393935333163616661646266 -66303336373338313433656165616363653061373465373831383337306435306137326339303731 -39386132653334633063383933313865323139303661343435343430346432663333616461373864 -33353863323137363339363565343164326631376335613665653033333464656532376531303336 -38656237306331656132366138386261313766383934623732316638326435333365643066613266 -66313532633937643935393838623535636131316266303038643031386432633339383461393931 -61343738616338383039383261643730373433653933303566623738393635363331653631343737 -30376234316639636365616231346139623134363330333864386338356362383664373930626365 -62656264303031333937333564306565663634306330376566666438343162623939323438646361 -36353061316632643536633533363036336335323339303666396131623236386663366131356563 -36633965656464643634383563323530646632366333396164356535633364303738313533633763 -66306163636265323538393862653562623964623165306233653434306665393532643462646337 -39626231396563346163333332336562396536376461663732306363663936653530663233313663 -61666532353064663666303139356663343337623232333166396637623337326335373166633834 -62323135373638383131616139363166626236613561653265636530383830633038383462376132 -34333865326131613462336636353166633734313232363033656561376536363030386333396639 -64663430303337393564383166613363663833383635353761346137316666356265326632633763 -61303735306661663839313366643135303735623333376538613135336563376535303634326266 -63306433643231383031386139616139366231376263633430623661633633613238636532653131 -36633734646539616538613632383635653137346532376538393262613162656266303238656161 -61356239393234373832383762643665643561363866643636613231323638353633383761393438 -37643233646535333634663137346461393130656563616364623130663932643364623839386537 -32323632306361643436623863316565336663623536356436366565633539303463646136373134 -66323764373531653538363338356537336432303134383235363038633765363166346637356261 -64653563393362633430383166613831326166316139366133626564623665353531653965373963 -39626530323237343739346561376236336234333164383034313339383862376335353630643333 -62366465363662353537313435636434313764373036366434323263343832336362663166363137 -34643964336265633438326437393133323534663861396664653361356262653562663830313036 -31373664336135613163663536653562363230616539633232623039666162393036646463333430 -39336332336630383266616533353937353632343063643837336261633933623532633832333834 -36383831386636373265383631633663636265363763306131346463303064633365313562393266 -33626136616366353964336234393833663736303133633933646133333466643464316364626639 -36353961313865316235373139326534336664363132653234386131353264313330343038346434 -66386266653961623730336562616535663666333833303535316632303436623330386231653234 -33373231633661616533363939303966366535376430666534616666646263313637363665376132 -32396531356631376139313736383930353238626536393034626261323534356431323933666130 -39643434666464313138356639313837656531363438353735306465333164643764353765343037 -30373835363932666362653163653566643434613839373337383038336165343731663837353632 -39316232356330633663396462356261356561316462643430633162333561363837363761383138 -34633730613938353133396263636237663936376562626266633431366631346539626531396464 -62366361643830373135613331643734333638616662643536353035623264346337353538643534 -64356335356263376634396239393239366265646330363133636165396535343633393365656438 -65643962346165373863633166373632303261303565323862646635363566643736373530643664 -61373665613261303536646162623231623461303666353138393664383362616261623462636235 -33636332373935663165623333386237643332343265633539626366366633663761663139653033 -61663337636638626533643836316165633938373436366661353237313366336430303936333631 -65326530656233663738653964646237616339333038333731643963623035646339323033353833 -62613138343466393734393362346630636661363530613631633366396333373664643263626535 -65613863343536643032653730303430323763633333376465323330643362313132656163313430 -30346564313333353161653961613230656361626432663436326639666265346266643436653462 -32386432303466363061336564663961343133643131316232623439316232643064376465323763 -31656138396239396464656234383363363630633336336562366665363335633766393033323430 -37363835613762386630653138353037386362646465643638643866313931613036316133616239 -66373339653137336665396236313437393365303939333333363766363734353733353030643861 -61626437333039616331356461303032306164656534626330366638666162643663626438363438 -65313066326436313933666364306434346532373266663036616361393065396363373637623233 -37633539626461663734636363336631323039386161386430363730366364393532366632366261 -35643462663966666335303863386632643663313636633066303938383064346462363033643932 -66396564616534666464633936633765363838373665616637393335313865643361376262663938 -37333333653433343738646133396134353665653235373563313533306263366237386265623232 -36653438376534663333666564316131323534393033653631353835313466376562356363363862 -38326466643034323236336330633165323231623734383639376439343961636535623932623430 -62333637326330333861663066373030383062366161383732363031313739313230323230613162 -64666635643032313035613231616362376231396663333732623135613264366362646632353337 -32356666653332363436363938316239383738626461356165303739393834326666643135333338 -34643436656362623438633330343837353230663931663137303633303464303761306466356331 -32666634613733613938643038343730353465323561623530303035656333326338396438353539 -30633838623434336365613564616535316635333433376534363034613566373965623135316535 -66316634393233343866386339653362616631656266306262303665326632316138306266626638 -65346135366233323032623430303334613433656561373664323063616634626637383036313133 -66326436646262326437663432323236303961336432323236376662303666313235323038613838 -37653834636434633764653361366332306636333365376639383062336539323461636264363931 -36303436613735336463396632396132663138636564666134653931346566363531386665623435 -66626137356461373530396130386266373935613539333437623132373034366537633539343439 -30626162363138346466316233613636646466633938303563356533616365643062393636313239 -36633465373232336635623361633662343462356436656234616439636332343836336533616262 -33643237373065653865386230663263333734323337383764363664356631313465623033663066 -64623134666662633362333864623537623735373434663837666431666663643835666635316538 -64303364626564346634666534643839623831316337333766663365363937666565353365383933 -64633263323663663638663130393538636164356133643830353362353033383636356432626165 -38633933323935653537653033373835663036643532623632663662653231383466616138333631 -61393334346533653764653163653831393139333064396463646466313166633634656133643131 -61656432353862313631336462633564636632613563343234646233613565326634356136323933 -62323462373137656262393966373332333037363035643333646361623438633933336564346664 -65383934363839373934353436383735626132336434313834643830383537376662373838373163 -30663634363663356134643332633461323833623238336165366135363336323334623532336666 -34646462346262363163343434643266633139623338323738373934623466353537383962303135 -35333730373630366635366339303837616336623833613538633839623164336531366463633338 -61636163316365613036646632393131616233323736346337346437363330626666366336336465 -38616437313637663237313539373931336563353534366433373762333063353666393765613163 -39346437356335613335353130363064616136323964376134356266636435373463363537663633 -38373535636564383865323635316565636239376263353562313831643763616364333865633163 -64666566623436343731613536616662626565353035383763363331633536373237633230346338 -64333961353034346631346230326133613231613561396562623661636335326664336430623537 -63643336656437373638353832616333616339383732643435343636343935386634376530323163 -64653961306537396562363130626438636235663537373532346230636530653038313938636238 -30343166613132323966346662663838363962353866396431613532313461393635316138306639 -36396236373137653533306666343162383539333961633564373762313035636633373534323939 -34623835663032333138343764613238306237356336613334303330306361353635373035633839 -64326634613963636364656161616266646533386538623166316234346532623431646133623035 -62386537363833623632326633336430326635316333353963613266323231323733373965323331 -32643464653134396462316337653735386361333663633866356532333064313364303839666563 -30656634323637306131376163623936613938623235306538383739663462646563353931663665 -32393361373133613231343461663565366533633433386165303534613964663735663633653138 -34626463393339313331343937633764333130383233323332323962656536643266653834643161 -34666332383435333538653133343232643330353734393765616234663861336464366139306537 -61643766343138653663346337316332623461326462353631373861616562303662323035643534 -61386162663766383164396362646361663861306334316431656433633038646535346465393534 -39376362393732663138633837613536356335363634306464616137636638326633313438376366 -36643639643233643666313230313538663037343838333435353531663762613632366235663361 -37303961623163623633323938323762353462613133366161363063663437666639383130356638 -37336130386666643262383061373661613166646565333634623465396537626635663431376231 -66353739373765656264393236353234303339623862386633363861363561633131373238653664 -35303730633236663737303762343364373437663434326331356564653535326566306438366366 -38613131623336653634326538626166626135383934616237643136643237353663306237643063 -39616536353138323636323439666534386430663864623038333165323564333439323237336134 -34303365356334336562666438653936666662643737346162396462306461336538636463353361 -66316631656631346534366166363838366164353039613836646335343364396366373531653538 -63366665303336373863616563646431323634613234343365323530633135636437306636306263 -34666666623738633034356534613834353861613635363365653636333235633738313939633664 -37326438633630306563663165356236383765376138663435623730336334323163323261313437 -31363966356264343834393166643230353236623935346565386137366431616662326231386532 -62376231666563376361343863333335386637336562303238313364353732643462386134373466 -65373637353035396533643936633164303262396666623933376333396266383461613462326238 -35383661323863383830353638333937613764653832643834613831353237386164643466636236 -31613865646331663436633565666635666234316338306437363066316666313965396164613931 -37366234663964666230643932303236353935393038373964366236613139643961653634336465 -61353962373738626538636165616535393931643930343431623064616538366461396630346466 -33363265643862376463656235663330663661323330366165313437306632353833356636623162 -33343965316337616139656663363331386265366630383733316335396630386561613538313232 -36343763303631343239313537343561656663333364636234373837323263393835663561303739 -38343436643236336136613462656665306337383131643862636162626361376336333166663461 -36376437343836356236356165356638303665363437623738613530353733376666343134323333 -34336136646565386233343231303662366237366137306631386362396266386165383863613037 -31633130306565633332613564303566353066333964666332343634323962616164613930646564 -65643461373437373663343933656535633665313034346166383861643037396465663763376165 -32396135323233393934326534653165316263643134623961343031313636613536623362393531 -33313530366237633030343139333030666132636230316138303565626536353136393733326535 -66303539383764656534663936613035623266663862343131386632356566303635636330366666 -30376363316364353732663466646562333934383131626131373364663663646133623639343839 -32663331633162333033646239653135323535323866386330316565306662613466356463363161 -34643838353935643730323738363362636439666536623166643031383736386135323334383531 -65626164623435373764333232346261633663386637336536396434356666393264333438323330 -66623865663935326565363336643133643534396661623930343535353562393638656364356263 -61653765323562663866323236633133663439653932306633376463666634396162613366633964 -34363137626130313130613361636438323136376332613263393765363030656431353534366161 -31396465373434393638303831616131663537653766626363363166346364666331326335666130 -39333339316364313465623933636561323861333833326535633531396363306334646635363931 -64386435646364666563303963363031336439373563613537323639303763643136343462626234 -64646331396535383864663335343730393065313764633564663263636631353137663962623339 -61646565623434363238666465393738323335623165666337646530663430343962313830646665 -61666431356362366139663639393331366237613235313336626132343965386339613165333835 -35333262633130653534666135366137636533316530343861613139303936393438636665633863 -63356330373532393737356230626465386134396337306661656261336432336535333333623531 -31306661383764613532313965313631643661636565626230316530366133636235306635303462 -63373932333939623930373136383264663434353366393530616234643265653463313933373134 -31346434623436343635313730653961366361373437663834613062333964383638353962376331 -37646532633064366631306138383935646331373736643239326531653039636466333032316236 -31643834656161623261646237393166376232323933303761323161646561363439353235363933 -30626165643638386364313061616636383232343539346137373537613564636338343163656339 -30623764303232653962356363616232383364623039356666633339656262373539373332363437 -39396339656538343030303037363764343633656437626561656366366665663334303838373162 -34333565626536313937663762376239383238373939353333643864336633333561616432326463 -63303730303330386262313335313332373063373764373631383530333266353939636563393135 -30656366623365633833343264616333663962616236633633646463626164313230393933623966 -30323637653866313932653363376566643265643361623363393764656364326366653663326661 -34313163636363353563353961646366333136313539356563333639353839323261666430363235 -66373131626165376663626661383131393436353866353339343435373031643139623464363132 -62623431393133323338643832316364366636663934613231396165333664373762316263653836 -39323466653936396566653036366562333762613431663436663138616534383362323837646137 -65616138623638313462623963623034353561646264373838636639663337663766373836373331 -65666563333439323262303363623537313166643934366431373363386366383131336334653032 -38346364303638633961633537373534373734373765663931383737373134373632343563383765 -66366666376237303964653730343064613738306163336264663461653161396166396162323832 -63376166636539646461666331316439636439316335663362336338653530303134343863333334 -32653633356634633336313639343763376430353538353639373039383333633532336566663232 -62633063333932316665653930316331613735623864343764663062336564303336313033643233 -31663065626236313833376630393836626134623533643264396165663530346165323737323235 -36653964666635326634653735663436366234366631356461306530613434343438623061636265 -39303661643637333539626562386161663265363734633734633134366461626634346663363466 -62343762636432366332633337633035306365326638373065633336626361643161326566333764 -33323661643234666462366130666636633265623764383836373438643263343261333931663865 -30383266643234383761313433343034613439333866326132613330646663643130376162666439 -64613963663762306133363133383134353331613334396531303262323438636234313639383161 -61666662373061346236633432363239656131643364326262643266366664663238643435623236 -63343831646130323630636365303534393263623161646665396635363961633663313831386238 -63313136346361616538323735356632656432306262306238323863623539303630383634353862 -64633466353766323739306637383438663133303130373237303234323861666163313336363034 -61643234636531333937333937633538613830316436363936656661666663616262346239663862 -35363966333966643439363933626533383061306661303263346237383365373136313736643634 -62373730376566663764363862323435343535646437353261653334633339396163353735623534 -35643532356563376235326530616330666339633136333163643230376530343139366261353863 -63376538323031613539353535336236386333343735383333386137663561393064323736616161 -39666632623432303936316633363137656530306565636663363238393361333566646165313032 -37383064366165383730396264306332383039386365306538353364616436386265336338383438 -38303235303466303564613931653830306537313535373761666132623539633764626566666331 -32626465396565333230333137396639343566626230356164633864643831383633613739333865 -30386431303935376162353164326139643137626630626339393839616639623039353239343065 -65663866316336336332343931346536626164363864666532376537643633623466353032373262 -66663538393861316531393337303035666536616266646664396539366339626235626163356566 -64623634373133303830356266393261316430633164343732666363383830666636666130646564 -38383530393235313839653166336138386666393863623037383130373238353634656134613930 -66646263333235633239353462343965636462316630646330316335363039613562356332393361 -39643866386430393831323934616230386439333864386364346331323537643831353330646464 -30303033646438373766623736623532333436643332303266373133346638346562316664303337 -39326166633139623033333931323030646339373134396234343530613662373935306137616239 -39663533616533306634326164663264333338653063373865363435303630323136313862303938 -36633737343061363263643937643565613035323739653834333261353536316235303939393731 -39393636373131646439333566613239393239396565663438363732316638326265633635326234 -63333262613662613939666363306663306132356265303536306232336334656634356438383131 -35346634383437653430386661383637653536656566353537356632656663646332386435326561 -32336139333336633664623434636265613130633436623631646235373739643232656337636666 -36643234613331376634646230376638366233336561353136353261653535306362636163623733 -38373039346538303731663532663863306130623965336438396432643934356634633638373737 -65663831663832326365386131373932636566356236326630356562636239613830313935356538 -65666235666336373862656463626135643866643961383139633939323763353936316564613939 -66663139313134616538323538356334353063353738343466613130316663303133333164313835 -39396262653865633038616137656362303465316365613139323839353133643433363932363033 -64643231306232356131633464623161336266356363343062643734616232636139616233366664 -35336130353165386337366563333634633337326231386166353665653939376332646336363061 -39346266313638323934346265306263373431323732313834633035633163336535643438353964 -36353037303966633363333332343430643534303966323434383264663964643766326266303666 -64653539373961366635363163613237373734653630366265656137616439343630323631353933 -37613830373333333261346564613838393761356337316332346564613366393734386237656664 -39646366643538333135383633636566316330633739346430373765626133383338336166356537 -39653664636261333938633561353335373732333163303934313233666134653531336562303631 -61316338383332346634323635633239623766313430663536343237393731643638333166343063 -64636530306439643361356363323633313862383434303035323238366434366630643261343432 -61333464396663636263353262356335326437386162336639643830386635383066613332353235 -66383934393432383139646538326663646463313336616631313337653461316131633434383038 -64366632363061316431613730313165656563666433653866346436306362306466313762373132 -31356332636131386636353330353465663134343336376361313863623936333538383737613837 -39383061393837383035656435633236613463623534616138313362626338323766323533353535 -64643764393330623261646562613734663131353633303839313338356534323339363163306437 -31353130333666373935333035623038333631313566316336373130336462623436313265376239 -36653735396431383533383135373462636366616334323833373965376235616535306239356539 -37636438626536393832623737616137393962376535353637653338383638366634623562303239 -63363339386132333334313862363165366462376261336532303433666634323665626639646266 -65656464356134356166626262383165656438613738656563643062333436366165613334373033 -30646434663161383036336164376332366239393936396233366636663361333861643933663131 -38396333646539353636653565373737316461343261663634633837316533616464376265393865 -62343765636433323066343961643031386363336562383061353232656264373064346165643432 -64366232643062306139646530613766343563616333396661613235306637623466353730313631 -61626231326536636561353935336331393733623764383839613363383136346336626333303438 -31366532363264643062643738353265313535323364613466353565386134666337383738343665 -64363131343034613639343335643333396434366162306266636136613764333734323261343135 -30313739376465396566323438333962323032623934353931333064303061386166393633396537 -38366438333037613930393034613437666238653338323630366333383133616330646437663965 -64376631656266393565316233363962623065343136363435346131336163306664346336613033 -63393866303630323435363632363834653234623438613535363933646336393265323337643566 -39393961656430376139326331343664366566623335383066336235656130653932343336353761 -39333761653037663537346566396461643264656438643830613139333533616165333730653463 -64326432376164373333376263343734626564323062373733353864666361633731333139633433 -66333030626431306232383430643163383437316239616265653136346264653464333864343034 -33373961313763363233346335383937383735336561363937386466636334616364366431363264 -64373163616537623462386638383934633966376237383936353166353638656462383734613461 -37633664323133333938316533336437383863383562633162386165633061613761623838383330 -37336361656365373531623639363337383164646262383066643166633064643461336266633333 -64396564376137376430646165323830663363313164313932346530636136323562636435393564 -64646533636330333737313131346234356361303263396264313838343834633864613636663630 -35613034366536653030653436653463383162633134643838393666356164613734386333393563 -63336337643531663364333261336366386463653363366230623266656565343738663931336430 -38353636316162313864656664343863306434366336633766303062643630626339343862633038 -39643164343664313137616236353536663165346238383438363465663837303835383435636636 -64303135636261633561393532303762346630303965303536316461363430366165626230343838 -34303135363165653237333065396130613836303061333636613637633233613839636562393334 -35356461396438363865383662373330303036663830306131323737373739653934616435613661 -32396638646339666231323230323361636531323537333264623038626137363339376461613838 -65366139396137376364 +31316162333034623435353835393332303736323464313737653665643832373235313535396239 +6231333435663064343132623334613166383230343835330a363163646565383838313333393665 +39336639333065623264373030393465333364366361313065303937626335396437373731336438 +3134636539623136620a306336366465656161663936383235613833303537336638613966613236 +32343462306634316432363866396530623632323161616461356238656136633431633865356235 +38616235306134373638643364383937333362386166376539633066346661616362663133633835 +33383137393663633963333437616630316261613331373232366166623464383733343862336364 +39326163366230616365613366346430336162336163353031366163643862363132333236623438 +38333737383939323138653130613464616636646132616634626436636461323733386138663739 +38346465353737313936363438396233373163303661363330316537616365346134376130393065 +61656166396433646566643734313937336163633466623066353636633536386536326531663663 +61336430616662323637653464373237636439383361333565373966363634313334303566356564 +65333139343935306566373262646339326338663437303035343066323630373165353239363233 +39656437356634666236393738613662373763656466346363616436633034333633393862306134 +64616133393265616165373534616131363734666132633632303239353837333165316163653730 +62303639333966313564333166396361643665623635346637353939303034353134303634633538 +30306665653931363530653762363465666263613633636439663136356235316430663461386564 +66393435613364663361386538396137633365313264346563653666623665616238336165303933 +34316438316565643337623836663236386333326530613134393039313633393234636536656335 +65353961306233363031653833643033666433633862616636636134616139303665303436616332 +39646566343164333866323538363938313937326135663637313662383234616363656361646337 +32353630313764316631373531656463633231396464613030666635663539303436616165633064 +35653538343662373132373465393666633339613333396261353134303964366637373039663461 +38653434396265336261333538386537303033333237333534346265313332343062303061633562 +31623031306434393734653432653239653363643639643838616235356531653233353264313632 +64353165643435343835326163353734343863373766663535363139376262373937666266353731 +66356130386632626563336162653664636131386331366463646435343366656533336361336435 +65316333653334633738616436353766353263326238646331336335316234623632613463316164 +36363536616439636163626330366433323862626362356231323362626430363634333264343935 +32616361363062313334633038346635626236633061303730626263323163616138366530663431 +38353865303037363232306638363437626232393238363764303064656331303731356437613064 +66663734326630313338323935353232333931386433383663333063333164633737396139323031 +63346231643764643030393434653037326566373634326134316233323631303365646534623561 +30383666663239613065336265383566353261326566616338653932353836343262383665623265 +33356336363265633363663562653239633964623662346662393432623637623463366165323961 +62626337353338353237653532393538623531333064353335666230313637636563653633396533 +35336365326137373736323635383265653430363839383266333166646462653338353837666635 +33633137396163383236653732313261313831393733623435306535383863306339353162333231 +39396461326366313339626536343366333339363630356461666465303732663336656166633730 +64316563623030343961303564656131316537373665313238633765396162313464366664616139 +66393038393137613562333637653834623265346163656238373530613333613833636236306331 +33376230336635656261323339353062643261353636623135633239376631383464356239363366 +61613438323839633266386363643033333035326632626535653736353462386264633762323564 +61363436336431626637366433346661343939316336646265393739376661663962623062623732 +30663563313837646635383134663364356164663764653633353163386534643065313930643336 +39653638366166353436623466623934383433613638656531326437663730373563616161663666 +64383634323633383634333331646663666639643933393735393533643437656534376135663161 +62306538623530663633643933343732633263313963386165346561643134393333366436383235 +64313266643166306633653139613266373534376265383230656533666635616466363235643862 +33313736656364376431613265313861333131383362393639343337623534666364393838303932 +32323566613739313238326538313133356163316437633735643335316338623664616230626366 +37343561326530626638666262653936363434373130363863306435643836376635636162646430 +36363565376236323464663336646332333963333937613132623862613763373738303166636639 +62626133313564626537363466363165366339376262383939303033623732626462316465613032 +61346463393838623633613963303136643364623565616263363564353231336235393632386466 +30326366356232313165313935393937326262623634306635383931636231373436623038623963 +30626533616462643961346666333233346562633366356537663635613962333466613763313137 +38656363333065656664616364336535386266616231326239376136396439313562306332323838 +32636331316261303362306239366664633533376431633931326263313564333434346532666530 +34306136316635376235396535346136313936383830353563653630313430373965643238393166 +63363564306630653462663935656633333135373832656366613034343234656430653630386661 +31656461326331383163643439656664636138383836303865613064623437353162616562613137 +32303833383430393761343636643263383265396332633661663765363864383263323265306365 +31633833343463626432323331656539333235313065306165653439303230613363333235653931 +34663133363631653963396631313938333637323934366565636237343839613938343361313665 +66353536343038326436623162336437303039626466393366636330363235653032346566323266 +38636439343738343961346437373533613037613032343630626635323065626332616533326539 +34643636373665393964613138363432653232383738663065343330363335646462303061636533 +64363133626361656566393139643534633232643333386131313231636238303563636634393338 +66653165323633656633373535616161396632646565373163376434396563343365356265666335 +32636639626366393066333064316664373166633236613064326239333930363230656134636461 +39353265646336393265653261343132656139316637396130323663633863383230613964663565 +64373232376465303137616136663037303432393963326632363135663435386634356438326635 +34643038393663353565633131636530346262643330316431323065316163373665613534316639 +30613235646265643561643963626432623735323332663136623834633130616132396135343665 +32633636636261353238363235313661656462626561636639323130363731306432323665653863 +39353337666137396333393431326339323537343765636230343663646239323431646234646639 +61316238343035646665316462386238363765636335316333386539313563363766356638323265 +35333561393664363161373332626563643236366137366664643165323733613230313166386566 +61333631376537656636316430336131323436613039343930653335376165663534396435626164 +65386364646162363033373431356663303832663863666632363864643030626165653734333630 +36653664623939303161626565306130373430326461366465646362363063383530353433363937 +37393330346531616435383531313566666163333037326662663634303838376430383230326232 +64306437653232666236383537356638353538346537303630626562343534303365656637303061 +30383930663738323935353835363438386634646535323665383530306162653537623037333330 +63373438666234306665366337633564663536366638666138353561323962303131626638346136 +65383630323431303139333465653965666661653934343934306361636334336262663035356130 +66613062393463643934666666353834336462663936373336386565663861396561613231323862 +39656665633366613835363936663362373630343261366238643132376565383737303636333765 +63363765336264646231636632623834313333353833613532653666306539363034366536376539 +66366538373864393536633335636563333437303532323866346466326336613835393931316134 +31306239393238336637356236383130373265383863323663333261646539626439373662656265 +62623930653636383363346334626638346135636533616231663664633436323132343661643934 +66353064636134393530373630333961613035393530373430353566626162653162316566316638 +64366261653365303533343137633266613831636662623234666662383139343366323665373134 +38666436643064366137336336636230623665626161313432323438313438353130373138616464 +30363636386236343063363761333430303664303562653966303762636432343634626561636533 +35366466613539343961633034386635646130623161663632663437396135383063363961613634 +64643738333933393362326137626466653138653835366335386231383235383436393139366132 +62303332306633396431623635393431613033396665393539393334393638613935623538613661 +37653866313032373239623839353035316330323365363233643361313030356233306638653762 +37623732333163653235663434343531346436616534623336643735626633303938363532666135 +38313832656232326362613332633431323061383464326434316437646161353533333137313866 +34326339343164356363643436613563393732653863633761346333636261356162323561656136 +63316664393938633931323962333763626136646532356532663330636531333939363833333437 +36323637633765343165373162386566306361623538303236666365626633373662333966333665 +64303262333162633335666134396163326537616132356432333132383964636636386361333037 +64333461653662356364353436313864616439613261643961363865366539316230643735643431 +65326335643762626463306435633234633134383563663166316663653863626239646631393166 +64626664356338323739333532656537623432643561356531646530656366383537393035313834 +65633234313464666366303661323833356564303761666634393336613565623261303832643262 +39333530633339616637316334306432643138323763663131326638363564343434333364646432 +62336462363736313730343764613930333934396536356366633833326438393066393163643535 +33333364376265366335373031663065663738326532623764663338623034346137303139656633 +35346161376233383365656432313561373235653539373663633363623165646136316661383337 +33646464646239653064623561343161633137636630613039633462306530363035333238613138 +37356130393765373839363735636239383437663461323666356637333330663339383736303938 +66633339636463316534323732383835333731653063626663633665646230396662336434376136 +31646239363533666466366639336662643064643762616130623839393330316138343561366137 +38313635623864323966616633326630323031386262343064316437353634393363616565633662 +64323261306435623733363530666362343964626465346562333735353936316564386637336665 +63636536363433303836353432353030356230643533396362613337643138303535353536393035 +39353939623066623433323463353237346439663430383039623734343263633863653265616435 +61623061343066323838613661346631663464306336353139356461663135343530613130333831 +32613864653136346631316363383931363234636531326535653666353062393639613930303030 +34626535333265313633396133646334616365633563363238376439353736393438616666363330 +37616265646661653334326236396339646161386338393530326662666230366532666438363530 +32393538616135626366643266346230316636383037656430623033656430313865383338656532 +34336364393862643237623030303030663762623661343530303363363439306130643362386539 +30623832323633353439396635313832343639376465633665323636653663303831653932636137 +39383839363236326433663132646666306435333038343438373334306166646266643732353831 +34303863643631333063633637626231326236633733303765646337633639636133653865613165 +37303437633731346232663865363738636531303138663839343566373762313930363634383837 +38623961363135383266366236343363343466666133626534613566643935333639376339616332 +30613032353132303833636462353233353062653836373932356563313937333530643634306533 +33353632383333373661616130643262333936613864323063376639386261656233336262376464 +35353733303033613566356261313137303166623931363763353132663933323566373666623138 +33386231346236353830663165613564393662303239623930326639623736386163623235346132 +65333733376339646465393338393334303638643335383434613632623961353535336261663330 +39313366356436373162326663323364626537303434663266396561336663633666393764396635 +35623132613933313333346266613939323964343839373537356261383633333562376238343565 +32643263666234623633626465643939323936663063383737663434383333386464393865386461 +31656132356563306435653732613562303461633765653036623562656465343464313936646566 +36393934376136343434386663303637636533386435653666323930373630323962336438303134 +63323532643565613532363264343930623764343438346362383461356537326632616462313739 +34326466316166383535633230353434613165316532316566386333363130626531653965316431 +33643563646431333935653835643939343766333466626238386661613135323737393935336137 +36633965366535613336386538376264616636383531663035336630356434326637353833363232 +65373236653166616235346636626563363764623335623639363232313764623561643865353335 +63373465393639306435343666613437613465383332356139396132633566643431376138653732 +61646337643339386330303133643365643130666662303936646362623366363539656438643134 +66343534633365626635303065643438366566363738643937303061383564666339373634306562 +61643164373931333734393937356566653266613337623364353361333636643261666665383532 +35373731663039393839356535346632613734333861306365313963363835366363396666383564 +36303134383530396637373730336463636136383737386664646164646431623833393432366439 +63386264626134633961373533323863633438316262386562356133656665646330653334326664 +38326639323663343834663139336665653537666561396637323532613836623265393836613831 +32633233646339346264353439356466626263376632323631303231353839656661316136393438 +31306266373666636465646338336263373131633164333962356235383037316562396337613033 +65666533636430656635336161303339393839396162393363633662613131656637306664646431 +35646565623037336564663765666632363461623664376335616539626463306265613935376566 +65613566393237323332303231643637316130383838616433643033636435326638626262346330 +34393462336231363934313863646636323164663937306237613261356535333538386239303136 +37333238623165633866623837373739643665396630366238313330636537313362663038646137 +64353438383934653366613431646430636634363730303366323932363963393461613032323135 +64393334396462383836363932386232643634643836393663343832313136613535613966343535 +66383161326338666363313533313565633033663636353432346363656135636138333739656661 +63306365376435633633613236646334313966626161346366643839343637333963376162643836 +64333739323133366262623137613466376434343261643162633435396566613731303966663962 +62306135623331306130326135313261306162663764376561333831393837396433303835613435 +63623364363033363962306338356334373836633535366562643164343466303762653735383737 +39653339616439313530626265376233666139373765656139313165663131363438663062613937 +39326364626566303863393966323931343838386264643238363233656165373036653338383531 +35303236396534396437663161306261366430626437623364313563363062663132643239333833 +35656463666631643538666135336236326162636532356563633838323539346164346634616531 +37626562353735646132336433643535663236393438303238366339616661323564396639643430 +39356662653363326166323866376561616364663063373030623966646338666235386332633765 +39306530363461653935386462643735363635366631646264363738306534323135663433396538 +32333565646466326133353532323338663731653738366131623266393366386562373863666633 +66323733326136666366333361383339626333633531633565303362326435636239386139313239 +32343130366338313938316566663064353434376465326461356461333732663362396337393333 +31613665633335646663373739663566316466633533343032636564366437653333386230346439 +33613836386132626430336534633064306636646132313366323437643063363537346238613039 +65323765356439316362613430643066323633393563333135346565373666663439343930626439 +66323965623337666135393966316438353937633230326663366265336531643932663263666362 +31613432303661626163646532396339303933616464646462623339373836333762353165626262 +65366464333638326430643630653266316339376264616633393665373638653832623839313261 +30353737316466396665623735313431323636313233643035643630373137366238306134626364 +64333037343034393665356266363966323433626431663836373963363861316661316463323138 +37306138346261393538356630393032613037363162306664666235646632316135313139633462 +35643734363834613763656164373733653963633136363763313932343335626131616630343539 +39633232393934313761393565633264373062643863633339336165323439303865383966663236 +36353738316635623437336361376133666637306661336562636139663735663730666562333439 +63336334333166623062396637613962616332353336353132656666393632343334643531623763 +65633833323137366362613832646465323634383064663433386235313834656436363365376161 +31356133346636386436623137313839623632356536393865353462663964616230333630333165 +38326263656162336430636665643965353231633861373165653135386231373833393839623630 +35356536386236663835373562346563333033346532356636663130656431393331333032336630 +36353733353162643735613533633562636532393135633432643664316466363033643139313133 +62303164383664656636373434623465306639303136636235383038393531623936393663613364 +36643434356362636639336233366637666636323737323066613430393663643237643663353365 +61616136653066346263656564336435396630623537323632356634383835626634353534333263 +64616266373938633439646233656635383137326530363762666463653235353032376266353537 +62313336356233343361393364336263393534623764326364633938343430633835323131343034 +39666164366633363339366262663632643666636465616533363339633435333065616532333233 +32366264666165623838333466313637356339383430336330646538626364373465613362353864 +38323665343062326664396232636635613836316434666333363563353662393435623030343939 +39656431356238626231313235386437663730613636653139623161363863343534316663386531 +37383030333835373064616330616231366565633563333131313930633034386261663264393766 +63323236613435323962653035653039376261383565366331373763633432613937333466623665 +63356332396239323334376362346139643733333361353932376166313761376133316338356163 +65376335303465666231333536333233326138666365663037643836356261363737353438663766 +62363739366531613230383864333233343861663362663165353966613732616137326162353566 +39633839666131346661376336646462383230383533383162613963386138366364343937373666 +36353434303131636636376230666263373834323339346331353164316339383566636562316634 +61356532666264323663663466666638643836353036353565306430363665303662343861373861 +62383661333430303865376538383731383265643863626364623764663037323765653662656366 +39613730323630326365373263363437373537353366666131376630643133636232303435353962 +33633835303934363730376136323265653061633265366539623864646239363065363337346564 +35373365616338323835613630613361623830346433313130363238623964623532313030393532 +66303934666530383233646131363537626163373036376337323661623730396632613539656139 +37346230633238363637383166626633633261613336383832323761653437363939353862336261 +65353165343332353233666433643666353235316431373361643938323939383130666439613432 +35636364363961333934313236386334663534363639623563356364393766386664323161303965 +34376235623030353737343261333833623233396437336530623732393636313734656263383336 +35363836343539336262663235663863366361643035393039656665373133326332653739663665 +62353736666632363861386366626466303766626264636334643834313261386632373662633537 +62356161303065306438386233623363303630633561366137383038363064323231643165373332 +38323739646133303837303137616539383364656631356461626632653061383363336664393030 +33656535623862636134643633306232356364663964666537383862616364633762373864303739 +37396538373666383737353637653030333637323737666337363266613261613562343731623130 +39313263313630343062633930646235643635613439346136666330383364393338616539303063 +66633239663231356338353632616264306561343164663865303431623037643962343231393433 +63613836373864363533626162613262396465343664363936613664363162666430663234313465 +31386634356436626231646562646639303765393336666565323433333135653333623464613234 +35666630343730343961356135666362386235313133363662616134343362633834386435356436 +33336163333663336536626238633133613333363232666433646564303766613235623434633730 +65366438313161633132303630336263333833336133343264663363383962366365343965346162 +34333466393733656463646264386438636564333635316164313266666439396637653135383433 +32396263333439303532623564356633313931343233643837323365343031346237376361653663 +62303935333138306264616633346533323935616631356261316337336335356461376531313939 +34386630623563353433303562386564373361663738306562623030653030373236323464653563 +63353639356632316236343062626631373230613534663337386365356662386138313663646165 +62303263343164393733633837346237613264636236396361343138313137323261366337323061 +62356537353031643639646362336363616232666266356133636638663762343431646565326134 +66336632646537376335313438366138313266386164646163636264333863353562613833363430 +62343733356261653332393664616535313937613732306537306538343833336463383239366534 +30663533396463626663306233353761376638343935353835346666666436633237376539313038 +37653366323739643665393130656363363930363362613835353362353435656138316261653134 +62313439383161363430643839303931653539363537636232376534396663653465346636303034 +65623264653033323834643431383863396330313838316164326435633566643961626464393861 +36643432663562363764616533316666323966656663613963373632626161666231646432376232 +61386163643630383033653166323164653532306333396564333262653231393233373535393962 +37323566343533346463396466643634666437616333353666323165333161313564383836346138 +32653838326233383736323165353230633132626162616230323666393662613138653236376330 +64363930363734316461333564346131653438663561346230323663626436633739323336303339 +63373334313839366162356439636539633234323833306262646538363065623934656663616663 +37663866323462613533316333326437656134333232376139626433646564396233633863366532 +33396234376562623762373739333664393535626438633038393466623336333031613862633062 +63656563623730626636336361653832313339363631373232616264393539363465326238383434 +30393663333339376133393933393762376264373937653335613634613563616632343930643431 +39613866393034346363616431386264643633316432626663663965396435393463633534363265 +61313737616237393832613963626330383237353862366165373965383534636362343364336535 +39663131626463363965666637326234393666633939396466343561656636623862646135373132 +30376261316135623161316334393234666661636133376231373237383132383966383631343234 +34663765386433303965306335363234313764316565343830613834343933363733656638376130 +38346138346463613739666266386565313865366237653037323334666331356361333437316534 +31656332643337626565616332613235643035306432663461653161366336393932346461663336 +61306365643761343035653866333039666566333639393332326237393963666665666635646361 +36613733356334306335373537376438393662393834353837346138323138316536313963616664 +31343966663338623436626361616363373130313730383261643861656561303235376464353662 +39366338326238653163643066353936326435336338623637646130373162663562393633613832 +65366435326363323830383639323639393662313031656637386433343262616263333765363633 +34363865616262663834363962303662633035326139316334363061626637386565353039363938 +66373966336332633161656237643462386330633132336265653833633032346237376463616137 +64303162383039666666313232613539656233366162336436613831393163373463633861663433 +39633362346631626266353862333461356333323233313130646130653537323462386336356131 +34306561316436623139366332303132363035343330346639623838613338343330646130613734 +62336330393237623930366438656362353533653861353732623565636133373465653664663566 +63386363613432643732313833636538616239306339663938316539653133303938306331626262 +34393463306264646539616637373065626666383032313633633231633362336232383563623436 +31333736366265383631636136646330323635623638313438303664383361623830663639636436 +36656237366265663235323062616135663331343263613532623161383465376634383665373862 +62636439303661363766356135326633316362336666383563373264383635313835653162313433 +61326461383261616535313739356363396364653431393463623731373931333761663065313532 +32373934386262653464633532393536393464356362636535666537393565646438313938636362 +35343036356464363832303238343038386265616537383232633735613330336665346664646439 +36316639323265366332396436323431333833633437633431646436646261303234336137616562 +30316663383564303238363965633932353830616233363235616335333661373964306261316364 +37386535653938653234623563303062643239343864303533653561663564313538613233336461 +35343130353138636639623765323165373337306230353766663230616261666365353736383933 +38363062356637613265393133353234336534653631626235326664646535306435336137613865 +66333833353464393765306333316133616234396436663433343462336331643136346236306636 +66336434633039383665623265343337316333636232373537396635636634356363326235646438 +30626564356434633338633962303134373765313662353538363966333037653934393837316438 +39663031306363393730663534373132333337356438623238633830363937356136643338383135 +66303536653739613866623664613764336163303830323734666365616535323737353563336363 +65643639303563303431316166666336356536313130633932396435353634346535303161643435 +63323265336363613865333734626135323431396562636262383839363832326634316331336631 +34353435653564353737353664343234353539343062376530626334653763623031646162316436 +31663239643966306338313865323433336436653163653933306138653663336130643339663232 +34653330303235346361623031303936373439613734656165656530313135616538363836343139 +37343731646132326538363732633732393833363039653465353538643666306530393937316362 +36363031656639653339323039336139373933313837643339643536623539633832363332383534 +37616363656538643437353864666162303861396162616463333837353535643366326531393861 +31626561356531356161303238343834633035333965636435306639396135356238303735623263 +62303962616134333532386666386437363639313764353733613061666131386431626561313162 +66663964323731386630643733323866353631363761393433356163656234393562626232316564 +62353864613664636132626637383137626534626362333331356365303336333262663266313634 +61663639316634313338643134656139646238626439343862613639633561663833323235616565 +66633038666536356632323031313237396465313235653632636239383233646264396132633364 +33376464343236373033363339633535333939383961613865303535336165343737663537633231 +65633138383532666437313066626365643963393137616162356566306633303064333538383237 +31343535653063393233303931303336353631636265313133613664336534396334393832333131 +32353935616565366230613936326632636639376633366336306339646234316133323231396335 +38373665646462326164343963333264663065613531373333353931653865393936663661643830 +32333864343831336336353538623332383063316265623135396133393532626366626232326631 +38326234643362663235386462353030663331636233666136383430313237333931313566356237 +66663061613034383533396636306331613030626433353564313238363063373265333836636630 +62363031313262343261626465356462343539316336663666386530663165656434376666393366 +31623034383265326231623734656138303839376137643238633465323631363165336534653037 +38663230656532653665613464323832343830666335353766366564393036643535333166343631 +30306333646237356464346331643463383036303665656537336361653463666539363233323561 +32656161643534303636333530303330303937393539396135653930343135313734386662653935 +30663364363363306561326438396136303135666366333332633764376466303762353037613261 +31353833666464613436303765306536336330343736656266366163353665653038336634313839 +61363731323466613766353665303035353734366234353236373264613732393736323031343836 +31663732663664326430633936393465313433373664313337623961636465373664316361613130 +62396563633038336163323133366462623061656461626537653435653466646361333637343533 +31636539343434306563333230616364623461613661646233373632356131366563323464636561 +62306237643037623231663730613266343530633439383737363061343866653730356432386231 +38646437393262626363353765303766336630663236343931343166363932343539336538613764 +62386465643439373963356461346363393464303935653963626534646462653136343238663364 +61323462613865613863383866356163393565393166363766626165343337313039306133316264 +66303137363933626564363236336432336337656661613938616438323261373433663030663638 +34386362616539616530376236633532386565653831613861346437656562626163373666636563 +34626235313933636239336136353330303935363934353635393565623561356564653837383830 +32313762366331633930373537326231633565366637363330656439346238306464336539303235 +32373630616635636538663530663332383039326131353534303664383838646435646333313862 +64663663643665343039326165346132343538646333326333623931613636613066326365323232 +38356263326132303433626335356261636263636465643838313534316534343433626635656638 +34656238393732353064386338613364646266663130666662333362306661636638316163333764 +30363138663261363061623162643138333063663732666131323262303939653366336563393437 +30323138363138633535393061303739333562353535333737346635626134356136346466336233 +36346433386539383061633439303961643233316134383736323833356335306265613939653862 +37633263316462643562353039636666653937613131633434316533343236633230316339316430 +37663433616632393765653635313635633765323863343631616532613138336437316533363630 +31643730313037663763356631633635633662313431656532316131376332346165313462356163 +64616635376230653139616539316262656136363763326431393737343132366337623630323238 +35373833643130373435663161623064663661356230326238386365633137333765336231353831 +66646365306264326362666661373964356238646266623736636139623664333939323965636265 +32623934383532626535663561316630646438383134343562363764353336666237333261643235 +36366264623934666338396333393731303937616565326437333831333463323366346634333237 +62646166376634353265353166653963363639633164303765376662393139323637656662613061 +36363563326362336130343730613839323038356238653038373961396634616462306530303465 +31366363383035316135663466363363336164393666373935653937396230626139646234363764 +62393635393363613538366166386665626666663366303565353131313466646562323664363138 +65316334613565303463623639613865646363353939623164616464353833353665383366623534 +34363739323565376461396265623661663062643331616130636639353034363132343834366339 +32313435343061643535333733633433336235333736393733653262663366626231336633333061 +33623030323963323562386637373933316537386333376330376236316333356134646131613931 +34643730383764643462343264346339343232326232656533663534363964316366643065633935 +39666633346366333764613961393664316336323264633562653862643533363739336539313933 +36326331663336383831336163396133613763613764396534636339313131363266653564666237 +36343563313066383931356236333533383761343763316336613133656439613563633935613834 +37313939666434623434353336656238383862613039633366653337323734373236326361396664 +65316465636562666135633961373031666232373037323237303938326633333030346235353337 +64306137313335633763613839643631643339643861393334343164373834616336323438336264 +63393133373266643065353563396436626663336435336436616330373833636162373636346531 +33343562653338363738373238343262663334326432343535623439633738373263343836313764 +65306439303631316136303063663133333066663062653535303137373530303261646436393530 +64353864323834356363323161373432303435623662643861663832613262326461616330663362 +65363433323361633334383263336431383031646538373736313762643238313935363863653831 +65643830396138383638336663363064376533373635363537356563393565646335333565326339 +31383533353734636433383631396439653039616431343861323764643532633666373530343134 +36396136643033613232306338393033343931656634363462383433653339363839353862303730 +66306238346164396533356565323462643566356262383034643736666432396366353337636438 +65313963666234313464613164633738643432636335373438333863663234633334306361373465 +37353532313561303531363265633438623439643839383361353065333939343431326632396534 +64633139386361366164636261313235623136313132653765303134373536646538623138623765 +64623561393666386461616335303264656530663839303236313363376562623837626166386662 +62336266323735373834383431346561383362363864353534636438326166616565666630343663 +65643965616563613066336366356639303239356131626439323737353364376335363731386436 +33326563663938643538643439346265393732623930323566633662613239646665303064393761 +35376365666661653964666365373133666265313765633864633634383036383636383830313966 +62653539366632303966623435643464633334656537636262336335376337363336356265333431 +62613332393932366332313937663437653335613039313263626234363164333932353063356431 +62346433383263656164316339303534363766323733623630366432393036643264313837643337 +31366636626166323432396635356532313665626234363139643462356236363037303631363235 +64646139376235373930303033356661656563316562346635303664653732353766363061356636 +65653466396264353631386531313262333834356435656335323538653264323632613234386637 +37356232313038333962653035333537643634363135343939653230353661376364616130666532 +36353838333239343337623439393861353635303365316162346464613431663730616165643366 +65613730323036303034633837303533626263616164356231666365666132363533343532363665 +34376336373933336531396439663732353364353866356438666634353736366233343336373261 +36626230663536336230653862633865323361626631383038623863623039326532666561376331 +65653037313535663364616166363435323632636365303831363134353539346635373733353537 +34363135623365373661653832343630346232376335373566366565323561306662376566633763 +32633966323863643431316436343433663535643432346563316366366437313363646435666130 +36333237353465333631666163643230303333353835333765396439383762643437636538393637 +37643463613765366165363939643038383832376335343336613238626536396566393466373063 +34383934306333646637353837343431396237323632613432343863636665333630373036646531 +32336565386662306565366235313733656432353639373965303434373366333539376138306333 +65363665643031636538343164363461636437353461393139653639336166396235363439393336 +39306331663037333264366435616635623865643539646533356330633131326130333432373366 +30326533396163306165666638303661353264306332366361326233366637326263363736643362 +66363735656531336333663963333139613264393634633736313131303432333165653437623935 +35383732636265363661396663323761333464323063653761363636386431323331643063653766 +30643061346565643430313233666136666232643533333839633664643839613363323535653938 +39323561306234613134633538353732363935663734373139373132353935326632313531316230 +32306466313261333934663932323464373666653034376135653966353235306530343061313138 +30336362626165653330376135633063363636313662663635613532306238303338376565663732 +31313266646238373431343864643535343133383532363234656432653839666530326431393739 +39643238306434333439613933346539623338626536643561373038393066633133396235303864 +36303030613935396264653836343634396433336566623761313531313961663639623433343238 +30383031656337663031343830396436333733646263326333396339656564346166383962616634 +39666165663934346436303430396634353234643134633832356338633832346238633833383338 +39653663383664393339333533623263666264313161383563313936336665373632383762366530 +36663634623132393733353230633466323663396262323864346230383662343265333138343134 +38373635616663366131643166653835343639643063663235343431643836343862643431323132 +30623061323966396331376162373032373963613866336139366134376238383765313530393233 +30616336383939313531643130383137333365653561356239386131303765363562303064623262 +32306338623835623465343838326234623762306531623632313432336163323430356237393731 +37616664373161333736613433353763393533386334626331376263353831653132363534373563 +35323237326663356363343138636333333133666163396461316361633363623561323331646164 +63383331343737643835356437313963363231326463363665653638313466353731653938353661 +34626332396431643963663836366633653732303166666532393361346531343531666237636630 +35363966386635613864376636313237613662626137336566336265636337393239313132336237 +64336330313036343239666363396630393137356238663131633538333236626464393836666535 +36613965373261363133393737393265333836366630613430316431616539313434393239373830 +39363835343733353738316337343461383161356161383139366566613332343638316434633632 +62633335663638356335353933326665393038303832323131393663623032393766336536346138 +33396566313664653863386130393436396363386634656135333233316364396534333132663034 +63353230303966376630613437336665393436393363663561633364386663623339393430656266 +30306161633663343934653037343262653037313366326261313231663431636366643765326139 +65353435303865303035386563626432613665326533306433343637643936346234356234666361 +31323239666566643962303433356235336531393231636437643462346463383632633737653437 +62333565373036313161303830333039633563343230396633346561663266616664303037303366 +30643138356530326361636432663236653139663136336366626662306236333831316233376266 +63323463326536663437323865626538653366393238323765393731643561613063376633636434 +63666631363364643630623364356635663335343837616137623439336666386162326131353061 +31336239313863373931306330663961633935356337626265363833316136336638666635333336 +39656338356436626164323663636662393430613130643238633636663639353362323330326138 +35316634323934663365656430653637366630636161326561306164353466383364396338363032 +37356239656163363163393361343461366234646336306435393663396535636466346134643839 +31633661656535306334646561353065386236353837613930633538336236643732613833366433 +61633037396664646566616537666663313564303238636336306338373530346261663538303631 +66313764376439313962653864353831366234316137643030666434373161326633626130336263 +33646238373437623532363939626631613133386366313361613662663137636361626262313039 +32333935396335313338633233663531663733343036393666306434303463353936663935313438 +38623061323061343064303230626162333163373237306436373732353164393535656262643635 +66356266323933363964346466663337653962363539653133623831333563336633396366323536 +38626565386135656438666233366135326166626564383362666139303336616561393835366538 +31373865613230316437336634646238626461313736386262633739356535383238383363363734 +31313066613061343966336630363033616465373634386435383933303464376431393064343164 +37663766316364633137393764393065333964366265626262386135653063656339363063383832 +39313163633830616539383239326363643262343536326664316232613135653932306332343332 +65316366663430653831663736316338306663373035336363376134303133393438616666343938 +34356233393730323861323934323439306465383933653638396263626463373965646230333338 +31313361353264643237623863633332396462653264373030366634393239656563326136636534 +65323132366130653431306133343932386238333832383265353863376638376331366563343636 +30376362346338656165656539616439376235306238336237666436306530373964623338666361 +35623961383061623138366161643338333731346466333366383163343166653639353865636131 +30366536663663313531643636333036343861393039623834613034646436643735376336616363 +36313836373862383135353536303264643337326334356662623265356366323866346266376533 +39366435656631633736616266626230343363313133323335373834386338343736363661386331 +35613461343966303932653336326433356334646634306532396265383830316139653738383139 +37386332393336336530336437613138663666393136656263323462643438633837623531383166 +63336263623732636638393966336662656661383830323463383064333436376539323235346562 +36393632363933313363303734643838643033303164323965373734383964303066636138616339 +33373938386263356365373734393237383133613339613331623062323134386133376631643866 +33373733643336643962633637656566643638366135303930356662396637373331323765626133 +36653436346164646637313033313033306361623964643863336139313838663064353565333132 +64313064343461313830616334633436303964323463663565363561386230346134396335643663 +38306639666637323736663238346637383738633465353963623566383337366161343135373339 +64666533333061326132663137623661633335663564613165626665346364336466316431396166 +36643936316566653433653735383238326636626638393961653161636232613161656164633162 +62376433323838333935616439653233306261356637313031653435373633303965346139386165 +30306530623537633962383364366434623462396465313937376161663731363034326262633561 +38613136353934626232623363363062343939663262356463663335343761636533396663663836 +39383736663630633231613564373865353465643737373030303961393434653265616437333530 +61376264626237623262393464643361316366353363393939303130643235303165383834396532 +36646162366532636435623536653131333066313462383065613562343536333034653164343561 +36353464643263633332663633313366336533313765393236666262633132306436653065646632 +35643635663930666462393762333539643933326666653438313936663461616333306139613138 +31336432313334656230316665316435316134323662306164376437306263313635626162343231 +63613535356334663332313533306233666561303435386663636266623263353936616561636332 +35393438356130396432626261633537316134616535656334303034376461663533326662396635 +36366534376661653133393936346531306133326463626235663461633831393237366538376464 +65643464663764353534353230353331393965633163626236393764613934353839663738626631 +63396633663931373265656466313664383031653434326336366436633765613864613963653563 +32353162663465356539306465613666323963323433363232386336663736633965353965336537 +34373166303839346232653535303764623263313435336238393561386261633534386131326362 +36356136316234333437323039623238376233636363653233356264666366663438613364643731 +34356339643430396539373333653732613839663130303164323735653939373662666433653833 +35653964393032336165326535333437353066623239313835616432313938336263316632303435 +66623865376235646432353961333934653930643232313132626336343532323961616533346630 +62613335323465306539663639323830613934376632653965643062346631646564653066303362 +33323937393831386164363138656538613563396235336631386263316563646164316565616334 +35653737653337303035623133646135663330663062643931323333356664356631383738376465 +35333437336664396238633736623765333238656563363363336665613064313461343062303333 +66633863323562373330393366636263353935643832346437303064353664353734386135353562 +65616630323933313031333430626639303530386535333034313965366361383963306366613731 +30623661626338393466363934336238653531363865646433346535313336616161373465643531 +66626263303764613232393437363264663931663862313435633233393634363339313835333964 +37616565316534346562393839646164656164636137393938613938323866333636313935366366 +66363832396433336237353036633761366362663661333239356637366365313435633132303738 +64383636663132636462303164633863396234663339613133393363653362306232663061373930 +31623965353230393535313861383131303437633630373566653832323639383165396561323466 +62333136663432383261366231356334383830306436353566646433303966386565326463646361 +63363165326431386165333365343734366430646232396161346534623635356631666230613533 +63316233326339626563326666363665323766383836316430363430383664643038663333633230 +39393236303564643530393134316332613437353062616633373438663463356334353039303230 +61626265303465383636376432653933366363333234626130633531613230666237633565333536 +31363434303864396139373863306639383432363537386138643039393635316166373463313934 +66373536363764653635616562623064616162303733393832626336316566646161623363663838 +36633538383866623538616135303161346439343438356465333139393665656362623938343434 +33353837303233616231343863383235383362626630636133656536386530396535333939336238 +62393433383866353765613937613239623838393861626534316533636331653634393636653963 +65393237636461363263353136616231316564663561373661616437383836613963356465346438 +34343333616331353433306363303463653132343635663262373039636632363639373338326563 +31353734663332313364306436626664323563336265623065373035643563626137653739363865 +34383132393330666232353030343033663365363562363861326133636363633764623231626436 +38646335303131376535386436313132346161356333373435643034393037616331316234376466 +30663932643939323764653636313439653565346633363030323139646536613161393663393334 +65383762386134363338363131383934356462376131306264666363366162316439353063636337 +61353263383061353538383165633161346635633131363134373634653637643231393565306432 +38356661363465643963656432653764393539343430626135663362666339383234316134613633 +36343236626639366630306434363933363861386639366661616636666664663337616233323735 +30316330323337636139306235363031653935326361326238323234323765316565336531363138 +64373863303537623265623466346530336533666132666434653562396333623434376638306338 +65633336623237346233626666393937623933303066363666343831326533383637396535306335 +31383838323632623265636665316539653664376236376262353334636538363233613964373730 +64306331613765363031613734323063383036373930666361326337626630306339616134333433 +66326663653866646161626265306236313065316263373733326333316461373862363164643664 +64626430636161333733663930633236666265356437373563353566656639363934353861353631 +38643536343139396337363365326334366466306162353134336536663832303231373231613464 +62333931363733363534353864656632636462333162356461396261373463363566346664653461 +65343665313532386339383735303162353563303936333164656135366632393666653638663330 +35383331313731623838343539666538356262643039353538323031303064353763346261363239 +63613861353037336462656461363435313431613233336630373133373963623462646631663263 +33623230636563386164363562663336653261313063333230366164316464343538366461346530 +39633432313465373332643737623136626336356664613366616539303335303832343036643636 +32623064373637336436346261306466323530623363393761373630613364353733316131646663 +64656539613838333336333965386136646634653266623137313932333230346365366564356439 +61356230386261623837303437353439323134646266616662613136636336613731386365613834 +34306437653735373961353330316361616666316231393862393030393136643135616535666631 +33323935343036653432326338383262303261363730393830633939386332626439373235383366 +37306130343933656530376237333035326231363462373932623635306461663165373338316462 +33366535306239303630626137343233326436343436326664396631643262663866363661393033 +64643838306637313666636130313963396361326533353835326362613936386636393835373536 +32613933306532363662333531653865303464646565323666353762636236623132636638303636 +38363630396566346132333634393636336264623861653461336236613363343736303330366363 +33393464613530303762393464303039623661366133323635366265383035323438353032333765 +31623739393535303564333138643534366530303464353763316530383163386435333734383732 +39646638313734616537393931666135326538356430623836663332323631396234393030313263 +63636337333331383834323638663961303031393133366135303161313731333763323461336666 +37623266386237376564386237613130616434353335343765663230353761616164353339623234 +65343830623462636430313264656665636134323333323134343962343763356331663830346564 +39386436306663393162396235373764333231313239646161366564333330336136666239353261 +39333061616533346533353536643831653462313862316661346364346439376365306134366431 +34306632336365643463396663393863383436396638333261633364343734616135306131333639 +34663639663263393933656233343233633338373266393433613366303662663563326633363765 +36373633333461393863643763633265323861376461303464323038363535323934353465616362 +39366231386266383937616561356230623237343730373438376430386164633164393735373430 +33363134636435333439313666383038643262396666306536633839653636643834333961616333 +38353764383137666163313730373231613162303662303734646138623362303831363065656537 +66346365333137326261353236363833313664623633613365653239376262643262353334353163 +35316361396635333361636665303463363066313034333033613962653131323661383131636166 +61376439656230373237323539383430313138626432613561663834653961613262356539363538 +33363863326436343763303362646264656364323839633436343335623332353435346165643865 +66623233636665313765653562333839386633613839616239313265616561313635646361363732 +61623730633066366539633337666265326137323761346631666136373531353237363136316365 +64383664653063636231633465333561383964313531613861646239316531633532373666383430 +65353365663431383963666530313038323237353135623261393662383764386265393433326432 +38663437633663343232633861346232356133323430373532343062643632613735363433386233 +65633263313364623232376137333263616365356637343161363838383863616230306663663836 +66643331623032373632316133303231393161353231363861613437336164343266376535323739 +64636163613436383664643765386531336663326434653163613064663132396635623334326336 +31666133633265666432346262313838666566373964633135643138373432386435366162376231 +32366532396636663636643562613333343431633436663937313561336435616664306635313637 +62643532366264323737396333656266656662383962343166663463346334373332393663396335 +34376536323337343564313336376630323138303861333164306637383632386434653930656364 +62633133633930363331346338636365333065313930333262353262353933373862316639343936 +39326535393430343166666431353265363364663730393666306431376664396132623038633535 +66323635383735656166356264383064653232363530356531636138663534386339333866666534 +65623031653733393231333733353238313234373432363233613339653435333338656461376134 +34346463653066383862363764656139663062353736386561356361626430343266616662636664 +37623335386464313139643265636431323737336262326265353431613736616437393433393665 +63333230663233306265303332346264653231373066333161373564613638336537666130636638 +32633364376132633562386565656533666438303335303761666261626537306136333031393363 +65353666363764616131353733326465353830313331313836346165326330356437353863623062 +37393436326336616634613162333966323737656466366235333261383835333764373266616433 +39363735656563633664323034396232366531353639386161623530663739306439633438383063 +38626638303166666266323063326435386138306534346231633039336336333562363431373834 +34393538623837366464386364646231656464386132313366373634616430646632333461356437 +61636436613635636437643735333765393066663566643562356264336133346366643333383632 +35316662633432336564656637656366386137646263333838363338336665653564366666636137 +38386136616265633734663264333938643637313361646638613736626338393939353933313162 +36306262383666323465626235383035623836303332663934373838616463633734666464643434 +61336135323630323933663464323662356130333665663733336366383137336233306666303864 +62336438353039633636316237643665303865653634313537616565646632613739663930306135 +35636263303734393065303434643836306331306262626361343135396635353230383166396263 +34353836303961323839616631376439363532343736306631643131656638643565623961613634 +62343933663766373030303838376463313539313933363066316165643830363938323236633063 +31666437346164343933616532633334363665376162313666383337303266656562396338653734 +34623534383930623533653236363961623432653135373234616336633666373631613230353866 +65656539636465323832666466646531623432346639386235643133356134326635346230613836 +61663162646133363062336239306135626335383530616238616531333563373438353132363539 +61396536616133356136633536393763643733363734343232343539656335363533303562393139 +37636235353139623231396135663365303961376632613031326430333231333439653532333639 +66306534383438623130623963656266383361633230623362396533313938316130636634386364 +38333434373662343833633835633065613138666431626632623565376135623931303239623464 +39316535323866306337333363313661313061353237626561616330633464313931373238666537 +61316632343837386361323435353437383930363763376536386362363761366136636639623433 +64383962356464643030323761313662326233363639353232646262383431336435623832623563 +30656139313165303030326632323639623333646334326135623535376462633035363162623161 +34363138613566396232393833363537373165343933303262363635333663613935323439653737 +66376539646465373833626566383361613039313461373530393333396662336236396138613763 +38346463646539343933653966393232313364303764373336363739646632346332356463383338 +32616361653261653663613930353264613132313537646561313330303863666436386137363263 +66386235633635666238386339373435303134643266636363336366303661366135643031323139 +66366335393163323338393861363033343335353766383061353865326564623163333936373935 +31316635653466656637666137326262613734333361653432353635393837623733363430313765 +39623730653337303237336439373464313163653664303233623738343864343166316335616165 +34383330626365353632373866346231363335653861396534333135376361616331663562653734 +34343133656538643738326665343134336536636561643830646637643636633335326364373062 +62663031303963356237663862373535646539393237373761306637333762626363326261366563 +61646132633631353462656137353931313663646463646433346665353233366437643665386634 +36613362636633623737383634653361353865336532333638343837363862653331323464333865 +65356232353238356161653164666665653530376161383133323636663437663239343565326666 +38346161303763343236393766663232623436666162333435346233353739386632383838333466 +65326363653763386264623539306332383134323463373232343636363966613934633039613936 +35333630303736393862346230333232306566313634666363613565366532313935363764323237 +30663333353934343136623963663136336533333137356536303163613334323061386433653030 +37626230666530313763303263316339666663396334356665653636616232316465633064346564 +31633537393130383136306439616361373931633635636464633331636439366337376333333239 +31646134373932376666383134656563616638316166303663326463343534663466313036353535 +38376437343638643738313639343565393032363634356663323866613961346335636364663934 +61663235656461303565346363353263373032393435373133636162336530643736646633393761 +35313034663161313966303764666538373234643332663063393036333739303839316662623239 +64636562323764663038346464353565636530376430633365646332303866306338353030303239 +36666438396364353231363534616238383337343334663465393534653535636135613462306163 +35393338623861386131626438346432366333363632396638373465366333313337376430663330 +65386235663064373034303763366338343436643665336432653735643562663261346263303731 +30313936313364646565653363386366623934396632626436623438303530393035373539323534 +38663337333566663763353737393931626362313039366566666662353138656430366534343831 +65643565313062383733346165326466316434613932313461323731643766373564323830346361 +39333436383462353064303662623663326662663161313535666365633533356336373332343838 +62303934393730613139353866623738356136336630316534313165616439343565623866313863 +35386531306262633930643466343434613862373963633663666461663630346134396231373130 +66396461306434353361386233393538613234386635653066656634653532353039313139383765 +32633731663834343331643633613434353061663836363061666534646135383931643039623661 +32343030613330623435393539383334643036623862313561303632326362623964383165643034 +35366137373437656562663636353833333539653962616265303464633137646265383136366461 +65663262316438396137363433633137633738386564393461313061613063656634303733303635 +39323035333736643066316638343738313936323361613632613538346464666365663936393233 +63363864393161306365663732663536373062376166633534356162643065373834653736356139 +32363938376366663737383232323666313435353564306533376132396534633764333236366134 +65386130623632396533373038623361323334373064333033353136336237656633633538303565 +34613465356236663834303236373437383334303834343231613533666133336166326532356131 +63386362646536386331636337343864356366303564663430333332393832613633356130386331 +63616533643437656337346534653439656230376466663365396432343932663933616463666434 +30336331376639633133303861613961393532626263613562653864323833363130306339303461 +39396661393532376532363564306238323361383334343764343266623338316337643564396566 +38313866626662343961303766343864323263353531616234316538633466366336303735636530 +39353539653535636465373236313638373032353939653730316338393063396561333337666265 +33666561343866346137333835633537666434363231313331366662323163336435336233316161 +31626635666331393164353462633138653432383961653865636133313666643661336266306532 +63376234663535346439653537623638643266303238353963393238613135336665373334323661 +64613264323561373730343339353439653835653964346661653039333338336535326463303330 +30323164643564663930356130326163323961373432393733666364333033383434386666396264 +36333365373435613539346435336465313562376637393539613831343739306262303662666431 +63343238353634636131633830353265313135666234396466366634343038313065393631323131 +35336633613162383464663334343331383330643331613637346234393036396538383933323934 +32343864306136356438636265613366646166316563653933633135373631656535636230383032 +64376234313935653761326631383564386661616164346636313661633261616265343935333039 +32383565653635363365343037336230633032343535323461306131633435633565303038326431 +65643738643634396634333334373632633063636661373334313131313134653436386339353763 +36646538666434386138663437303332656136353961373162663165323364343634656133303561 +62323135313562346635396165663439633462363563363339396434333233346133623535663532 +63663832373833326135323537623764636561663136353966366465303638636163613164636361 +30336564376434376163326433346230346236313135346137353730343238643564313032643334 +32623462363162633637623861303735363635393362333834366564303665366264306661656233 +66386437356539646161393965336161653436323662613063383061616663633764613235336436 +62363233656630343032303838666634346639373031326138656331626535376434643762633231 +39376565653037373434356266356562646334633437306565616439386437356661653466643733 +66373266353934316231343634376237343238666239613039396135336631313633383037623762 +62313562663766376337313566393236376531636431613634643939623433376466393661646437 +32303364613233646666666230626563346633633564636564343230356662633336363533393731 +38396639313361343261366666646237396266616533633961663466343230316265613963616137 +38373933623434646332646530396663383666376633363161303930663734393736643538646433 +66653465393461623864313331666537643062313839386537306331333163316138663837363863 +31363866376339396264303332383935393931343039373131383131373065383363363737643932 +65633334636561386239636238623833303834656261376565663439643838356137333962666435 +31646461643732366433323461353437643432343664323164316462353434653061636237623766 +62636365626539326430643338343362326461316538316561313537363762343731306130376261 +38366438643164336262373631663564613032363731346537653563353538643736316239623163 +64303336336437313632363932643262613135376564303135613035333766646131326264613735 +38306562363033356136343661643662333031623561353362383339623033303032623838343934 +32383133363634633639613861643736653439356339626637666632343138633839626131623762 +38363339613239613137393465333930363961656131636666346364326635636164613266396665 +65353733646161386463386336336432353330303331326361643638636265343633373533343530 +32636135383962396665363765393862353731353537343239636130663433366337386433613330 +35646336616238646466313366316638303765343831633431616536353461626562646538393866 +32613865333437663837303564363063633063653439336266633565626364313338636462613639 +36613564613062363833333466653431356134313432343737366634353738316233303935343930 +35646464656631383534643137373938393362396562646633376138346336646333643666336230 +61656532373631386263653065316439393765613937313631393536383266643239616439333764 +62396638373739353238376230323030313536303264666432363838306665366339643535383738 +30646536373234656330623332366130323033366235663032626664386537396535663565386265 +64393332353264633831646463313361356330383931343733313365623432656363346439303762 +66653064383964313231386332613632333830383064323435633165663433663131663566623866 +66303465376464393731623533396539616163323135326566303466313865356465643539613035 +65663131326666333937653865366565306664653837626539663063393761353938653530633731 +33316434363266373863386561643236303034613932326166326232396139333164626138323664 +36643230633737623166633866656230346536336237353431326364376566613035393863333566 +38373833316336343031383531336463356237393462333363353131643535643661373938356231 +65633563613034623264663535363838353032326236363533323364376535623333376134383466 +64376233653462363866396362613634653638376665373036393266343735363737336364363961 +32393666333534643261636436386462646630353636316234326265393363663537383230316133 +37386265623466393833353030366133306666633338333165336130656562303033383334303536 +35353962313837663939356537616135616462323833623263656538356639326130646263316465 +32646638383865383439396235393463373933356365626234346462326537643838386265326265 +38663238353239336663616431373766653431393761663266396261306263366663333261323866 +38386330363465663961653036623634616262613163353337366330346434626666623761313536 +31633837623431333465343333656336313761336530303761313632333532636464346362343637 +35626165666436373336626539303130393339626266386661326630353365643861613135663364 +64626138333538386238623535356235643964646430313834666563656532633636626330363061 +38333164333239636235313138633865343630303564353239356135353136383639346133376231 +35326632646536326430623535346662353937343436336232353437636533373036363738383330 +61636662356261303861343337663136656461376436386266343439663933633437333634306361 +38656535353432333961663037373130326238373561623930303537613361313632333363376432 +31383930643365363066316336313765306530636263316134376661653661663436383365616465 +33653033326337653038636634643337663831386231333235653262626666333531316637383332 +39326639326364653530346139323865396638383061313131333163393539653461613264303863 +65353433653436333339376338656263353739643766623538386336343732643964393137663561 +30666133393630623038313561643363663163393462306538656565303765323233666232356331 +61636337316639656637383031366666623963323733626337333762623835666435313566616237 +31333462373164353236313238653963343265323866353537643961313434363164656336393030 +38623732663535656666646433643432666333663739646438356663356237353339323937376462 +39643635313461343561396466633964366364383964643464303835623163373463353233386536 +31626238613464376130633233376438373738353965613432633863666631346630373030663738 +31326264623736313538386362643231633461333632373462306665633035303532653566353437 +63373433303738343631623933353835343537373434663466643833366136353431363832666330 +37613033333335653662626539383337633266326336633761633137653662373833306534303238 +39633264346130653530393630363165333730363566323837323033626436383830623032653633 +65303732643066346238393461383436353838323730373836623131396464313436356362386239 +32663233633738643037663132623363643266363763353866653463346633326135346632646239 +34346166346331333065303139653562353265653965643231613761346361386562343132353237 +34313865303638383065383836303465623363353936353431356133643832626339616633396232 +30643065323534336338646235303239613966316465373936323566623335333636653131306266 +61613437346434393938636331366461383337323830383030636437616136336466303430663730 +36363733333833376365656566636364333437643166303863643133653534613138633032363035 +62363963353234336438313965313037663966323964646438313535386535386661373063303264 +62376137376565353537366430373337383363383339313732656437303032376562373766353131 +30383639343936316232643564333932373365326563666161616539616166376135643230646664 +32343236663030353738333635373831646162326434636631663533323534633666643532623539 +63653237306331336238386637383864313136386133616432366431313433323232623838323865 +31646166613863663537663930393863663530326565626534383262323436313462663931623932 +35323534666233646661653134363566393232383966626436306132663235383934636236313136 +66386331393035626334633665366235303539376533336331623364303531613132303333323231 +31663133343534623465303239623931303335383739323863623431336365363362316338303934 +66306365356134626161353461633037626631313030353634643564666663376561613639613361 +62393661343661383431623265363838653165343832663737333665383163613238386462633966 +66306539636563653139303430333233663332343763366131626430333866393639336564386461 +61396261386366366430343738303961616461373039396364306630333938393330303661636134 +39623635326633383165653362653337356430633262346535643063353466343432303330653665 +62393932633137386436333435623432623166393061666236323239383639653361396536303036 +61313463326334376438313465306366313035643963316130653335396236616563373637646234 +37653363303431396336633663636165623765626265313765376362386266323431653966346261 +31333134663163616638633432643231393032386634653165353530313265616565366163363739 +33323331663766386439656439373931353137613938343663383236633638363337616264343832 +36343539663164656639643838663662383931366530363235656438646438353933643061373931 +35623234326234633731643063343230663766623631633939363439643935366630356639373136 +36626334633065653232356464636235653130653762396361626661343037313834643536313163 +34653763356333396261373766626430323139326433323765306333663163313539363139613166 +64313632383166363664376331623261633831623033303566343836653665346333646536626233 +32393638313333643432623930343139343133613263616631383364356664616166396239356437 +63353531386435303535643238633761346262663738343262346133633435663830313736633339 +30663837346632333766663333623464663932326339616532373434636536383336613664303238 +65306130616437343337316438356136336230656233363763396338656531393765353262333037 +36656134333037346263343666666164306161626564333561613039393364313739643639366234 +61613261646437363763363834313237326630333035353862346132653966333038303662383039 +35353839396236313033396530333331656534316361393530306237646364353461663936343164 +37326437643238303966373666356236653962666264633162333065643732396664633734626133 +36343432613266626231313666343564373432373832316163303537306134643835373533373263 +30343861343531326536663035613339623334303863643162393131353034323930636563356135 +36623763636465386665653333633239613138303861326633623461336361663631346431346233 +33386131333461663266653961303433646638343636316233643963643738343932613866326639 +66336530623339363833386237613766623931616439366162303365313366623662613663646162 +31376531316534346631306534323162373037303533336639383638666662323634333436356232 +64343837383034353639373064343336313134356331386365656262663832363331386363633830 +31643237366438313864346531623234373661346236363832623662323837626230623635323062 +66623831373235396132666633363963393863636363313263393039336365313465313836336436 +62316537373434613132636234663335643365653261633139333837336434333264363233346234 +38643164323461653466356432373466656235396365383966326662363966663965616231393436 +63653035636235623134613132373263336137633662373339323366646361313466316230396363 +65316434313436383965353636343031633532646530353235386165356564633761336438653866 +37653332346334396537303537626236633535383531383866373135656538393033343663656438 +65373035636233363034626133363462383438386639353866343561316366373937326434306339 +39663938376438633933363263373439356630333132633734323863363231633264356335663364 +35663630666536336439383335623936663934323363613365613530343431353262623763666661 +33623834666461356631623565636361303839333366303364376664303264366431356230343332 +35353933303836393331383065303730643963383631663263666230353332623536353663323131 +35346662663538396138636664313964396530313739363565316536383833663132356662353061 +31386432663839616630363861373138393030376535653965643566326631633338356531613830 +31316133343961326432613164623266343331393032633632323830386366616566353437336232 +37306465383861356535636433366433313065323265636335663736333564386439323562623030 +33643636623861346463646236643465623961393439373033363830333035333633666132616638 +66323562656165313064393738646138333331663936393431646237653864393332386663333262 +33343638643935366538366462383939633765306334633736356263343337323231363130343231 +38653132663062393932626161643034373762376130633230383061626464663861616530613230 +33613834326661323837646132356162316665626263313763663132376263613832353165363232 +66626434626462363634633931646530386631323061376331373163383139643638656134623734 +62386662323831386133633035633739396532623630383232353465653733353032323339353035 +61333532633635656137623162633937636161356136353739663634316230643031343366353561 +34303336313365333436303965313832303339353162393339383938613065663431393738353266 +37383462623732666437343466373338383232373630346463326639653237343935366264363634 +66663631393236633866653234353933663165376333393864346364666437396566353439373132 +62353162313764616161313563363534396338336466643136356433333639376261643664376261 +61663031623365316434633438653830643365646161656536666136356537396334666662333137 +37383938303434633838393466366236323035316531623262663934323730666230656231353166 +38653231393133616130343762306562323539383263633561303231366337336132626630646434 +36383932366235663532343636626430353036623435393066613934653332343132633830373433 +33313139386361323539663061353566613937303834376166313966633438646631353561316533 +62333633353137366630373638353765323561323033303062383938306165386238616334663237 +66623730373936313965636563323238306566613661383030366234623336353237336533626238 +31313939323430626234366237326238316461323339633765326531636531323633616130316639 +65663137636161643065616539616534333032326262643436656435393661386463376336333939 +36373764613965363336373837616337633766346433333264353638386138356364653761636338 +66333033326661373136636636373565343466323765373034386236303637393634353834306634 +65353463363166356132396131653463336331623732353563353066633361666334323163636133 +32366137363837303565633030626362613232356338363137323333333662643635336563653539 +38646239316532383663323133306662643661373962373933383263633664643031356530633664 +62346139363735663932396564383561626230393964386662653636653964393933633338636335 +31373132623263636336373636353265653064336463653164313666363964633261633134376533 +64613732356537323963626463373738646266346161363039666237633136666530333635333739 +35353531303932333864323134613165373561356438366439366261613734333165616164616237 +37333866626462626363393535643838633739646130396262666264613763653438323431363837 +61333265323232666230343336613233643432396237666536333134353331346166326136313536 +38343435326636656535383238643838393533323062336334646533646235386162353233353238 +32663164313236386636616231663064373761373230373961623133303039333766323730333436 +31643137373533663639316437386634626237393335356139306538656463333765663835336432 +36663431363961633963386665636331626339323438383035363337663263643062343661623964 +30616530343435326462633235396536303330626532323437383431653232646264633462373363 +38393962653731656438656466383962623434653832313635343938376132386536366661666332 +37343435386238393037366639356363666132623133623933376466323664363364343863643639 +33376663323264323037666636353264323236373237353034323761393036613334373134336432 +31316638323232303164346237386661383566393763373762393237623837393135656332383064 +37653031666130363665396436363461353163623334373930643165386533356434643262366131 +61643965306335633564623562626565316333666132333835653433356561333739643634653332 +65393438623962633662333031353234663238643036353463326130646365386165666236373530 +62343465633538656238336461376337653463343330633532353432323634393364326463646235 +62633663656138343337623535316436366365396165633262646530636235633531323536326436 +62633730386333366234323935333835373936333533313363336330663937626136383337366238 +36333139643636663135326162383166613132376336646531613062656365333661636438373137 +32393232633037353230653161393331653439616432653364643464643833336539616230393439 +62313134616362356439613935636133636331313065616463346534646338613934376638383964 +64353734383162316235643530616230326164656630626534373136666338613231303135346164 +30323662303636633831353066613831633637623465663637306662323838613531663233386461 +38356439623238646262343236393536333666663634363964336431343334306666646438323534 +35366164393166633131313461383934633961343437383432643661393865323435663630353330 +30633161303532643163633135623465623563393761613931373462333862663035343239643461 +64643335663434326532383562383738623237643732633135366131376633643035303363656461 +30623330633364316639393731303263306336626332376663303031393662356637643330316133 +39653165653464646361393532633764626235376164373333393666396464346464646261356631 +32383738343266656433623164383835376665316461623636396339333631336438633462633738 +66393231666264646230333836306265343034393861373264643339306339306130313765323363 +36663866656533323461613334656465366437623864313261666266353731313966653263383032 +36303363633235336432653262326662613164323864653863313730616635333866613635653131 +61346361633931376334613538306434653965346230346234386263646431333836353535353966 +33626662306234396536323161643237323535623964656265356161383166646634303062346633 +35366561613462623639356136383837383537376333373136333434303233633964633164323534 +64393134303062626666373762393939326166366434313062633862343162313666653666373163 +66323362363531623765636265323065366435626366626631326330306638633636386131653062 +63376161383838616234653431316132326366396633396266313939393761653862366536313236 +35656437313365633562303036313664646137313561346161636336623439383564633931663533 +30323966373265623332653630643562303966313163313030373231376236333261356637653331 +62373362333463376136323462303261626436396564363666663462306666373133383037313635 +36623563396366383934366538343832383531346537383164346662363565363239643530343564 +63333938386431303562313838616335303935376237663266306664376262636634393038303461 +37663433653962653261373665633833353831613935363136396665356439323637396265333730 +36363330346162353831626434333638643433663965633138313461623135313338353436643331 +34353933333462626665363135363732333931313337656166656664313331376265336565336561 +36643664363030373761353331383965396336633438373762313239373038633932623230633336 +36393035383463386463346637636230633830646262623061373566373539623662316236363136 +36323932393233333032343434323962643034343230373164656235663865653436666462643532 +38613434633638356261343234373263343030653336326462393962663563363430343465353861 +65376161646163616564383730306166386632306635303338373136313539373837396431313237 +32383833373863313038333939333230336533356635323164353664666232316338386664373535 +61343035626230333737643563303335396165383936386535376662303532666438336465663633 +66383037363438656535613962393834346234613061343538333739343937613938366432373161 +39383436363131376432323766303030613662313864353834376165363633383165303830356666 +63616466653336313531303565323937303965643336636135663166306332343539656139633235 +33363733303139646430646438393732643339323332366462303234346130626563616432616133 +35636637643266316636373337333537346434633036376262313037366164656235383962663432 +65386663316337636531386564363637366662393432343336396135613565383061303833383061 +63396234653131343166336538613862326236323836376639316132373430663436613930363733 +34663532613539393831373136656137626536316630376564653732643434646531396239343636 +63613765363430653935303663303037303638656435356631383638616462663539656364623665 +35393063383734613335353964376566303130393031633261623161316636626335643462383835 +63313031346261336639326265396562656661396463613731386536666536303161636434383134 +61363635343737636631366465316632623662313132303431363765646238363461383930386432 +35613564613636666664326265393165353534373763303063346366316366383666303066353633 +32316234303933386136306137383363383631373435356662343165653865396461633137393966 +30303138646563316630393361623936393037616461333635356437613764343261363063663239 +33636461393034336364666664356436636365303739613539633962346661663539643130313739 +64326462393965613939633661373563333238613236353430313231363965363030393761386635 +66633434623466623439623231383034636137396666663965643333323838643232373963663832 +38343138643162393030643632633165666535623233356436653665623731333739343762393633 +30653864626364306238386663386431643133653165663265316439663135386439373132366533 +31663334386566633934303836393839333861633230366266626461323431393666626561303765 +31336237303935383638663939393034396466323864643734343838346666346332376336656632 +35303465353239353661316661356365386633333966663838633633313935633166643638353165 +35646664323939353062373862666362396431313062653263653232353661306433373430653438 +30353464643866363533616563326337393064363234396566336636653236666462373135323462 +63396564313734326437626634383864323962393034313030353532313730353834313936323033 +38363663643763616638303537386265333562653139383034326432303630343464333230306262 +63376634353766393062373434376265333233346164366237306233633965336366646361613066 +66363134383066396163303339393462313463333236333634616534363262316366643431343332 +64633366303938333963336261623864663463626634386631363661313033616634303633376633 +39333366333363323230363965343935666634303531386334613534313230366365383337653530 +34656339656664303466653762396238373331636566346332656536623034336138656632653064 +63323762323933616439373238393865646336646332633261633536666630353136373362316639 +32323232353437323163376464303662373162356636633032663233356463666664636233643564 +32646532666161383138363263666237646663646631346133396166623866656562326266636462 +35356661616261386634636165613638643865613438613965663566356434626433666639303730 +32623438353861613934383634333165326663303833353537366336623737396365633965383833 +39383535383664396431303061323964373336383336316237333435353432343564383430623531 +30393434383839383862616331663234656233303261383835633830303464643638623137366636 +38663437393737373762393833393363613664343833366362633538383736316463623466306362 +37303062633039633630383264363335643634353334653536336137396566613236353733313235 +62386537326630656232653863636332616131353536336161303133386139333335363632363361 +39356538656364316236613163646664363366303836316130373062363864356164326261363865 +34623536613035356538346661643939636262323839653664383138306230643366366535356335 +31333065343264313864326338343464336336373634336138663066353863363663613530343066 +63353435656365656233373533316539313963306637356535376239653833356333663661396634 +66363936646530323133613032356236346439623533636636386232626138396431643866313164 +66353437373933666561653366316465353864616163336636643435313332353539646539366365 +30343438323764336431633236303938326565336137653135303031323561373730653061396562 +30386366383236636562383462313261653564653034373863393338633265666333373830313737 +36666162313335613530393730376130386662373766623238633032306263663034383563326430 +64343035393938633934636662656531383562333564656362346262663432386534663266333566 +39396561316363386633393135613834323165343439643339623634656238353832396337303430 +38333731393930643034396231653431303363396430356338353064653862643863363865386235 +38613865666430343163363430356332343562303061653531373233303832373063353730386533 +61353365653433363166653936386530663161313837303464653936373564633566333266633333 +36613161346637633665633530303063316664363431346234363231393332633238306465333432 +32653237346265343834356639623737313734613663353365313630613837353065313739646635 +36643030353130303733353430306364333139613132376665363036333366653165653861373835 +65386532356461356261343866343365643839393030393438333632346235323336623861316134 +65373934363530643338313838376634386638313533316265336538306236623563353861316531 +35626261613463623435326439386632313231643635613232633935653031643236663261316264 +35333931343939303530366366323935363765383166323566663334306532316636653234323131 +34353631313632643238616261623437653062336538373362353165656661653634366535656631 +32333534663162343835383239386437333732646632396631646532656437643438636134346131 +33393039643839306239393663616538656237653036323932353665366536313539386461383534 +31666335633565306264656236636336363931366335626334663634303661613064396634376432 +36363637643434363531363633623034353530363033383036333935323163633633346566613436 +32316235653164313165633061393732636338653166653562643139323535363464313638363131 +64356466376561333436643862326465346636393434663939663364316134653833333162666561 +32383661396266373030623333653035656663383535646661376163343539626463386463373165 +63353862623933396534633333383063323730313638353263323237653064313532313639353434 +33623435613965623339313439353037373733363730346163663761616139393962396262343834 +66323462636137353066353638306435623833316530316531363033386438363032383434616536 +62386166356631633762383233313831393664396161636661343133353164376362373434643833 +62613935343534643939356531303964373063326566633932643238616366363766393534386136 +32383336306132353434613464646137633266663631323039383165613737613339376265333537 +32323137636432313337303033366361666233393535353462623131303536663739313533616431 +39373734366234356466633963626462653566343464346333646636336232613738393932643161 +33353833383865383864663065643062663836336232643031626537626236383566303136326435 +62616365613735386365333431376539313537643631383037326431363039363537643137303932 +38666361363761376537623962346662306265666166613361303338383832626230663131616362 +31613962313165636339396638333665626534666661306466623639313330373763623366666363 +37613735386532613032616462306262366562646136333738373631643831363761613833396466 +38316232653134316137616134616637313437363439313938633830613334353039383834366539 +30346231656166633834333537616138313237633365336332376131656462343938316631393935 +36653862316161373261303137646666336138306131613930653761396235626230333033316661 +37663632633532306663356534386162303838643336633339663336343238343036663162383037 +38616566656530643039373630376234336662376131303561663866636238636332633965396134 +64316532636338373233356432303863363531623365636261393232643533303461333337353136 +32376133643130303139613734353832306539306432623464336638613466366561353031623835 +66333937623935323134636633346433363239303039663561393666336238316330383066383362 +64333932363636313164396430323238623661396262383232616632356263656338343363346136 +35346331396430363733626461643833663238326537343637623964643666306138666465616364 +35363039626166393933386265626238303664383432633034393935613334343964386532323937 +66653234396638393632323964383936613738633039663831623661373530393161623737346330 +39333532313231313633353462303538383562336633316561653230393535306237336335346138 +34616566636534343438353035646436613038376636363264636235623262313733376535613837 +35353462346364663366646230343537636531333936356230616132346434323336323635306539 +32343031653766353565303532613462313136623834373239346638306637646166356439373834 +30393165356330633236666330343732396230643835333635313163653063366234643237646335 +65366530336536333432623864343661623735653231323131653162633666666463326333353765 +62316438383931366630656465313433653235656331653663666431656233393236363865306335 +61323561646332313562643765386636653131636330313965616136353036626238373031353835 +37613262353335333137333766396230373261623137396333633236343533633264313837636131 +35663435613634643564343734393061313236633232313563613537313563386163323037333333 +39663362643863396436393838333863653030653330366339376335366361666239643962373932 +34336664323866333263626466383061386532373861623963663836323233653731306163313961 +32623761376166396361363466623134363430396539323263636132666564396166613865366336 +30326466373236346663633436353464393562366535323636356662653465666234316235663163 +61366230323663306230353238353639633435633435313862396564633932326539653532313666 +64653534636432656233323163333538333934396664386163313536343934623531383230336231 +36306565326531383232613531643430663732383137343134323337636632643261643966383131 +62643462663735613264623232353961393233336461663632346337623239343130633261346365 +34646634383162393162303566393639643239623166643463323036373335386165343530373935 +64383435336135303966353833386363353439356461613834366232643135336364313466666538 +30613938393736333736333466633933633932383838386531326662336230643862353331653439 +62393734336463333938623036306239613262653530376463633437356236643465333331346562 +66653265316131666261393665643966656334666131616164313734306436326464363436336334 +64653132343366663933663233366230343033303837316232643235356364613232356664643762 +38376232356662663233333137613633656134623937323966343238666465656434396131656134 +31643232646535633736626232383931653937643535666436336130383230633861323436366531 +65303830303262613935343262613131663936316233356364613539373563653938323234636131 +64336461363034643263313262376561306536643430373364623637663066343233363339383732 +33373736373638383831396435643130343633356235343431336636626137663131343733313534 +33386535336161356562306561613462636463373933633064306363343236343164333466326661 +39613235663036373332376163663635633238653333343832663666623138353031363666646630 +66306439333637666365663262303565316562343135353239383766393133313963383662376334 +62613738633030376364626139663261326237353131636438306166643561316434343565623333 +64333934623433663237633334363564323938636561666365393266323166373636353231663938 +30663039636638383835643931643031366166663235393038313264333434333666643431626162 +37316161343634643235306530336437323439323961393437353737633963333666653066626365 +64303964663738626662386639383763306263623436373764333266386131323535313533643038 +31633130623635333763316362643036636233663365396138643738643839373639323162363062 +61313635333763626535376262653030623436633937313237363530353765303735356362643036 +35353664333730346237323039636232313334613665313132646131343237313837643139313938 +39633065623666326436643531343938366361316166363136356164656337373735383338323637 +30383039386361313834663064303337313937313635356632646162623765633937383462353438 +36343831386430643463663063616536633730386532356365653165396332656361633836363963 +34633238343035313236323465353437323636336364643736316230383035306230323065326631 +38373038636364386235333065633366666461653631383934623233656638363735386262656361 +64333863376633633463653535626334343461313130666463613338323661633331313136343363 +35383235383363613264333663633939333436663032376236336564666131323538633134313535 +34336532386135633163316134633665323634363832343335653762346234623464343235356265 +32396639666562393235636532393731353730353738393230306661616666643438386363306264 +36373730666466633732333862323036623632353565343333663732646535656339393064636261 +34346366636635303264633662613835613933633339336432383365616137336632373461333132 +30346231646235626332366566353066373564656131613365653061633266333536643331353237 +32316162383830383033643932303862306534623433353233393931383035646135636465333837 +31396364303335343166613661393335323565623333623832666164386634306664653663383462 +39616462333438333036623165653832646563336261333865386131313363613835613465383339 +39383161323334643533613935373062313638663635633034646466326461666233653564313539 +34376139643866356137303139616266653066633435623930656163653661376464633861636164 +37663566326562336365616164643634383164666463353264353061323463376431383530323665 +39376136353634346362643262313035646230373162376264343530353364643832626366353733 +32623264376330323566373935633062386435616436323137393934306333356537636433353266 +34623362643836313730633132393737316334623562373133616662636438313935643533316438 +33313964666232663664323365303131613630306365393764326537343963653563626538383861 +65643033663531376235346238613630326336643538306238326465373937393365336564313034 +64316563646135343535326363396465343434343261653366613063623862323263353633663838 +32326135356530326434663864303330616637316337616238323263616463343332396466333635 +64353734363761613332616432333461396539633235366231666263336631313736333161663661 +39363530396231393235393661613036313632613365376563373638616661613265376539656466 +66643963303931336433343064396561333236643465313234393264623338626266366434626461 +33636134313939616661636337663631613065393436653937366363663937383536666233323237 +30613733383735653539373937313463363038373034653937636236393638666464663865333139 +35376365343566646638343263383563396638376161386438663332326333333663316338656463 +34346632653465623836383336613336386663303439393965633061316663343337396137623561 +62356664303539623436396563303736656630626435636530363737323130313966313236316165 +35343766343831353765653661343362666364366338633963633136636338386333326631636631 +64653161363732333266393963613033336334386338356538353039376266616232343462393063 +36666561623335613334663666353635363762336665313666343934313232303164613631336465 +38653337656166323036653132633233343363383262353661623733643534653262393964623539 +36303066336662333862636634653433386666303237346661306633306637636562643963393539 +65656439356538663135376566323337323832386436313039373765383039653665636265613034 +65636538616631363336646162653533316261346430373461613261616437656165376433313432 +64363638633839306335626361623531346333333062316137333432303562613262336336393962 +39323237383963383234303937663134366461313661366266396637366330356461356531363735 +62336537363865323461383633333464633732333233303633336434663034376365326531353766 +33643464326539656262366530373339646633376634373334343237666533626437636531633738 +39323461376433393336396638663761373034306335376261623438306362656532326363646231 +36326264373064316634353763633838616336653039373238303333336665313136366632643265 +37663734376234366361376162373535663934656331393762643237353261343333303665616335 +66366332333566313135646138363638383838383230303331643331396634343761303539653836 +30613164643361643861323637636238313138353065633534656437336132303330343938396530 +39633532373239616131653938633832396165633330326564363563653565643738316633363433 +37356536353935306432313639653762643862313063343238316236346135616632336361653936 +64653163343961636163646165333536323266636564653536646330636136383930316633666432 +32393566333539323865366235323335663663376263393661343165353533333235376435646465 +30353733383663646464336534336232643833336362346165613563663132653735623565386131 +35343331313138363536363463633964346261653535313135326238353064386634656363653137 +66376262393336323064623236396263356434666464326466636638366661633139623330303233 +61396235323365353939663533643063376133363466643565383665663064323633393762383662 +66316435643762653165316231366465616334353363386636353861666461616464633230306362 +38653663363831643535653230633163666139663337333465376539646261353234353236336636 +66383839353761366237303530636164346130653336666262373137643836323737383066653734 +36646264656234363936353331316162633538626430363136313265626333313739336364323764 +36663934623038396330323734626137613837643865653039643565333132616535336530353133 +64613730323439663662663863323437663061626239353631623939303234396163663564663066 +66316537613332373136643164626536323236303939343362653033323765326631643535623035 +66313935336562373938316435656335333630373566383939386266343761343465393036616538 +36623636333834306339313337303863616136663139653365613230306664613961383634333839 +36633838303664326161383363643566366264383132343630653931346332336638633135633730 +65383234323537623137663163616232366131633235666532333263323661363461643836396462 +34633861633532653964383539653465313338616236396435646338353639333163333736663264 +33366261356536333161333931373538613562626432636538333266663366373666333136616239 +34646431373837366133363038393331323036326531616561323935356532356365333566333734 +30373538383839643066653963643336626561646135386136656433353462343235316435656364 +32383166623437623664663061313333643532363230396639366366323632326462653533373566 +32613131616666323266623462336665373966653539623730653237643864643437633764373166 +62386639613137646365346165666662386266663865633235313232336461613133313466326237 +32616431656236333130373331313731636333643731663231633063353064613034386462356439 +34313538373866643166643165323265336433306536383862343866373237386462646362383333 +35373831303130326235663530333862383661643164633831373261383432306531316431626433 +63373536373737313366353864636334643433373238313763393635373431656637663562306163 +31303163393239656330333530316437373932646265303039373939356330303033316332666531 +65323836333335343332633362626133613936663663663930306535333337643739393936656365 +61353837326361616132343931373837353834613830666364366534613433666439616230663061 +63326339303131363432366138303931623665313464366235373733633833373366373637386433 +31636137343532616232613236356234303334623964323961623232333765346361663031343266 +61636532313231613466363961643139653636613765633539666338613066643034343735396631 +36633565323239616266666134646636383661386364656530306530353936376431373136643235 +36323332663461383436383364376130313730653338353237346638363632626632316137346532 +63613437386534353064646634396164613965666537663331616630343062623736616230313865 +39613639646139643438313961376235633864316135303138663636393337393333356464653464 +33336235653064643463653666643766306336646337336335643865306431356563313564323664 +32626265616637333535303433323864643134653631333361343031623265343233303930336437 +37626537356566366164353637303261393135303534336230386634653830363236323834636633 +62393965616261646135396366356266346532306261653664666232656266356133633139653561 +64643237393038353431353239343263303136383534643263353764303663646266376662373930 +37373031633536306132373732626137643633393138633565326539343065303932616230633637 +35633761323564306339306564376433643031363536363730393765363734656465646436613961 +38346139653966623262643865616430656634616666316230393935653465346363383662666336 +33323535326466356532633965316134616534633663383837373732376130336631393564376436 +34333233313539376536323331306331373037393137633462386639616338373563636261613230 +37326137336238396637326332653430383833623737313739373036666631303932653930336135 +61353936646466613662633736653433303734343139383238653536306263623334353264323332 +32313830333730646166643637316463386261346366393438373638663265643065336437366461 +34643435393036373662636436313232633134396331653234323939633064663565353736336234 +64336462313761396531366235356666396463346561373634323961393035626665663466663731 +36323336646435336139313732363037393164623164396137623831623331653261623365306233 +38353366616237383130663234346630353135353131393166353034616661346265393637633764 +38646561366535396461326461623836643661383133666133643563623833316239313233323964 +37656164383830353165336438353738616633383139646231646138363664643062343464656263 +39666132313666333266316165353734363534346532643134306333633231396561613466653939 +64396534376163316135313639316265333132663062333232623365656361646430333832356439 +34643236336537356337643464313861393662643333363337353630616532653163363135373763 +35663765396437376539363933353564373132393061643062356564333265303836616664336435 +66343066306639623539386363663433393837623861633230333134316263303763346537326564 +65613136333263303164646663336263363263333161653131373436306161326431656561663138 +37643666663839613634363235363464363834353335663862383564346461613864663563303433 +36633462363031633661373764373639346162326433653234313332636361316332626230666539 +33633165313533663637643433323832396630336366313263303663393434383362383162323730 +31303936626239393538653366666131343963643639316137353965303738386232333537643133 +35636264393933616635663461643337656631313964333162363163663735636233666561356434 +37326365353561663336616136626236303333363633393864623133653335376365643236646537 +37356565643163643935303833616532343639636334633731386461653463613062373534633966 +61353961356538623336653831363633336362376432313439346534656437363366633533663064 +31353330333464326237316234323763666637343834333433626561393762306639636466623464 +30323966623836353762343431633431303636636463623961373537616230613461353839383865 +30356663633466386631303162313163393466393633316666626263613236306131346637383061 +37663531373762663637333135356630613037376133633235653566306236356665616639303731 +39316364323732643961363430316361303464636331316633613037386430363833343064353966 +61646539373334626630396565353662663966306539393065366139616236623139396537333534 +65633061343038363939393430306639373639366262636564646465303338333431373832623431 +64376538663837326530313466616263613165376631646662663536386264336337376661353831 +34316431386437623338303936383339396262363864336661393838613435323963643338356537 +64646539333363663961346634333431343839306433616464623561326637623030643837633165 +61333864653162386439643034363532336632303865306261383762373337643036616565616537 +31383934633439653338646236336662626265633638356462613465623065306437363831313238 +65343537343034313265653536653561663132393639393964663366663532656630356639393662 +38626265376439663332633161646666313866613539386438363630383237303366383436633433 +30623862323363633330313133633339633638313466666637633430353437326165343638386665 +34386632653337343134376132323130336137666136656630313938346166376263326662396539 +65636332343633616161653166323764313661653962623534616266363966333531643065346134 +38306263666433346465346237393265396664313638376335663739366532333638343638633737 +66333766643337346139653735383333646139663034666365333038623630643264373838653963 +62626163633662336438333531323432343665316230653731633366613337316539353063313762 +39343961363832363266383938643635633062366333326630613662326237666538363864303061 +30313435343066613536663865323261333230316139636639383239383465646233333663326335 +38643363303065653930393966353132343739326265376130363663643837633330376236343235 +66346436353164396532616137663933626634633638303065326462373364396564313662646265 +61633930656639396239333737363861363536336364656662623235353463346139366663663966 +61376633366431633930653363343339623365333734653932626164323432376632366130653064 +66643231616330636166313666646131366139353436366631373436623061336164623534363736 +39393665356431656330323239346138326664316164666661366239383237386333343963303237 +30316630393366303637306233393533346162376630666635656162313231333133663834663862 +61663962323433636539333263323261323533333864376236313062333138383034643035373737 +39623931633732663532343936326637613765653335346565386465653735616366313638626261 +35623635316661333463616161623632376537623235376139366535303237393833333537383334 +35646436356139323133326363383638666530353030656534373030376332346537323664373466 +37633039386463316134633430636164333738343539383361363634653233313439653965363266 +39323966393936363233623966646632333133386538396261623838333933663065613232373764 +38656566353361386639343735343338366539323065646135346438303435343837666430353564 +36653135643235613339343430616235346430666565663335316638656466616163653138376331 +63376566396264656535396631303164306337666163643932353531316233313531613633366631 +33613432626634316537386238636434623236306464366564653564333265366532663062623332 +31303830626430333331623432306166373838646132383138316231353465656365653665353838 +61343030383534343930643961303566633834396461363137643937623362333939623762643265 +32313961366464653735373865633066376666303632396263633961663538356635383035313630 +32656538396334626230303861326633303539303235613538373831313338363438316663663830 +38653538323036333463323334363266333330336639333162383063303737373966333063383836 +63653039373232366562383830643762306637306139646361396537383435306437623535636539 +30323339613933623736636333393065323434336266363465326532663734386639356233663837 +33666334636635383136356363393337313630366462616361626538636361623039653635343661 +61346664616439396437643431663037643762616636643431393765313038363335303537313361 +65653361373862366230663565363463373362363865656431363761366665343234366234383766 +38343635623935666433386631613038613265366435316365343239643532386566393838313664 +66646238316235376564303532613434333364336331313232353439356236386534646137626238 +34663433616636643539363731393833663832643232396230333962643766643865646535393834 +36326630646531386461326532613738353765313331663734636135386562336565353262616264 +30313531313961316235373733363133613530306631643434343537303664653631363732346636 +66613233346361313964663230623733363762613532383637633535366563313433376139363430 +36656462656162383431303464653861613230336238323939653132313136366665326233323363 +66376365623031663237346432313964373861333237333665346339343565613364626638636264 +33636336383466373232336364626338303634366133666463373030346136626133386330616466 +63383864373761643937346337316365663636363262393862363134393138653838626131366366 +61663666633430663961356264363531353137313036356566636561333866643166363764623263 +39653631353038303238356337303837633464653061303139663931653932633232633063376239 +34303732346264646666623133303237623635333436356336623239333636636630646462313234 +62353162326565306333373631363761366463386638656336666330373337333737383363326139 +38653632333962343239376531633764363762303239396439613637326432663963313037313935 +31333137633165616465366130323936663764346439376632356134336665303230323136306139 +30356165663262343664376335616436333839356466646136363831383833643838313236626566 +34633332393431376238363939616533363635613161633438356434393266303365373836363534 +30626138666630333364336562316632653164653061653633656161313233356135626635313533 +66373564626238356162623431336134313631306530653366656330353638613937653935366238 +34623938313961343139333536626266313030346635343361613833643632323539626464663039 +30386639303266373066336132306539373533306238316239386661393638316665363033376535 +62363261633566666630303138653764616130333363643362333862613733346162613038616232 +36653964623032656466336137653266386564666230326232396365366531316335343937663835 +34643036646536346132376666663034386432343638373638316335623765383930343030333733 +34313235646564366332643936366435316162383761333565353466613234383431626535613835 +66313065363231623632343363626530343336363766366537356438663230366634383839383232 +37343235346339646665323939313563366561396233303830343731623638366234616666323066 +38383330346564343231386664343735336336383134313631366230656438363530633232343038 +63306566646465323233643936633263363539613561646431636539313632393838383639646264 +38336638396565363431633631636565623536356430393165326464303038313539326561343364 +63616138396130663361653030363462666363343534613561356263306631623964383239356535 +65353463303936636337363231326434316232663235613163336565366231313263623965363638 +64343264386266316530626338323266633030333264396461613837393939646536306363386439 +33666336633661623966353564623239386337313737646337303364643437383836323435666132 +34353162363964333836653762366536386666626632326537396438373232323336313431376461 +31336566346433356663393239346435616234393631333132313265643266653630353961396636 +63356634646139613064656334333736663838623334393537333630633139333564666164636338 +32616330613335386433393661613936363938623063626136366663663636646438313332386565 +38613263393034303563383139363638623132383333646139356638386139366539643065323434 +32636337363630363939313833356430386430346232656332653263353962623139373063666261 +32313331653638623331613438386664383333613365613130633732303738663830373937393861 +37623465666162346536316331656237653133306231633534343735626636383363633335303065 +37656531656161396563373361336266373439623362663865663663326133616636303864633862 +34636465646638323834336365333737333238346462623166333065333934373934653834303733 +31343830653462373765356437663034626165343638346266336435663839333031383434636361 +33346664663233636139623965313530323962366231373465356662303834633731363633323766 +66303766333030303835616162653162663863313235393735323736663537636133633163616432 +35313066373165633262396632303436383734343530313939666162313937323335373631383761 +62313566343734386431333063623161346562313562623063616335663631613366663063303636 +34306135646230323135363561303932633666373064643863383031366335306234376438616436 +35323234333235366532653166666364623234373038336233393335323737643766616337356136 +31363032383337306462633961646337316131633434363066353637613530383362303830656136 +32396536636434363332626432313162353561326137316239336161313664373138336561663535 +61333763393563303732396166383033373939353433633135656161343264643265613264633031 +64363531396432613962353632303433353133353863643633636636373261303039393165326464 +30643136383431663764313539333538353362363435643662633034326561633265626462646439 +30303730356465343262613438633635326263333638613564643863383734633266366430383334 +62303030353338623461616330626662623632356164653535366661396431356237333363646633 +38373765333661646533666434386634653462376334373964663636636134303331376561323339 +31656330346132343533636436623432313931336565353334613137623962626265633362346232 +64316565373238633930306564396238333533303262666362393762393765663766396262323763 +36653337373563306463343965613534366665383736366362393866326134613662333366613966 +31316130626566326461666233353163626666626263643939646365386363353431653965636462 +31666661356638666630663965666331346137633733366466363531633136313038393531343337 +61363136663836356138623264643965323538623730326633623561656561373932333461316462 +61373264393135656263363130336531393461326237356131346434626434313566666239613862 +30383131393765663938376335383331303931643831313931656430373932323934663963366262 +63323837336434383632366237313432646233366638656362353861663966646637376539646239 +35613331316132636466366434613736336331623265376634313738323534323839633166666231 +32336632326135613261613964643439663664613466333031376432626138663734643438376632 +36643561343262343333616666643465653637363234623836336661336633626436633337323564 +35353364306562663263633366343937376532643738623762663133653265656332626337336333 +35626336306138633934383563373438336663313535313161346565653939643233633231333966 +35373065366266306430613536396164313461626236333235653434303263356466343330326466 +31363063353330343561636536343239366339336362373930326462333964383830653166336635 +30376361346132326431643439646665333337613261643065336238343766366634303233323465 +38336439323531623831306364306136356437383538643236313861356330373566336534303366 +35323662393133613561373235326130316364656631346635333664656430343236306636313335 +33366130663937326136366666653065633563323837323162363630393830643533353736346364 +38356137313231653834313430333464373134396663663561643761353263383865316462323632 +65666434343066393734663061353136303763663838656231376633633161623165663834363964 +31336264363465653762613335373130613137313233646637346231313730653663313932623437 +38636263623963343766336330303135333032343063623464633431623933653565666564636562 +65316163656637666138366331323038653665373464313239363732653961386165646431366638 +66636335653163353633616232313264336661386565366235343536346539323461386632346333 +62363539333332313639333833613139333433356634363433363438393733323138333062613330 +35346433356266643937303832323166376131326238353063343430633134373835656263656666 +38613632636365666561383165393732346532633136663236323261393161613361363230386237 +61343864373562636263323166363630386238303731353731383636353536343065333562643434 +30336362616461633931353631366336346230636665303064313435346135373137626565356437 +39663433313634303332613934326335663163373134306361396331383139393437366435363036 +63333438353935643566323563633133376163313162303131653063623764633835306666393636 +65383033613763323564613335303436326362613064353831333135633734666239303762363634 +64656232616164636433386361313432323939393437653630653632616635386431663065363739 +65313261303563643665376437313235643238303965383561396338346332303061396262323164 +61633937363134643839376565633138353936306463363235323061376261656533653239383863 +36376436323266623365316266396639353035323736353233646132333638346264393431316363 +31656661623534376134323531343734363361346130313932653365613434383663373334323330 +32653733633163623932623066333633646439643730336439326162353361626465623063306364 +61323034333963346639643666353937383862336662323738376366663137356331363863326333 +61346466376365313632633831633966623238646534623131326232613336393963393363353534 +36373762613436356136643038633237303966383433373662393935613864626135306334663437 +66356331643735663536393363306663376637333464383938623634643864393431353135366461 +38663731303730633736313033343766643938346439613238366264666235656363656630643465 +65303036633336396139343534653561323736613532393539656437306230653866613232313532 +33303733383632366436633766393335366537306363383533363332396437396630643936353630 +65623339343663623363333738626434316532333830373338643439323665393239616263366530 +39313862343938386361373231333134373239323031636432666166353833363433323463663765 +35343766393139633130303266653434646266636537653738383838616636316538366232316434 +62363631363962653137393935333635623531323337653335343337663935303831386662666334 +30386431373037363238373836653432326561663937353036623162656637653432353533316632 +66343563666466633132386334383265353730306134643537353263336661656334623962386464 +32323635303236333932363435323965653363613630626632316637386634666338346166366563 +37663763333530333466393962363631643563663162346336393965373039646161356465316635 +36386231663431366137353738393966643661666166366137616563333066663236633638616639 +36633765386139323838616239623737653930623233343765373134343366316665323139313365 +32393138663565363963333435633533336438653830656339316135613061616233653762643638 +39663636363935623938303832383463623336653434656534643263653261336162653563343335 +36303239386336666439653037346331343031316364393936636237333733396532633237343965 +65313866613535313637393265643462663562316334613233646264313630376164633763373037 +39346634623433653464303133353732353764326131366131313330363031393466346537386439 +65393139333138336334376530623364613832343031323437383730363863626535633031346431 +66616231333336386134666433666235383266343833323333343537643866336261306365363765 +31383435666439623166643363633536383063633834663136353933306236393731613065356336 +62366232373531353965306232343563616333343630623138323264623565323431336434393839 +36326238643634393435343065383762343664613461396564666364663862323161333063353634 +38613564363432663532333830373162656633346430386434343362646431313638663739383430 +38366463663362636632353232306534353564333865346565663033303362613839613732333366 +64356335306331313039626561613462303830663435653263626566333763626230666338663638 +38323830323465613664333036636664643537613138386238623963363536613435356337383735 +30343265623435643837633337323165336462633761636566356539613735663938353031663530 +39306661613834353139376433376436316531656630343630373539366338323030386164396231 +64626265363439356562343466653835313662633538633737386336613932666566346538373764 +66623139636338383335643836633036393535373430353934373164326538666636313365306664 +37323836646465653439656234396265336361616466383766386536393836393437323133326133 +30373236666331646434306538633461316330626336333631393239373462613365636234383061 +39363566663338333562656161376635666631353364663732336661336461346561353061643634 +31646563666261333238653830383662626638303331353333376132313338363538626263613965 +35333234363036383062356630323839643937646464663364623036653635653463363935343331 +31643664343035623131383039633538313435653666343364303335653835346139633037303230 +62343539376333336635636135646137313333366365316561626462376135613831353539303136 +65353339313933323661663837333437626232306162633066353165396438613865626330303662 +66356337336133306137616438373335656664663762613830303731643530313762303664343832 +38376366326566333030376461326132663437386639653938363734613264386333346132326466 +36623865633165316334643333653766663637303166653931353433366430656235323134646135 +33313963656336643932356665393161626162656261636666336436326638326361333935393430 +63373936373935666332623932633262646233333335326462393364326363313166626232353537 +35383532376663663062383266613234623131653934633565653864633337653665353831356237 +37333063636463386331616631643335336637383164653038323132376234626538643437633666 +33343664383964326635323337353538363538623330376135313566396333306631363664363836 +66633738643661316335346638306261313733663338626261353831386139633061383238373162 +61336263646333663966353335613164323033653738343637623437383830333062643061303066 +30373733303239616336353863323361356162393034386464303239386265653236363563346365 +36313963613063623034653839303063353461336432626236646163313732333937663061333235 +35636239636130363662306366346262376431666638633061346466623961623161613632653230 +62326162616232633433626664323732626133396438643632653437366536306230336433356164 +66376338393836313030363534666536616231346538663963623830363637653435306430343535 +30336233613438323866383964613735353161363533643139323433383762623166343036613830 +30653636636530343364636365323361316666613163666366363062636366376534336133316666 +37393238353564393531353665313065343463616262323638323135663831323335303834333733 +64623330656165666364363061303866643064303764633262376236653265616466323765363266 +33666263666162623639346339316463613464613362633566393332383939393636396231383235 +66643036623133306662363566666531343739633538663165303563386138356464396561346236 +65373232626430343734343664326332656536316461316137613937303334626535663166636564 +32623535636433636162653332663638336634373665336236663135333635623433326164393234 +37303032333831353839623265363330336132336331616466343130646465336339363161363861 +36373831316536316165633132363731633138653238616237653738316163363166646532653365 +31393730353239336562333936643238373830383164646334626564656662393136383239323533 +32633939656633386535623735633931396263343965366638396230366233643232613036373266 +62616466303266323661313338653264316138653264623763363438393436613233333639633863 +61323564633761666463663663336139316461383631366433373533633536346239363766333337 +35306664303839353235373762636461636263313538316537326566656162306536383338636462 +32633636393439396461353331343834323737616563616664306363323633616265313736336134 +38613630326138663034376132633433313163363861323766306139343261313064386631626531 +61656530656463316239363762326366343031613636313434393932323433333735636536316565 +39346133376665393630656135323136383262636532623637666265376135623464316262363137 +35636662333035336239633731643165356333306636343635353863643061323234333362316366 +37646636386466386436383462336636376162383161356164366132396537633335623336303564 +39663032613961353530653666633938656539353132306335636138363664393766613933333937 +38643933653665653437343765633430643230343964643332616638643066346236623663643365 +32643062666263346166323466623133363536393163393065386136363565356266336562373831 +35323264383939313335393334643037633237393931353632653835623133366236653761306663 +66373161376138376636656131373639616263396533666661653630323437353162633063656666 +62313030313566336562396363346239386231616230636166323862626262393338643537653364 +66356262316134303066663439313232643135646135663363323836306537316266393235653066 +36346665343661616434366563663835356266643662343264663337646234313536393761373061 +31333965636464353666396532373737613036643362303661623037356631353433333439336135 +39333566363164333037666161396437613039366234656164653535386537346431636665313931 +39663732383065653663663536363062313666366135636566623038643363666137653932336139 +33323163316431613735306466653036663730333062616563366234363832623839313836303038 +61666134363762646133623438616163376139643861313536316431323337316538646663353361 +63356464376239383930646435363434663034343664613565646435626466323934653663393562 +61623266623362313030333162633035353735353232313165343139653038303562383635343436 +65306236316561643338623734633332623331626561373237626265646630393036326462653631 +62343165353431666333306237356634363764613837633462333261643037363162313161613463 +66663333373562623533643464663430363964303533643531666230366566333634623232343666 +35393939393363663765343335616438383635376465313631376637343761623134363965653932 +31383830636364643533373931653433343936366534353436383164376563303566336433393837 +39373634643330373832333433653439663637616132373635306330373165653434383466663533 +66323339383035393732613038343133623566323832396362313533636137613665346661373335 +32373630366465653231373634333566626233363237643430376463653834353565643066613139 +65393561653833373163643236643264356330333232393439383237333064353837353963613936 +65313435663636346630366239313961373434386231303432383862613366666237643438343537 +37336462323364616261326338613037306362396234353831306364636538313237336432646334 +36383863343237393237363638323330353831363735386661366133616166346232666136343031 +38353535653836363739303861623637303336383839393439616239313632306634653037646666 +64306536353635323830373466373539313635653530353064376663643935643531383837386431 +32346136376538613862643930373438303630646238343735376438666331376432333066636137 +65383535303665396433376338623466636530623636613132383866666665633662303830366263 +31333337373734313861623438353030386133383034306430346561343136643030636635303932 +63383138633366313630313561643330393564316666393266376263343335666363393335643430 +32376134396536646537386332343461323764303161313264326530623866363939643861633537 +64333763666330336264363565356630613462656333633866626333386266336562623265376265 +37366630646230353137326131303230313539353437333535316433316665356437363434623562 +64323434376264396431333735303230633964313933323963343131623936393163663261353236 +61373666616531616238643436613364643365343864303866373665656233313562613366393566 +35316465633438333635663462633838616635356261653637393030363232363532393533636635 +62323334616636643938373534663138613635666661303536343732323735623836333861303030 +66313534303766303365313636356563343135653832316235623230666430376138313639323366 +38376430323134356362666237616639343361303566643732613334343933393261393761333930 +37393733363935626235626630376232623461316530393831373538663034653563366230613264 +39656161333432363064376465646638383861353039393031366235626233666530316236623439 +61323334663061633536313631356562313466316639353434353532316531613031313933326231 +36333965303934303265623834633365643832363339326533383331316263313234623666316630 +35333533306332373061363530653330613634643338623231613364633333323166393938313966 +63653431393637386434626135316264643365646132306430313333333831306234643461353532 +62383466633064613162306238353236373162396637633564363133363632323930353833393439 +62393264623663633063353739346538663638363333653138363132373161323761393934646131 +34396130366338306165326535653266356537396638343362653333306365653161303736376638 +37326662383632306532376161383330373762346362303934653162313133613335636239353261 +30386563333439656261336130346231663334666239643864666562653339616331646433663239 +33626463626262633065613832326433376436343664373264306539356139356539646364303362 +39393037366537303333316161626564626233393434393538626232343831633732373738626165 +66633935316639323262663661313730636465303334633363333361313838353637386536306333 +30643737323935396136373433373938373464663762316530653161353832333263653833323861 +33363439623733376565626634323362356533343232303732353233653036623733333166346465 +30663661656664623263356564373538613038353662343539313131663632316331643333633366 +64383036653665366539373561656338343434383339383563326430393038613364386333643335 +37656164616162613139616331393433343633663066323936353835343831303463666233313863 +38323634633665626663336635353935346534623330343934613438643361373830316462663932 +61303035336164646361323962353737386439653334306164333365656662333631666132356465 +33343363363639363937656263663263383561636631376136616232386664376136393635613439 +39633239336163646238653733616632366135336465333638626532326230356365343732366236 +35396666363337353532636133326666663461623064393066666264626362323939353534656534 +32616565386530613839326564303230313936323533616161376436353632326232353631326165 +31633738333035303639633936356231666537396465616464626166663165323632316163643934 +39343830326233326430653361623964663538663263656430313136336538376564323366316434 +34333534323062303830336533333161626432666336396138663236393633613932306362636337 +36333163663833346563303933643638663134653138626163323861353638626139666566333364 +33643063316636333038306666393635643430313635383235313564316663346265613666343434 +32376264393031363731326262633963393834383261313831363239346231623239363064376138 +62623764626237343335303637626266653334666538303431623131643337646233653239666261 +61636231353163613238383235653932666665356239336433653565626630616234343861613463 +30353330366135376661653664663339663531306237323664666564373163336130653634376637 +31613533616563346661333235646664396232376135633565383830363065396262306235613464 +66313336336135346638383434613936373663366431323435643863386163666132333465313433 +31346638636636313538326230326235336164633561303134393436336363643139313936666334 +63643463623830656565626537393465316332336433666432643761376566346362643136633163 +32656362313938343464326437663863363638613335626465316439646438353936303834373566 +64313166393235383230303165656432616266643862633934326531346463623437346461643138 +63666166343263373133393864656636643834626431616636313030333061653632333864623638 +66313062396631336463353134636265653337633432613532313930396137326230613039383265 +61636633346164643266643462613139353463623065376264633735323838626365323363636539 +33373465346532656533633863396132323263373736303930643262636661393161636266353936 +32633635323233363534613335333734373265323231623963646335333336306334616532363831 +65663064313565393761323030643536373331616337663330353666653636393765316630623936 +61333066663836643433663536646666393065353532393862643735333333626164366362653135 +39316234616664396335383462386130393563326133316330363933653734393630363238373832 +62663139636435353437623266663762346661663334366634633964393630656634663664646132 +37356339363635633163373530373637656364313630373663303064306134386331346133386566 +36663464393365636336636531326338623237333834346636316236633334623532373837366263 +31633533646265353131303436386333386564313831393937396364643530353739303662356366 +30373564643037376563646139343635373462323963643137363832613265633966386535353235 +31356263353366306135623439383137396363656531613235616363363835306338626265636237 +33383335323732616132303866306364303331613563316337386232666131376164633233393266 +38656433373534626332313430303366326566633834376461636338646466313066383530656663 +37386538396465373163663032386235626363653866306666303335336436313366613238326465 +35633062313664616334646632313230313964356365303233383764636233323539636665653437 +36376332633363636536613732653335376139633862313361373433616565376238616566623637 +64373933356435373834633235353239376131353237383031623563646635396664633761613464 +35656633626262323038633464376635636264343033643265343963326462343362616137326561 +65303236326365386336376163393964663637346338653331343331343030663965636463306466 +62323433376261656461373631316363363530313733616630383538666532643739316365646634 +39356234326234626237346336613336363738623765333535393163356361336339376266653163 +30616565383062653665636165623033316431386665383363336566386464363164626563643066 +62643636646632323936306336623233323635373634643438616439336164663864323635613665 +35656366643932666563336435626163306366366334626432656233363039353638613233666362 +30353439396430623130366336333864343861646432666334313734636562643633666637623962 +63386139313131323339613936303564396139656466363239386239303234636264653733623162 +39333837623463636337393465323764323832666138313437343965306662386666383834346564 +62326630383734633535396338613238373035623464613732386131376230313265646636356538 +32343036653339346531356439343535376531333339396162373939306339333939336563646665 +37653664656464623539626361396365313334356135383466326364313765313838346363386661 +66356263366530633936376438656262373532653365653931386239346166313534336137313864 +33666536316363656630353937323633343630333463393032313533306366343463633930653564 +37383963313762313764306533626663646262336536653430343638333665383062383434393639 +62373562333061356436646266376335663237646365386364373765613231386338393538656338 +33623737393162316631623830383637326333616463386632636538333662346630336232616363 +31306335373338666535343532346462313934633639626163303434623131646666343931323430 +65373666636437633664643931346135613135346561376661396236333334653039316236646639 +36643638626464666264393134353663623264356366303066346363386332323866366234336337 +36666636663030343439643131643030623963383130666137633562376164373162333963373164 +34653334616164393937623431663162336538373033336464613631653431353430383830663765 +62613363363632363230613363393265313131343663353437313436383133616664633633376562 +65626138363737663165393831393436636331323133333838366161313362653664653365653363 +63396163353961363039376638376433353262373262353834633332376332366463393665646165 +66656132323335306334326564633939306233393033363763613064323161346335303863633332 +64386230366534356562313533343532653132333235366630353332633365313033393039616531 +61366365326339393966393030333536313535613433653539313638383833633066376662306333 +63376566323630393161373266383732666533353935363563616332623139343533663334653661 +64383266333165363939303935656361346533373734323337373433353161343032363730343137 +30643432653663383065333437643966333033613631633731386563653834643130323765313666 +33643238306237376365623662633937636138336166396263326362326631636538663263633566 +39313633373431633638623961643831326339333739653931323066306163373462396261623463 +63333564393531323365646261353638343630386634333461653433306363623030373266303137 +36306136396132313532633138626661336165376566343865643562626665636466363235616430 +36316561633432666631323535366533613930396232383763623031666630663236343530323062 +37313161613463613266633832353633623563663639353933393336623731323031323339356330 +38393966306531303136653938326431323838363838623131326362626263353635363336326439 +34346636643561313566643564626430336666663563313338343738396366316638333134313264 +36396434346462613536303630383534336530326463616462396139303564376638313837396437 +36643630636335386266646635653830313634623061333164616330383262323938653533396264 +62323563333762343939613839656364633762613833343265613464396232643430333164343839 +33373531636334363663316134323232633133626661616435663731383731666439393933306233 +34393365646137373434363762396433626638616531333764313162653736313862353333356566 +61623062663338616263336164643365373331383430366138383539626461613362366163643766 +61323238363636386365373930366532386236633965663266633536373330326137646530323638 +64636266323364306166626666326134663134353231643031613364393832623363303639343639 +36346431626137613964346337376361643333326639316533376435653835613437323134333664 +39613336366365373137643033303038313863353237363030333133613535323638313065386630 +31363936333631636538636538663064616261333562376334396566393666636133666637613333 +65306238386431613365346364333434393236346239623238386666363539333339373131643035 +30336134623764633966336430346465363032353633336564383130616339643863636230656333 +37323438663263366139623334383630373766373539383434316533333263396633646435386532 +32616163633634656635383031643161643534663231376466623537613166386231353633363930 +64366632316635363063646637633732313964326635393430613134353732646661666162353536 +39633339336462623337363038613165333866383431363735613237303039303164353261616435 +63343465663133313531613436393231636161383338343866396237343038323231613432613235 +61396330353362326337656538363133656136323862363961646632663365646264396134396161 +61333766656135643336626139626236666133333634626465373636363530386135366461363862 +37303065633331346366656434316533613333346464653732643933636639353732666266366637 +65323364306332323237663439623633386666303636373935343565663432333665313138656266 +38396661396361643534646561306530323730346263623930336634306630333434316664636130 +33366338303162623630646438623236653030353632313134346461393237656266353435393530 +34613733336364613530663633343734373939666366623836306431653335366562663263303266 +33633966626135633661363463363065343931393634316461646434333866386638663663373030 +32393236346637653839643435326162646631613932313533306334313734343464613934313562 +65306337613339316530343131623937333939306264313834343637363762313562323431643933 +66373038376135616466386438333039653534356565643263653134393939343130653039636366 +62373734313836633732656363383838653266656665333563666131643538373732353162663737 +61663964376134646438323266303539663966383964353565333837633730346138346431303939 +33386261363831643337623534646537616164373532366366303166303662353861353638663664 +34323565326134313630643732316132643864333738636135363530353565666134636330363364 +36626563643436333064306465353864346435326235343830393336376263353664623463326661 +34343262653139353438666137633064386437633232666462353534343531386135333938663562 +66653061336433653463656263636335303165336133336365623065346636323433343965663465 +66353461393230623835366361643366653037623961313663346233323436336334616464613964 +36353361366661323562633330396663343565663864303934323533666233336363663064636134 +61326335633266666335643565383763383164326364303730383465656532626537316430313831 +33373138623231613133643663356632343633396235373436313030613337303236343634643666 +37356239343662383833656161366365376434373839383436383033313562613831653965666336 +63376432636333363033383362326362326131363633613932336533343734386466363562646561 +37363964353130336265363634386166393930326364646636633162383062636636303966666366 +34383762383438376566623865653231613935383838313133666266313233643661383262316236 +64383734356330333936353638646231613537326264633533623466616338666130343535633639 +36636139633666643732373232323039623733366664656134333363353862376237623837323933 +61393262323431633730346664396336646132353535393230633432613236313737383239626338 +33313637306266366264303834336562616364326566353264666133336466666565323637323665 +37653433643232396133643535373762663531633861396261376138383362393161613666663963 +63653437333533383339643265623264643664636633323434613264396465653366643230326165 +34623837386535623533323162303032376234623964383065333063663632666162663638346661 +65316330663861333064383836643833643064633433613539386663613661643239383834363034 +63346131633435363764396266623961386338653765356232323531356461376535613964336364 +32643037393362313230363263626135633535333334386463383561306466613834393635363230 +61333838326334323866626239656135626666333937623530623963383939656361393137316261 +34396130643233316262636666643663333335356633326362363365616432356230326630336566 +32383934643538626266303336643339353265633436613736303835643439363637653637346131 +35383265323465303032373265373531363937646665306164393662656532356161353639366336 +323164333330653766343462643936386335 diff --git a/scripts/deploy/200-infrastructure.sh b/scripts/deploy/200-infrastructure.sh index d73f51cfa..6e0819fee 100755 --- a/scripts/deploy/200-infrastructure.sh +++ b/scripts/deploy/200-infrastructure.sh @@ -13,6 +13,7 @@ osism apply opensearch osism apply memcached osism apply redis osism apply mariadb +osism apply -e kolla deploy-mariadb-backup osism apply rabbitmq osism apply openvswitch osism apply ovn