veritas-40615258-efb0

job succeeded

time taken
4863 seconds
started at
Fri May 22 22:43:15 2026
updated at
Sat May 23 00:04:18 2026
log uuid
40615258-efb0-424d-ac51-7d65a7989a68
inspect the job's lambda expression
(lambda()
  `((task . ("maak-test" "maak-deploy"))
    (project . "veritas")
    (branch-name . "trunk")
    (clone-url . "https://codeberg.org/jjba23/veritas.git")
    (env . ((VERITAS_REPORTER . monotone-reporter)
            (VERITAS_RUN_BENCHMARKS . false)))))
starting new job...


-> running command: cd /etc/byggsteg/job-clone/veritas/trunk && uname -a

Linux wolk-jjba 6.18.31-gnu #1 SMP PREEMPT_DYNAMIC 1 x86_64 GNU/Linux


-> running command: cd /etc/byggsteg/job-clone/veritas/trunk && git reset --hard && git pull

HEAD is now at 1c335ba fix: ???? Remove logger re-export
Already up to date.


-> running command: cd /etc/byggsteg/job-clone/veritas/trunk && git log --name-status HEAD^..HEAD

commit 1c335bac1ad04f1bcf5e4ddf7a12c3b916982a64
Author: Josep Bigorra <jjbigorra@gmail.com>
Date:   Fri May 22 22:57:15 2026 +0200

    fix: ???? Remove logger re-export

M	src/veritas/veritas.scm


-> running command: cd /etc/byggsteg/job-clone/veritas/trunk && maak test


scanning directories for unit tests...
scanning present working directory for unit tests...

found unit tests: (lists.scm simple.scm introduction.scm numeric.scm)


running unit tests from file: lists.scm, entrypoint: spec


------------------------------------------
[suite] List Manipulation Tests
  [test] Get First Element
    [assert] First element of a number list
    [pass] assertion succesful, got: 1
    [assert] First element of a symbol list
    [pass] assertion succesful, got: a
    [assert] First element of an empty list should be #f
    [pass] assertion succesful, got: #f
  [test] List Length
    [assert] Length of empty list
    [pass] assertion succesful, got: 0
    [assert] Length of list with one element
    [pass] assertion succesful, got: 1
    [assert] Length of list with 3 elements
    [pass] assertion succesful, got: 3
  [test] List Concatenation
    [assert] Concatenate two empty lists
    [pass] assertion succesful, got: ()
    [assert] Concatenate empty list with non-empty
    [pass] assertion succesful, got: (a b)
    [assert] Concatenate two non-empty lists
    [pass] assertion succesful, got: (1 2 3 4 5)
    [assert] Concatenate non-empty list with empty
    [pass] assertion succesful, got: (x y)
[info] ran 1 tasks in: 0 seconds, 6680 microseconds

running unit tests from file: simple.scm, entrypoint: spec


------------------------------------------
[suite] Basic Suite
  [test] Check that function calls work
    [pass] assertion succesful, got: 42
------------------------------------------
[suite] str
  [test] String Operation Tests
    [pass] assertion succesful, got: #t
    [pass] assertion succesful, got: hello world
    [pass] assertion succesful, got: #f
------------------------------------------
[suite] Predicate Tests
  [test] List Predicates
    [assert] Empty list should not be a pair
    [pass] assertion succesful, got: #f
    [assert] Pair should be a pair
    [pass] assertion succesful, got: #t
    [assert] Empty list should be null
    [pass] assertion succesful, got: #t
    [assert] Non-empty list should not be null
    [pass] assertion succesful, got: #f
  [test] some test without suite
    [pass] assertion succesful, got: 1
------------------------------------------
[suite] Error Handling Tests
  [test] No Error on Valid Division
    [assert] Valid division result
    [pass] assertion succesful, got: 5
    [assert] Should not signal error on valid division
    [pass] success running without errors
  [test] Division by Zero Error
    [assert] Should signal error on division by zero
    [pass] success catching error: misc-error: (#f Division by zero () #f)
------------------------------------------
[suite] Complex Data Structure Tests
  [test] Association List Lookups
    [assert] Lookup 'name' in alist
    [pass] assertion succesful, got: Alice
    [assert] Lookup 'age' in alist
    [pass] assertion succesful, got: 30
    [assert] Lookup non-existent key should be #f
    [pass] assertion succesful, got: #f
  [test] Vector Operations
    [assert] Vector ref at index 0
    [pass] assertion succesful, got: 1
    [assert] Vector length
    [pass] assertion succesful, got: 3
    [assert] Vector ref at index 1
    [pass] assertion succesful, got: 2
[info] ran 6 tasks in: 0 seconds, 2952 microseconds

running unit tests from file: introduction.scm, entrypoint: spec


------------------------------------------
[suite] Getting Started with Assertions
  [test] Basic String and Predicate Tests
    [assert] 10 should be greater than 5
    [pass] assertion succesful, got: #t
    [assert] String comparison should be case-sensitive
    [pass] assertion succesful, got: #f
    [assert] Greeting should contain the provided name
    [pass] assertion succesful, got: #t
    [assert] Greeting should be personalized
    [pass] assertion succesful, got: Hello, Veritas!
------------------------------------------
[suite] Testing Logic and List Operations
  [test] Number Classification Logic
    [assert] 0 should be classified as zero
    [pass] assertion succesful, got: zero
    [assert] 99 should be classified as positive
    [pass] assertion succesful, got: positive
    [assert] -1 should be classified as negative
    [pass] assertion succesful, got: negative
  [test] List Summation
    [assert] Sum of an empty list should be 0
    [pass] assertion succesful, got: 0
    [assert] Sum of elements 1 through 5 should be 15
    [pass] assertion succesful, got: 15
------------------------------------------
[suite] Advanced Veritas Features
[info] TRANSIRE RUBICONEM
[info] ALEA IACTA EST
  [test] A test with a complex computation block
[info] before test runs
[info] after test runs
    [assert] Complex computation inside an assertion
    [pass] assertion succesful, got: 144
------------------------------------------
[suite] Error and Exception Handling
  [test] Summing a list with non-numeric elements
    [assert] Should fail when list contains non-numbers
    [pass] success catching error: wrong-type-arg: (+ Wrong type argument in position ~A: ~S (2 a) (a))
  [test] Valid summation should not throw an error
    [assert] Should not fail with a valid list of numbers
    [pass] success running without errors
[info] ran 4 tasks in: 0 seconds, 3282 microseconds

running unit tests from file: numeric.scm, entrypoint: spec


------------------------------------------
[suite] Basic Suite
  [test] Basic Numeric Tests
    [pass] assertion succesful, got: 0
    [pass] assertion succesful, got: 1
    [assert] checks if addition works
    [pass] assertion succesful, got: 4
    [pass] assertion succesful, got: 1
------------------------------------------
[suite] Predicate Tests
  [test] Even Number Checks
    [assert] 1 should not be even
    [pass] assertion succesful, got: #f
    [assert] 4 should be even
    [pass] assertion succesful, got: #t
    [assert] 0 should be even
    [pass] assertion succesful, got: #t
    [assert] 7 should not be even
    [pass] assertion succesful, got: #f
[info] ran 2 tasks in: 0 seconds, 6090 microseconds
[debug] assertion-results: (#t #t #t #t #t #t #t #t)

finished running tests


--------------------------------------------------------------

Maak: the infinitely extensible command runner

Loading tasks from Maak file: /etc/byggsteg/job-clone/veritas/trunk/maak.scm

Executing Maak tasks: test

--------------------------------------------------------------

=> Running Maak task: test

  Run project's tests.


-> running command: cd /etc/byggsteg/job-clone/veritas/trunk && sudo maak deploy

Kanaal 'guix' bijwerken vanuit Git-repository op 'https://codeberg.org/guix/guix.git'...
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://ci.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://ci.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://ci.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://ci.guix.gnu.org'... 100.0%
/gnu/store/317k3wvxkz8qas29bpcs0773x85wzmv2-module-import.drv bouwen...
/gnu/store/zvrvzyg8ki9z7zhwzsbia2lmdpcrv1am-module-import.drv bouwen...
/gnu/store/6canrh4300rbm0qaafm5xiyrg557wjpp-module-import-compiled.drv bouwen...

  1% ??????                                                                        ???
  2% ?????????                                                                       ???
  4% ????????????                                                                      ???
  5% ???????????????                                                                     ???
  6% ??????????????????                                                                    ???
  8% ?????????????????????                                                                   ???
  9% ????????????????????????                                                                  ???
 10% ???????????????????????????                                                                 ???
 11% ??????????????????????????????                                                                ???
 12% ?????????????????????????????????                                                               ???
 14% ?????????????????????????????????                                                               ???
 15% ????????????????????????????????????                                                              ???
 16% ???????????????????????????????????????                                                             ???
 18% ??????????????????????????????????????????                                                            ???
 19% ?????????????????????????????????????????????                                                           ???
 20% ????????????????????????????????????????????????                                                          ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 22% ??????????????????????????????????????????????????????                                                        ???
 24% ?????????????????????????????????????????????????????????                                                       ???
 25% ????????????????????????????????????????????????????????????                                                      ???
 26% ???????????????????????????????????????????????????????????????                                                     ???
 28% ???????????????????????????????????????????????????????????????                                                     ???
 29% ??????????????????????????????????????????????????????????????????                                                    ???
 30% ?????????????????????????????????????????????????????????????????????                                                   ???
 31% ????????????????????????????????????????????????????????????????????????                                                  ???
 32% ???????????????????????????????????????????????????????????????????????????                                                 ???
 34% ??????????????????????????????????????????????????????????????????????????????                                                ???
 35% ?????????????????????????????????????????????????????????????????????????????????                                               ???
 36% ????????????????????????????????????????????????????????????????????????????????????                                              ???
 38% ???????????????????????????????????????????????????????????????????????????????????????                                             ???
 39% ??????????????????????????????????????????????????????????????????????????????????????????                                            ???
 40% ?????????????????????????????????????????????????????????????????????????????????????????????                                           ???
 41% ?????????????????????????????????????????????????????????????????????????????????????????????                                           ???
 42% ????????????????????????????????????????????????????????????????????????????????????????????????                                          ???
 44% ???????????????????????????????????????????????????????????????????????????????????????????????????                                         ???
 45% ??????????????????????????????????????????????????????????????????????????????????????????????????????                                        ???
 46% ?????????????????????????????????????????????????????????????????????????????????????????????????????????                                       ???
 48% ????????????????????????????????????????????????????????????????????????????????????????????????????????????                                      ???
 49% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????                                     ???
 50% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????                                    ???
 51% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                                   ???
 52% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                                  ???
 54% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                                 ???
 55% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                                ???
 56% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                                ???
 57% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                               ???
 59% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                              ???
 60% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                             ???
 61% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                            ???
 62% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                           ???
 64% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                          ???
 65% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                         ???
 66% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                        ???
 68% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                       ???
 69% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                      ???
 70% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                      ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 72% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                    ???
 74% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                   ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 76% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                 ???
 78% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                ???
 79% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????               ???
 80% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????              ???
 81% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????             ???
 82% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????            ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 85% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 86% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????          ???
 88% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????         ???
 89% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????        ???
 90% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????       ???
 91% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????      ???
 92% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????     ???
 94% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????    ???
 95% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????   ???
 96% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????  ???
 98% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ???
 99% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ???
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????/gnu/store/4m0sd584qvciavs3av1bpnj5cwrga2x5-module-import-compiled.drv bouwen...

  1% ??????                                                                        ???
  2% ?????????                                                                       ???
  4% ????????????                                                                      ???
  5% ???????????????                                                                     ???
  6% ??????????????????                                                                    ???
  8% ?????????????????????                                                                   ???
  9% ????????????????????????                                                                  ???
 10% ???????????????????????????                                                                 ???
 11% ??????????????????????????????                                                                ???
 12% ?????????????????????????????????                                                               ???
 14% ?????????????????????????????????                                                               ???
 15% ????????????????????????????????????                                                              ???
 16% ???????????????????????????????????????                                                             ???
 18% ??????????????????????????????????????????                                                            ???
 19% ?????????????????????????????????????????????                                                           ???
 20% ????????????????????????????????????????????????                                                          ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 21% ???????????????????????????????????????????????????                                                         ???
 22% ??????????????????????????????????????????????????????                                                        ???
 24% ?????????????????????????????????????????????????????????                                                       ???
 25% ????????????????????????????????????????????????????????????                                                      ???
 26% ???????????????????????????????????????????????????????????????                                                     ???
 28% ???????????????????????????????????????????????????????????????                                                     ???
 29% ??????????????????????????????????????????????????????????????????                                                    ???
 30% ?????????????????????????????????????????????????????????????????????                                                   ???
 31% ????????????????????????????????????????????????????????????????????????                                                  ???
 32% ???????????????????????????????????????????????????????????????????????????                                                 ???
 34% ??????????????????????????????????????????????????????????????????????????????                                                ???
 35% ?????????????????????????????????????????????????????????????????????????????????                                               ???
 36% ????????????????????????????????????????????????????????????????????????????????????                                              ???
 38% ???????????????????????????????????????????????????????????????????????????????????????                                             ???
 39% ??????????????????????????????????????????????????????????????????????????????????????????                                            ???
 40% ?????????????????????????????????????????????????????????????????????????????????????????????                                           ???
 41% ?????????????????????????????????????????????????????????????????????????????????????????????                                           ???
 42% ????????????????????????????????????????????????????????????????????????????????????????????????                                          ???
 44% ???????????????????????????????????????????????????????????????????????????????????????????????????                                         ???
 45% ??????????????????????????????????????????????????????????????????????????????????????????????????????                                        ???
 46% ?????????????????????????????????????????????????????????????????????????????????????????????????????????                                       ???
 48% ????????????????????????????????????????????????????????????????????????????????????????????????????????????                                      ???
 49% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????                                     ???
 50% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????                                    ???
 51% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                                   ???
 52% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                                  ???
 54% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                                 ???
 55% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                                ???
 56% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                                ???
 57% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                               ???
 59% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                              ???
 60% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                             ???
 61% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                            ???
 62% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                           ???
 64% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                          ???
 65% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                         ???
 66% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                        ???
 68% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                       ???
 69% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                      ???
 70% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                      ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 71% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                     ???
 72% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                    ???
 74% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                   ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 75% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                  ???
 76% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                 ???
 78% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????                ???
 79% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????               ???
 80% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????              ???
 81% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????             ???
 82% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????            ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 84% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 85% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????           ???
 86% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????          ???
 88% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????         ???
 89% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????        ???
 90% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????       ???
 91% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????      ???
 92% ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????     ???
 94% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????    ???
 95% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????   ???
 96% ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????  ???
 98% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ???
 99% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ???
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????/gnu/store/i0sxgspn2i1bvvz9vl4987rhy7sr7l35-compute-guix-derivation.drv bouwen...
Computing Guix derivation for 'x86_64-linux'...  substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
.
.
.
.
.
.
.
..
.
.
..
.
.
.
.
..
.
.
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
.
..
.
.
..
.
guix time-machine: waarschuwing: module  (srfi srfi-26) wordt ingevoerd vanop de externe machine
.
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   4.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   8.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  13.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  17.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  21.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  26.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  30.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  34.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  39.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  43.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  47.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  52.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  56.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  60.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  65.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  69.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  73.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  78.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  82.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  87.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  91.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  95.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://ci.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://ci.guix.gnu.org'...  20.0%
substitute: looking for substitutes on 'https://ci.guix.gnu.org'...  40.0%
substitute: looking for substitutes on 'https://ci.guix.gnu.org'...  60.0%
substitute: looking for substitutes on 'https://ci.guix.gnu.org'...  80.0%
substitute: looking for substitutes on 'https://ci.guix.gnu.org'... 100.0%
The following derivations will be built:
  /gnu/store/3b8jw6802gg2il2xp7wv3qwsgwnj808b-guix-packages-modules.drv
  /gnu/store/5x3sqj04jcimb2hgyimdc539d3fzvdvw-guix-packages-base-modules.drv
  /gnu/store/8a48jdpqqy8q0alz3m63rnc7fi6brr9c-guix-system-modules.drv
  /gnu/store/h01qlw4hh1gjchs9ib87p4pfhhbqb3ja-guix-home-modules.drv
  /gnu/store/lbi2bdf7427r3pal8hcs3bwx179gd9mh-guix-cli-modules.drv
  /gnu/store/lbrdg5pjx19alsb1lqhi6jhhwv12281a-guix-extra-modules.drv
  /gnu/store/ncq1q1pk6aq0dh5vnw6cgjwrkx87jk0d-guix-system-tests-modules.drv
  /gnu/store/qgh63biwqmb8g630rlkkm4rv5wj2c1hm-guix-cli-core-modules.drv
  /gnu/store/w71l2pa68nlqx4j2pfp0pk8rydzh5p3c-guix-core-source.drv
  /gnu/store/qqmmf6z98ac3a57cfz020dacysb2mxzz-guix-core-modules.drv
  /gnu/store/9vrl63q1kizwz4vpzsjh7gzi8xfi3rpn-config.scm.drv
  /gnu/store/rrqxpk3z718lcyvwgdn2i2rw76wdj51b-guix-config-source.drv
  /gnu/store/k943xl1p22dpcz7ma7s8gc1h6bdm2mni-guix-config.drv
  /gnu/store/xpz1rpja0749bindky5f7dkznbcvrpx2-guix-config-modules.drv
  /gnu/store/kzd7nnj5pgh4zgkkww2jgbzklqgw65zm-guix-4963dadfb-modules.drv
  /gnu/store/3sn3kb4751fsdcz95vsy3j0zcp18wzkf-guix-module-union.drv
  /gnu/store/1ix9rvrfxi0xrhgyc3xw7cmmy7565fmv-guix-command.drv
  /gnu/store/6kqgwbnaxcw42cf4biskgny1ls01ki5v-guix-misc.drv
  /gnu/store/qin8rzvwrslcx0qni5g2xn980g0lc3mb-guix-daemon.drv
  /gnu/store/p3ig9z2isl99ia9g0m0gzmm974mxcm8w-guix-4963dadfb.drv
  /gnu/store/4bd1iwgk8nmizb1dvphh78yxjr1gphdp-profile.drv
  /gnu/store/k6qm3hplwws7ybdj9zdp3rlasd70nwwp-inferior-script.scm.drv
  /gnu/store/q8n841426a0a4bv4z4hqq3n8m23jaica-profile.drv

52,9 MB zal binnengehaald worden
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
..
.
.
.
.
.
.
..
.
.
.
.
...
..
.
.
..
2 transplantaten aanbrengen voor git-minimal-2.52.0 ...
..
/gnu/store/9vrl63q1kizwz4vpzsjh7gzi8xfi3rpn-config.scm.drv bouwen...
.
1 transplantaat aanbrengen voor glib-2.83.3 ...
.
2 transplantaten aanbrengen voor avahi-0.8 ...
/gnu/store/qgh63biwqmb8g630rlkkm4rv5wj2c1hm-guix-cli-core-modules.drv bouwen...
1 transplantaat aanbrengen voor guile-avahi-0.4.1 ...
/gnu/store/lbi2bdf7427r3pal8hcs3bwx179gd9mh-guix-cli-modules.drv bouwen...
/gnu/store/rrqxpk3z718lcyvwgdn2i2rw76wdj51b-guix-config-source.drv bouwen...
/gnu/store/w71l2pa68nlqx4j2pfp0pk8rydzh5p3c-guix-core-source.drv bouwen...
/gnu/store/k943xl1p22dpcz7ma7s8gc1h6bdm2mni-guix-config.drv bouwen...

  0% ???                                                                         ???
 50% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????                                    ???
 50% ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????                                    ???
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
100% ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????/gnu/store/qqmmf6z98ac3a57cfz020dacysb2mxzz-guix-core-modules.drv bouwen...
/gnu/store/xpz1rpja0749bindky5f7dkznbcvrpx2-guix-config-modules.drv bouwen...
/gnu/store/lbrdg5pjx19alsb1lqhi6jhhwv12281a-guix-extra-modules.drv bouwen...
/gnu/store/h01qlw4hh1gjchs9ib87p4pfhhbqb3ja-guix-home-modules.drv bouwen...
/gnu/store/6kqgwbnaxcw42cf4biskgny1ls01ki5v-guix-misc.drv bouwen...
/gnu/store/5x3sqj04jcimb2hgyimdc539d3fzvdvw-guix-packages-base-modules.drv bouwen...
/gnu/store/3b8jw6802gg2il2xp7wv3qwsgwnj808b-guix-packages-modules.drv bouwen...
/gnu/store/8a48jdpqqy8q0alz3m63rnc7fi6brr9c-guix-system-modules.drv bouwen...
/gnu/store/ncq1q1pk6aq0dh5vnw6cgjwrkx87jk0d-guix-system-tests-modules.drv bouwen...
/gnu/store/kzd7nnj5pgh4zgkkww2jgbzklqgw65zm-guix-4963dadfb-modules.drv bouwen...
/gnu/store/3sn3kb4751fsdcz95vsy3j0zcp18wzkf-guix-module-union.drv bouwen...
/gnu/store/1ix9rvrfxi0xrhgyc3xw7cmmy7565fmv-guix-command.drv bouwen...
/gnu/store/qin8rzvwrslcx0qni5g2xn980g0lc3mb-guix-daemon.drv bouwen...
/gnu/store/p3ig9z2isl99ia9g0m0gzmm974mxcm8w-guix-4963dadfb.drv bouwen...
CA-certificaatbundel opbouwen...
tonen van Emacs-submappen...
map met lettertypen bouwen...
opbouw van map met Info handleidingen...
profiel bouwen met 1 pakket...
/gnu/store/k6qm3hplwws7ybdj9zdp3rlasd70nwwp-inferior-script.scm.drv bouwen...
pakketcache bouwen...
profiel bouwen met 1 pakket...
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   1.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   1.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   1.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   1.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   1.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   1.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   1.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   1.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   1.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   1.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   1.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   1.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   1.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   1.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   1.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   1.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   1.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   1.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   1.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   1.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   2.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   2.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   2.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   2.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   2.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   2.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   2.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   2.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   2.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   2.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   2.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   2.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   2.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   2.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   2.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   2.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   2.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   2.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   2.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   2.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   3.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   3.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   3.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   3.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   3.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   3.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   3.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   3.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   3.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   3.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   3.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   3.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   3.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   3.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   3.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   3.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   3.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   3.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   3.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   3.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   4.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   4.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   4.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   4.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   4.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   4.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   4.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   4.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   4.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   4.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   4.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   4.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   4.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   4.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   4.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   4.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   4.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   4.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   4.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   4.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   5.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   5.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   5.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   5.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   5.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   5.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   5.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   5.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   5.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   5.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   5.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   5.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   5.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   5.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   5.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   5.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   5.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   5.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   5.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   5.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   6.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   6.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   6.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   6.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   6.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   6.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   6.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   6.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   6.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   6.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   6.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   6.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   6.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   6.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   6.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   6.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   6.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   6.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   6.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   6.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   7.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   7.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   7.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   7.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   7.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   7.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   7.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   7.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   7.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   7.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   7.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   7.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   7.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   7.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   7.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   7.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   7.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   7.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   7.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   7.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   8.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   8.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   8.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   8.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   8.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   8.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   8.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   8.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   8.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   8.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   8.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   8.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   8.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   8.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   8.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   8.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   8.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   8.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   8.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   8.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   9.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   9.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   9.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   9.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   9.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   9.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   9.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   9.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   9.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   9.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   9.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   9.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   9.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   9.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   9.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   9.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   9.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   9.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   9.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   9.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  10.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  10.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  10.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  10.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  10.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  10.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  10.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  10.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  10.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  10.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  10.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  10.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  10.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  10.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  10.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  10.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  10.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  10.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  10.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  10.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  11.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  11.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  11.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  11.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  11.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  11.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  11.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  11.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  11.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  11.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  11.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  11.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  11.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  11.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  11.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  11.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  11.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  11.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  11.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  11.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  12.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  12.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  12.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  12.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  12.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  12.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  12.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  12.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  12.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  12.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  12.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  12.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  12.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  12.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  12.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  12.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  12.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  12.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  12.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  12.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  13.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  13.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  13.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  13.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  13.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  13.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  13.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  13.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  13.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  13.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  13.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  13.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  13.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  13.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  13.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  13.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  13.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  13.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  13.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  13.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  14.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  14.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  14.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  14.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  14.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  14.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  14.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  14.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  14.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  14.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  14.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  14.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  14.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  14.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  14.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  14.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  14.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  14.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  14.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  14.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  15.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  15.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  15.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  15.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  15.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  15.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  15.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  15.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  15.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  15.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  15.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  15.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  15.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  15.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  15.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  15.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  15.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  15.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  15.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  15.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  16.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  16.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  16.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  16.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  16.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  16.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  16.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  16.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  16.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  16.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  16.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  16.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  16.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  16.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  16.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  16.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  16.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  16.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  16.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  16.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  17.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  17.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  17.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  17.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  17.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  17.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  17.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  17.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  17.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  17.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  17.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  17.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  17.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  17.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  17.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  17.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  17.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  17.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  17.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  17.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  18.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  18.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  18.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  18.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  18.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  18.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  18.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  18.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  18.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  18.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  18.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  18.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  18.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  18.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  18.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  18.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  18.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  18.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  18.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  18.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  19.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  19.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  19.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  19.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  19.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  19.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  19.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  19.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  19.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  19.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  19.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  19.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  19.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  19.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  19.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  19.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  19.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  19.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  19.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  19.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  20.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  20.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  20.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  20.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  20.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  20.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  20.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  20.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  20.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  20.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  20.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  20.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  20.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  20.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  20.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  20.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  20.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  20.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  20.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  20.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  21.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  21.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  21.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  21.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  21.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  21.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  21.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  21.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  21.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  21.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  21.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  21.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  21.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  21.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  21.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  21.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  21.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  21.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  21.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  21.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  22.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  22.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  22.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  22.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  22.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  22.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  22.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  22.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  22.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  22.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  22.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  22.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  22.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  22.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  22.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  22.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  22.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  22.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  22.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  22.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  23.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  23.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  23.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  23.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  23.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  23.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  23.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  23.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  23.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  23.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  23.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  23.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  23.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  23.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  23.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  23.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  23.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  23.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  23.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  23.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  24.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  24.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  24.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  24.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  24.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  24.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  24.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  24.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  24.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  24.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  24.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  24.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  24.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  24.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  24.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  24.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  24.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  24.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  24.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  24.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  25.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  25.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  25.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  25.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  25.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  25.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  25.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  25.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  25.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  25.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  25.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  25.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  25.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  25.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  25.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  25.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  25.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  25.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  25.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  25.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  26.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  26.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  26.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  26.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  26.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  26.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  26.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  26.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  26.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  26.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  26.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  26.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  26.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  26.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  26.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  26.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  26.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  26.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  26.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  26.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  27.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  27.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  27.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  27.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  27.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  27.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  27.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  27.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  27.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  27.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  27.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  27.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  27.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  27.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  27.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  27.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  27.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  27.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  27.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  27.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  28.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  28.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  28.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  28.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  28.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  28.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  28.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  28.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  28.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  28.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  28.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  28.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  28.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  28.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  28.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  28.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  28.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  28.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  28.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  28.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  29.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  29.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  29.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  29.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  29.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  29.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  29.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  29.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  29.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  29.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  29.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  29.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  29.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  29.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  29.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  29.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  29.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  29.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  29.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  29.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  30.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  30.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  30.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  30.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  30.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  30.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  30.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  30.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  30.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  30.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  30.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  30.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  30.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  30.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  30.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  30.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  30.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  30.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  30.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  30.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  31.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  31.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  31.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  31.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  31.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  31.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  31.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  31.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  31.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  31.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  31.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  31.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  31.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  31.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  31.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  31.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  31.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  31.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  31.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  31.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  32.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  32.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  32.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  32.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  32.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  32.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  32.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  32.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  32.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  32.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  32.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  32.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  32.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  32.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  32.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  32.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  32.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  32.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  32.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  32.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  33.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  33.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  33.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  33.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  33.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  33.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  33.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  33.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  33.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  33.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  33.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  33.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  33.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  33.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  33.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  33.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  33.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  33.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  33.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  33.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  34.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  34.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  34.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  34.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  34.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  34.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  34.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  34.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  34.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  34.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  34.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  34.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  34.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  34.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  34.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  34.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  34.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  34.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  34.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  34.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  35.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  35.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  35.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  35.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  35.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  35.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  35.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  35.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  35.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  35.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  35.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  35.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  35.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  35.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  35.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  35.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  35.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  35.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  35.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  35.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  36.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  36.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  36.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  36.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  36.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  36.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  36.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  36.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  36.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  36.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  36.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  36.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  36.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  36.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  36.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  36.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  36.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  36.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  36.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  36.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  37.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  37.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  37.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  37.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  37.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  37.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  37.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  37.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  37.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  37.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  37.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  37.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  37.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  37.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  37.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  37.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  37.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  37.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  37.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  37.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  38.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  38.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  38.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  38.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  38.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  38.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  38.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  38.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  38.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  38.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  38.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  38.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  38.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  38.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  38.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  38.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  38.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  38.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  38.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  38.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  39.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  39.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  39.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  39.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  39.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  39.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  39.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  39.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  39.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  39.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  39.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  39.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  39.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  39.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  39.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  39.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  39.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  39.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  39.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  39.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  40.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  40.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  40.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  40.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  40.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  40.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  40.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  40.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  40.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  40.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  40.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  40.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  40.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  40.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  40.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  40.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  40.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  40.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  40.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  40.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  41.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  41.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  41.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  41.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  41.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  41.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  41.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  41.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  41.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  41.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  41.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  41.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  41.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  41.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  41.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  41.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  41.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  41.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  41.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  41.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  42.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  42.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  42.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  42.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  42.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  42.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  42.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  42.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  42.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  42.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  42.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  42.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  42.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  42.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  42.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  42.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  42.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  42.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  42.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  42.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  43.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  43.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  43.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  43.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  43.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  43.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  43.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  43.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  43.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  43.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  43.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  43.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  43.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  43.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  43.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  43.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  43.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  43.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  43.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  43.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  44.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  44.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  44.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  44.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  44.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  44.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  44.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  44.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  44.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  44.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  44.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  44.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  44.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  44.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  44.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  44.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  44.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  44.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  44.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  44.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  45.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  45.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  45.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  45.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  45.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  45.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  45.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  45.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  45.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  45.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  45.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  45.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  45.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  45.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  45.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  45.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  45.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  45.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  45.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  45.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  46.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  46.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  46.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  46.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  46.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  46.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  46.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  46.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  46.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  46.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  46.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  46.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  46.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  46.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  46.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  46.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  46.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  46.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  46.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  46.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  47.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  47.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  47.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  47.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  47.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  47.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  47.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  47.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  47.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  47.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  47.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  47.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  47.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  47.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  47.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  47.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  47.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  47.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  47.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  47.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  48.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  48.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  48.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  48.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  48.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  48.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  48.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  48.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  48.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  48.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  48.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  48.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  48.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  48.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  48.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  48.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  48.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  48.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  48.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  48.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  49.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  49.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  49.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  49.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  49.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  49.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  49.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  49.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  49.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  49.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  49.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  49.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  49.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  49.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  49.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  49.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  49.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  49.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  49.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  49.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  51.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  51.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  51.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  51.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  51.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  51.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  51.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  51.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  51.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  51.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  51.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  51.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  51.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  51.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  51.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  51.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  51.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  51.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  51.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  51.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  52.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  52.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  52.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  52.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  52.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  52.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  52.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  52.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  52.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  52.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  52.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  52.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  52.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  52.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  52.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  52.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  52.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  52.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  52.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  52.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  53.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  53.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  53.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  53.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  53.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  53.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  53.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  53.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  53.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  53.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  53.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  53.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  53.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  53.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  53.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  53.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  53.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  53.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  53.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  53.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  54.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  54.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  54.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  54.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  54.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  54.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  54.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  54.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  54.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  54.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  54.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  54.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  54.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  54.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  54.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  54.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  54.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  54.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  54.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  54.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  55.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  55.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  55.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  55.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  55.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  55.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  55.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  55.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  55.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  55.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  55.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  55.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  55.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  55.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  55.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  55.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  55.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  55.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  55.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  55.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  56.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  56.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  56.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  56.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  56.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  56.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  56.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  56.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  56.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  56.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  56.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  56.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  56.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  56.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  56.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  56.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  56.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  56.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  56.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  56.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  57.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  57.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  57.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  57.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  57.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  57.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  57.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  57.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  57.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  57.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  57.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  57.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  57.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  57.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  57.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  57.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  57.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  57.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  57.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  57.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  58.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  58.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  58.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  58.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  58.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  58.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  58.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  58.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  58.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  58.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  58.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  58.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  58.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  58.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  58.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  58.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  58.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  58.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  58.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  58.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  59.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  59.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  59.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  59.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  59.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  59.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  59.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  59.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  59.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  59.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  59.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  59.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  59.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  59.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  59.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  59.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  59.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  59.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  59.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  59.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  60.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  60.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  60.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  60.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  60.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  60.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  60.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  60.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  60.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  60.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  60.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  60.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  60.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  60.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  60.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  60.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  60.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  60.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  60.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  60.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  61.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  61.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  61.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  61.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  61.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  61.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  61.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  61.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  61.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  61.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  61.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  61.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  61.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  61.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  61.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  61.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  61.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  61.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  61.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  61.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  62.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  62.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  62.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  62.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  62.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  62.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  62.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  62.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  62.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  62.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  62.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  62.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  62.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  62.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  62.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  62.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  62.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  62.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  62.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  62.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  63.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  63.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  63.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  63.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  63.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  63.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  63.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  63.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  63.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  63.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  63.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  63.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  63.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  63.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  63.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  63.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  63.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  63.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  63.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  63.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  64.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  64.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  64.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  64.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  64.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  64.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  64.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  64.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  64.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  64.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  64.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  64.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  64.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  64.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  64.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  64.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  64.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  64.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  64.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  64.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  65.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  65.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  65.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  65.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  65.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  65.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  65.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  65.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  65.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  65.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  65.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  65.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  65.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  65.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  65.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  65.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  65.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  65.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  65.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  65.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  66.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  66.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  66.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  66.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  66.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  66.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  66.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  66.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  66.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  66.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  66.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  66.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  66.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  66.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  66.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  66.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  66.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  66.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  66.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  66.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  67.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  67.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  67.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  67.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  67.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  67.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  67.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  67.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  67.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  67.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  67.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  67.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  67.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  67.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  67.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  67.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  67.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  67.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  67.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  67.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  68.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  68.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  68.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  68.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  68.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  68.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  68.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  68.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  68.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  68.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  68.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  68.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  68.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  68.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  68.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  68.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  68.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  68.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  68.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  68.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  69.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  69.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  69.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  69.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  69.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  69.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  69.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  69.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  69.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  69.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  69.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  69.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  69.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  69.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  69.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  69.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  69.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  69.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  69.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  69.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  70.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  70.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  70.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  70.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  70.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  70.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  70.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  70.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  70.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  70.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  70.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  70.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  70.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  70.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  70.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  70.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  70.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  70.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  70.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  70.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  71.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  71.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  71.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  71.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  71.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  71.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  71.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  71.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  71.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  71.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  71.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  71.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  71.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  71.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  71.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  71.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  71.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  71.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  71.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  71.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  72.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  72.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  72.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  72.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  72.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  72.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  72.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  72.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  72.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  72.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  72.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  72.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  72.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  72.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  72.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  72.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  72.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  72.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  72.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  72.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  73.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  73.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  73.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  73.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  73.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  73.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  73.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  73.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  73.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  73.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  73.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  73.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  73.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  73.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  73.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  73.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  73.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  73.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  73.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  73.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  74.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  74.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  74.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  74.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  74.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  74.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  74.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  74.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  74.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  74.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  74.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  74.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  74.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  74.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  74.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  74.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  74.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  74.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  74.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  74.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  75.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  75.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  75.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  75.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  75.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  75.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  75.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  75.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  75.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  75.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  75.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  75.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  75.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  75.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  75.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  75.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  75.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  75.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  75.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  75.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  76.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  76.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  76.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  76.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  76.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  76.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  76.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  76.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  76.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  76.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  76.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  76.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  76.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  76.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  76.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  76.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  76.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  76.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  76.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  76.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  77.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  77.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  77.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  77.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  77.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  77.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  77.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  77.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  77.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  77.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  77.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  77.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  77.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  77.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  77.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  77.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  77.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  77.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  77.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  77.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  78.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  78.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  78.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  78.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  78.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  78.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  78.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  78.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  78.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  78.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  78.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  78.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  78.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  78.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  78.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  78.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  78.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  78.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  78.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  78.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  79.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  79.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  79.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  79.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  79.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  79.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  79.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  79.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  79.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  79.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  79.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  79.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  79.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  79.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  79.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  79.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  79.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  79.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  79.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  79.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  80.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  80.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  80.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  80.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  80.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  80.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  80.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  80.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  80.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  80.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  80.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  80.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  80.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  80.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  80.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  80.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  80.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  80.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  80.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  80.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  81.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  81.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  81.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  81.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  81.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  81.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  81.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  81.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  81.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  81.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  81.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  81.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  81.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  81.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  81.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  81.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  81.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  81.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  81.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  81.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  82.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  82.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  82.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  82.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  82.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  82.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  82.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  82.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  82.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  82.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  82.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  82.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  82.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  82.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  82.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  82.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  82.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  82.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  82.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  82.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  83.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  83.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  83.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  83.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  83.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  83.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  83.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  83.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  83.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  83.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  83.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  83.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  83.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  83.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  83.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  83.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  83.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  83.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  83.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  83.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  84.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  84.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  84.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  84.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  84.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  84.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  84.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  84.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  84.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  84.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  84.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  84.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  84.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  84.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  84.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  84.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  84.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  84.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  84.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  84.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  85.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  85.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  85.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  85.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  85.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  85.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  85.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  85.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  85.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  85.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  85.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  85.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  85.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  85.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  85.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  85.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  85.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  85.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  85.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  85.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  86.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  86.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  86.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  86.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  86.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  86.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  86.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  86.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  86.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  86.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  86.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  86.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  86.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  86.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  86.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  86.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  86.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  86.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  86.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  86.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  87.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  87.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  87.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  87.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  87.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  87.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  87.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  87.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  87.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  87.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  87.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  87.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  87.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  87.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  87.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  87.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  87.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  87.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  87.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  87.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  88.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  88.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  88.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  88.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  88.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  88.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  88.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  88.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  88.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  88.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  88.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  88.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  88.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  88.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  88.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  88.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  88.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  88.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  88.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  88.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  89.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  89.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  89.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  89.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  89.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  89.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  89.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  89.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  89.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  89.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  89.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  89.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  89.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  89.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  89.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  89.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  89.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  89.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  89.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  89.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  90.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  90.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  90.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  90.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  90.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  90.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  90.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  90.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  90.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  90.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  90.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  90.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  90.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  90.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  90.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  90.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  90.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  90.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  90.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  90.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  91.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  91.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  91.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  91.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  91.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  91.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  91.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  91.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  91.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  91.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  91.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  91.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  91.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  91.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  91.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  91.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  91.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  91.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  91.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  91.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  92.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  92.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  92.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  92.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  92.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  92.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  92.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  92.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  92.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  92.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  92.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  92.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  92.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  92.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  92.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  92.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  92.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  92.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  92.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  92.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  93.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  93.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  93.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  93.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  93.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  93.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  93.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  93.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  93.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  93.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  93.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  93.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  93.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  93.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  93.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  93.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  93.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  93.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  93.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  93.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  94.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  94.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  94.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  94.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  94.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  94.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  94.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  94.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  94.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  94.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  94.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  94.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  94.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  94.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  94.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  94.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  94.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  94.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  94.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  94.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  95.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  95.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  95.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  95.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  95.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  95.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  95.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  95.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  95.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  95.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  95.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  95.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  95.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  95.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  95.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  95.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  95.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  95.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  95.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  95.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  96.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  96.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  96.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  96.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  96.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  96.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  96.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  96.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  96.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  96.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  96.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  96.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  96.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  96.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  96.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  96.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  96.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  96.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  96.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  96.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  97.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  97.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  97.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  97.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  97.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  97.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  97.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  97.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  97.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  97.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  97.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  97.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  97.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  97.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  97.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  97.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  97.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  97.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  97.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  97.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  98.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  98.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  98.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  98.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  98.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  98.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  98.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  98.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  98.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  98.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  98.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  98.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  98.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  98.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  98.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  98.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  98.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  98.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  98.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  98.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  99.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  99.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  99.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  99.1%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  99.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  99.2%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  99.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  99.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  99.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  99.4%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  99.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  99.5%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  99.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  99.6%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  99.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  99.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  99.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  99.8%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  99.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  99.9%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
251,8 MB zal binnengehaald worden
.
..
..
..
.
...
.
..
..
..
.
..
..
..
.
..
..
.
..
..
.
.
.
.
.
.
.
.
..
.
..
..
.
.
..
.
..
.
.
.
....
.
.
.
.
..
..
..
..
.
.
.
.
..
.
.
...
.
..
..
.
.
.
.
.
.
.
...
.
.
.
..
.
..
...
.
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
0,8 MB zal binnengehaald worden
.
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  33.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  66.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
20,4 MB zal binnengehaald worden
.
..
.
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
0,1 MB zal binnengehaald worden
.
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
37,0 MB zal binnengehaald worden
.
.
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  33.3%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  66.7%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
20,8 MB zal binnengehaald worden
.
..
..
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
0,3 MB zal binnengehaald worden
.
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...  50.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
19,5 MB zal binnengehaald worden
.
..
substitute: 
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'...   0.0%
substitute: looking for substitutes on 'https://bordeaux.guix.gnu.org'... 100.0%
0,4 MB zal binnengehaald worden
.
The following derivation will be built:
  /gnu/store/lka9w00v7mg7ql3k63948knrhyhqd5bs-profile.drv

0,2 MB zal binnengehaald worden
.
1 transplantaat aanbrengen voor at-spi2-core-2.52.0 ...
1 transplantaat aanbrengen voor cairo-1.18.4 ...
1 transplantaat aanbrengen voor cairo-1.18.4 ...
1 transplantaat aanbrengen voor desktop-file-utils-0.26 ...
1 transplantaat aanbrengen voor gusb-minimal-0.3.5 ...
2 transplantaten aanbrengen voor harfbuzz-11.4.4 ...
1 transplantaat aanbrengen voor libcloudproviders-minimal-0.3.6 ...
1 transplantaat aanbrengen voor libgudev-238 ...
1 transplantaat aanbrengen voor libselinux-3.4 ...
1 transplantaat aanbrengen voor llvm-for-mesa-18.1.8 ...
1 transplantaat aanbrengen voor m17n-lib-1.8.0 ...
3 transplantaten aanbrengen voor pango-1.54.0 ...
1 transplantaat aanbrengen voor polkit-121 ...
2 transplantaten aanbrengen voor poppler-22.09.0 ...
4 transplantaten aanbrengen voor colord-minimal-1.4.6 ...
3 transplantaten aanbrengen voor cups-filters-1.28.16 ...
2 transplantaten aanbrengen voor shared-mime-info-2.3 ...
2 transplantaten aanbrengen voor cups-2.4.14 ...
2 transplantaten aanbrengen voor gdk-pixbuf-2.42.12 ...
1 transplantaat aanbrengen voor wayland-1.24.0 ...
6 transplantaten aanbrengen voor librsvg-2.58.5 ...
2 transplantaten aanbrengen voor libxkbcommon-1.11.0 ...
3 transplantaten aanbrengen voor mesa-25.2.3 ...
1 transplantaat aanbrengen voor freeglut-3.4.0 ...
1 transplantaat aanbrengen voor libepoxy-1.5.10 ...
3 transplantaten aanbrengen voor libwebp-1.3.2 ...
13 transplantaten aanbrengen voor gtk+-3.24.51 ...
18 transplantaten aanbrengen voor emacs-30.2 ...
CA-certificaatbundel opbouwen...
tonen van Emacs-submappen...
map met lettertypen bouwen...
generating GdkPixbuf loaders cache...
GLib-schema-cache genereren...
GTK+ pictogramthema-cache aanmaken...
cachebestanden bouwen voor GTK+ invoermethoden...
opbouw van map met Info handleidingen...
XDG desktop-bestandscache opbouwen...
XDG MIME-database opbouwen...
profiel bouwen met 8 pakketten...
API documentation saved to doc/api
;;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0
;;;       or pass the --no-auto-compile argument to disable.
;;; compiling /gnu/store/br3w8xqkmvfp0k91h5kwfy5jw4mdzks3-guile-documenta-0.4.0/bin/.documenta-real
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.6/gnu/store/br3w8xqkmvfp0k91h5kwfy5jw4mdzks3-guile-documenta-0.4.0/bin/.documenta-real.go
;;; compiling /etc/byggsteg/job-clone/veritas/trunk/src/veritas/assert.scm
;;; compiling /etc/byggsteg/job-clone/veritas/trunk/src/veritas/reporter.scm
;;; compiling /etc/byggsteg/job-clone/veritas/trunk/src/veritas/model.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.6/etc/byggsteg/job-clone/veritas/trunk/src/veritas/model.scm.go
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.6/etc/byggsteg/job-clone/veritas/trunk/src/veritas/reporter.scm.go
;;; veritas/assert.scm:105:22: warning: "assertion succesful, got: ~a": wrong number of `format' arguments: expected 1, got 2
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.6/etc/byggsteg/job-clone/veritas/trunk/src/veritas/assert.scm.go
;;; compiling /etc/byggsteg/job-clone/veritas/trunk/src/veritas/prelude.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.6/etc/byggsteg/job-clone/veritas/trunk/src/veritas/prelude.scm.go
;;; compiling /etc/byggsteg/job-clone/veritas/trunk/src/veritas/runner.scm
;;; compiling /etc/byggsteg/job-clone/veritas/trunk/src/veritas/veritas.scm
;;; compiling /etc/byggsteg/job-clone/veritas/trunk/src/veritas/shuffle.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.6/etc/byggsteg/job-clone/veritas/trunk/src/veritas/shuffle.scm.go
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.6/etc/byggsteg/job-clone/veritas/trunk/src/veritas/veritas.scm.go
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.6/etc/byggsteg/job-clone/veritas/trunk/src/veritas/runner.scm.go
index.texi:527: warning: @end hoort alleen voor te komen aan begin van regel
index.texi:542: warning: @end hoort alleen voor te komen aan begin van regel
index.texi:557: warning: @end hoort alleen voor te komen aan begin van regel
index.texi:572: warning: @end hoort alleen voor te komen aan begin van regel
index.texi:588: warning: @end hoort alleen voor te komen aan begin van regel
index.texi:604: warning: @end hoort alleen voor te komen aan begin van regel
index.texi: warning: een 'title'-commando en '@top' vereisen een titel
hernoemd './index' -> './doc/api-dist'
Warning (emacs): Cannot fontify source block (htmlize.el >= 1.34 required).  Falling back to plain text.  (see ???org-html-htmlize-output-type???)
finished publishing Veritas manual
'/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005fassert.html' is verwijderd
'/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005fprelude.html' is verwijderd
'/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005fshuffle.html' is verwijderd
'/srv/http/jointhefreeworld.org/api-docs/veritas/API.html' is verwijderd
'/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005fmodel.html' is verwijderd
'/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005frunner.html' is verwijderd
'/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005freporter.html' is verwijderd
'/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005fveritas.html' is verwijderd
map '/srv/http/jointhefreeworld.org/api-docs/veritas' is verwijderd
mkdir: map '/srv/http/jointhefreeworld.org/api-docs/veritas' is aangemaakt
hernoemd 'doc/api-dist/API.html' -> '/srv/http/jointhefreeworld.org/api-docs/veritas/API.html'
hernoemd 'doc/api-dist/veritas_005fassert.html' -> '/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005fassert.html'
hernoemd 'doc/api-dist/veritas_005fmodel.html' -> '/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005fmodel.html'
hernoemd 'doc/api-dist/veritas_005fprelude.html' -> '/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005fprelude.html'
hernoemd 'doc/api-dist/veritas_005freporter.html' -> '/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005freporter.html'
hernoemd 'doc/api-dist/veritas_005frunner.html' -> '/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005frunner.html'
hernoemd 'doc/api-dist/veritas_005fshuffle.html' -> '/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005fshuffle.html'
hernoemd 'doc/api-dist/veritas_005fveritas.html' -> '/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005fveritas.html'
'doc/api/index.texi' is verwijderd
map 'doc/api' is verwijderd
map 'doc/api-dist' is verwijderd
map 'doc' is verwijderd
'/srv/http/jointhefreeworld.org/manuals/veritas/index.html' is verwijderd
hernoemd 'docs/manual/en.html' -> '/srv/http/jointhefreeworld.org/manuals/veritas/index.html'


--------------------------------------------------------------

Maak: the infinitely extensible command runner

Loading tasks from Maak file: /etc/byggsteg/job-clone/veritas/trunk/maak.scm

Executing Maak tasks: deploy

--------------------------------------------------------------

=> Running Maak task: deploy

  Deploy the project's documentation.

  Execute command:
guix time-machine --channels=channels.scm -- shell -m manifest.scm -- documenta api ./src/veritas &&  texi2any -v --html --css-ref=https://jointhefreeworld.org/static/css/jointhefreeworld.css ./doc/api/index.texi

  Execute command:
guix time-machine --channels=channels.scm -- shell -m manifest.scm -- emacs -Q --batch --eval '(progn (find-file "./docs/manual/en.org") (org-html-export-to-html) (message "finished publishing Veritas manual"))'