1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
|
Delivery-date: Mon, 18 Aug 2025 10:12:45 -0700
Received: from mail-qt1-f188.google.com ([209.85.160.188])
by mail.fairlystable.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
(Exim 4.94.2)
(envelope-from <bitcoindev+bncBCN2N4PP6MMRB755RXCQMGQEELIUJRQ@googlegroups.com>)
id 1uo3PX-0005Fo-02
for bitcoindev@gnusha.org; Mon, 18 Aug 2025 10:12:45 -0700
Received: by mail-qt1-f188.google.com with SMTP id d75a77b69052e-4b10993f679sf101592881cf.0
for <bitcoindev@gnusha.org>; Mon, 18 Aug 2025 10:12:42 -0700 (PDT)
ARC-Seal: i=2; a=rsa-sha256; t=1755537157; cv=pass;
d=google.com; s=arc-20240605;
b=TGhqmukgQmgN5S14nvlwETTRRDgVZAi+2+rveLuMhxsT5T1/rilT6Af0J15PZ9S9A2
UH3zr9IklcsUgqNzDWmXzkxv7Fe7xjZNh6PvHxdoGULcVUVotVJbLybx0sLvJwtSpfCx
oGj2aMBHVOm22641Pa+qofBhwZGOuCLfwEZ2rt90BKqWGvSWNZi30c/ptAuKkk17IGiD
bZozWJDUvQCIQffHbNtvf5APiczo01a+tVMxSY0YXYr+wrt1+bDluCe4oW+VP8FCNEJw
ZKbO/PIDTnrXm9JwNJ87FcW0hvG06wOJrvXRVpW05Lzk30JLI4SD8yIbxXr45AAdKfx5
mBYg==
ARC-Message-Signature: i=2; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20240605;
h=list-unsubscribe:list-subscribe:list-archive:list-help:list-post
:list-id:mailing-list:precedence:cc:to:subject:message-id:date:from
:in-reply-to:references:mime-version:sender:dkim-signature
:dkim-signature;
bh=Jj0kajufb+hVdfD9LxiiRST07xDK0ORruFCGJ1qwQSg=;
fh=XDA0IjwebCFRfPgb7zqnO0cjinv3m1NCsbxLQbgK/4M=;
b=UsOFS0QmI2wFdHAMD4OdruN68juvy3p3uAwx1+dBz4TDfZtOrXGH7YvWqbo/1vS04J
maDk28J9Hb5jP4hPhEXHILaUl7yx12LxkeVvSyIc9RgaeD55/Y9kXBjG0yYp9wRhlv/R
aaVdGGf58PX8iqQqfCS4cfTKEEOy26wW1GdLCERuFRjKjOvj2Hx4PeoXO0tQSoVaTPHb
1huEpcywpa1Mg0xG7unx8GyxoLcog9hGOkBlqDoqKwF5iOpyRTEq7ZsQG8ch3ngpdosY
7HG2dbExcjlYYcn4HRQFac3Kh6+K3QgbGORDT9p5LX2UvkyOGTuOuGLFc8kX1B7aQkdr
5y1A==;
darn=gnusha.org
ARC-Authentication-Results: i=2; gmr-mx.google.com;
dkim=pass header.i=@gmail.com header.s=20230601 header.b=RYp3NLRb;
spf=pass (google.com: domain of marcjohnson518@gmail.com designates 2607:f8b0:4864:20::1136 as permitted sender) smtp.mailfrom=marcjohnson518@gmail.com;
dmarc=pass (p=NONE sp=QUARANTINE dis=NONE) header.from=gmail.com;
dara=pass header.i=@googlegroups.com
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=googlegroups.com; s=20230601; t=1755537156; x=1756141956; darn=gnusha.org;
h=list-unsubscribe:list-subscribe:list-archive:list-help:list-post
:list-id:mailing-list:precedence:x-original-authentication-results
:x-original-sender:cc:to:subject:message-id:date:from:in-reply-to
:references:mime-version:sender:from:to:cc:subject:date:message-id
:reply-to;
bh=Jj0kajufb+hVdfD9LxiiRST07xDK0ORruFCGJ1qwQSg=;
b=uSp50V46b+aVU7IaTEtjT9ZPzqBYblWyzgcYQ4W76hFs4r2ni3PCQwYsWv+JUdnnB/
btG3U5O7wnSbU/GGUyf75m/k7gAdcfdhLke8eWKS3kAlZGBS2H6z7ZdoXQrAjCM8TcWJ
WnOj/C7yMfb5U9YItuzCyDifZaLi9qtbfBeWfmy114UyhNCH6yJtOZXvVSSons656EtF
mZ+3wai9Rwq2qJkxmMgyI99cHt1mFUxiV4wv4ZU+FyFQockCHe6RW1hn878VRb2MBcmu
5M4famSBMrV2kFrIgkmVm8YTJfxlZbZPCqdUpBQrfXGRWyiowczwRXQ8rqxojMFSVrCp
MC7g==
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=gmail.com; s=20230601; t=1755537156; x=1756141956; darn=gnusha.org;
h=list-unsubscribe:list-subscribe:list-archive:list-help:list-post
:list-id:mailing-list:precedence:x-original-authentication-results
:x-original-sender:cc:to:subject:message-id:date:from:in-reply-to
:references:mime-version:from:to:cc:subject:date:message-id:reply-to;
bh=Jj0kajufb+hVdfD9LxiiRST07xDK0ORruFCGJ1qwQSg=;
b=XR5FwGr4H7sHsHP1CZS5bTh4zb6sQN406hGXi1rV+nD1tWvOrO8xUKpLtvPz2BgPoj
sJDs0X16NW4abF5BYAl7TjkTeSljz7JFYCvzOley/uTwj1lzna/0HF7P3rFo8KosATN3
nd3LFoHsogSi3jFKWi6zNXHEb+gKEoR6Oqbaq2hE5cYmSdYfVlavq0RJA7Z9d7yl1V39
YfLPwSZE//Cz0LIQw+Fc4J2o5xg+Q5UX1wWF+cR+mXLelxofy6MjZeMTZD/bfsmce8M8
sRcgPpdsP7pl2LZBi4rr9UFd1038tQWSGdwvdWw+E/w6BfAWwCTZZDo1J96ISO6eHffi
0Jsw==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=1e100.net; s=20230601; t=1755537157; x=1756141957;
h=list-unsubscribe:list-subscribe:list-archive:list-help:list-post
:list-id:mailing-list:precedence:x-original-authentication-results
:x-original-sender:cc:to:subject:message-id:date:from:in-reply-to
:references:mime-version:x-beenthere:x-gm-message-state:sender:from
:to:cc:subject:date:message-id:reply-to;
bh=Jj0kajufb+hVdfD9LxiiRST07xDK0ORruFCGJ1qwQSg=;
b=rUrX2sNpcsZHQoodRXiT0bJr1C8qY7yqLoLwKjKOw3EKrC5Cf5XPTzOb5ZN9Dr6E2Q
ZjZbfxRmgY1XfBimq8oIkqVIAlfxdGZ0w51QFfzfxH8VB0Na9N2atP6sgPiDxkWxvanz
/Iv4Z1E4oSsS80b0cpIeq9UkW+i/DYslZnHfaXm77kSCK5btN5/8gEG1CkLq6hW5IN5W
jFP1ek/aWMsdKnN3UgYGwOZ57f5yUQvputwIKuT40rIO8YdW3TBluAYxbWCbnbHAexUD
4SJePlLUWJzM20Mg7OmmmuMQsBDInHRyhOJRYnZ3Os6XPY/J+RLuN3nvp9Zq2yBbmzTq
ec6g==
Sender: bitcoindev@googlegroups.com
X-Forwarded-Encrypted: i=2; AJvYcCXpNIhm8ycozJ0fmRbjWnxrJjcq0T5d5NQ24/ByoSRQwmdicXksAvuOxXnY2ZHaQK3tErs5RTZ1SlKX@gnusha.org
X-Gm-Message-State: AOJu0YxY+bfRnRimpORWljJtIaXU/gAhdCaIGQA/siIh1VfEWUgG/5sz
Ma4M0LQC6stPYDzLaCChEJ1csW0eNvI2porJRGnLLGi0AsUdvJJUbIRq
X-Google-Smtp-Source: AGHT+IEUH6POitUnSEiHPhoGOUkRWZA9MYv21JAUe1FZyrO3J9fMUs2jkEEWHEy53nxUZXUTBzsMHQ==
X-Received: by 2002:a05:622a:58c3:b0:4b0:64f9:decf with SMTP id d75a77b69052e-4b11e218326mr183495791cf.41.1755537156280;
Mon, 18 Aug 2025 10:12:36 -0700 (PDT)
X-BeenThere: bitcoindev@googlegroups.com; h=AZMbMZfcqZDcjmb1VKhvKP/hFjcgCc2GfzrXdUhystavME4uFA==
Received: by 2002:a05:622a:30d:b0:4a9:e227:30b with SMTP id
d75a77b69052e-4b109b67628ls78522041cf.1.-pod-prod-02-us; Mon, 18 Aug 2025
10:12:31 -0700 (PDT)
X-Received: by 2002:a05:620a:450c:b0:7e6:9664:2270 with SMTP id af79cd13be357-7e87e0124d0mr1606714685a.23.1755537151022;
Mon, 18 Aug 2025 10:12:31 -0700 (PDT)
Received: by 2002:a05:6808:66d8:b0:3f9:f009:458e with SMTP id 5614622812f47-435f72ef89fmsb6e;
Sat, 16 Aug 2025 11:40:49 -0700 (PDT)
X-Received: by 2002:a17:902:fc8e:b0:23f:cd4d:a91a with SMTP id d9443c01a7336-2446d8b5f2fmr95505975ad.30.1755369648163;
Sat, 16 Aug 2025 11:40:48 -0700 (PDT)
ARC-Seal: i=1; a=rsa-sha256; t=1755369648; cv=none;
d=google.com; s=arc-20240605;
b=DcdcLAZNGHfn4ayzvRVX/BQOc4+8cWOaZawrGKn54cvMqjiKTie33QIZXnwcMsG0aD
ubODb2cB2dHjy73byILynt/A89pGMP8hd20287lIBGLy4NVR3PU/Rgd9oBsj0cDfVKdp
807V+4IO+6Tx3GH/q4Ck1Q+blwMlg6Li7B2J2w2M2sBKKFQm7WinCyOEzZ9SfTHshkvf
Oc953msL+2BJmBa7FxpCFd+GlFujXbnReT7fZ5B3Yb+g/Waml9dv7CMziHmoMX1NWjg9
RUPj6r/Y7Ef6kde0UNWFL52IoRDw/LvGlzQzgeCBp/siy/1G2bVJK7aS8uNDDryusauT
D6zA==
ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20240605;
h=cc:to:subject:message-id:date:from:in-reply-to:references
:mime-version:dkim-signature;
bh=geXgkM6INsIQrUKitq8dBZyJwA6SjfdqfW/1clDU1k4=;
fh=dEDbYMbbYyDNRr1LOwMlw2+lJDEDNk0XskwzeS3uI5o=;
b=kCiArlpasQ1eSHUF2CUCY5Po0slfC30Lp2Qw/QVruYHglKaszn0/fS1mbp7jonIHH2
EkQlhTxTWldM+kjVhFJ8HDyrzKzlyDDk7j3vzBtrkKYDhkOBjjcNWm2aO1nJSaNkuU0m
OIAUraGO+p4hpAd65AgRPPr0/03tUqQ6JK8HTzF7M28l7eErhFPqQy3UpzaCtDuszxtx
/VLvvmhXCsFD/ApmV5A2hpyR0XhjixyLXwQAh1Zu3ZKFibZwrjLgaGed2oqcvGILtPwI
ohxK+mMBFFmvL9ihLE9hTPOWIXvfofQOwX5oIdSqUQq6QcnGQQ2sBurJJzXnM9/FsFNt
lLNw==;
dara=google.com
ARC-Authentication-Results: i=1; gmr-mx.google.com;
dkim=pass header.i=@gmail.com header.s=20230601 header.b=RYp3NLRb;
spf=pass (google.com: domain of marcjohnson518@gmail.com designates 2607:f8b0:4864:20::1136 as permitted sender) smtp.mailfrom=marcjohnson518@gmail.com;
dmarc=pass (p=NONE sp=QUARANTINE dis=NONE) header.from=gmail.com;
dara=pass header.i=@googlegroups.com
Received: from mail-yw1-x1136.google.com (mail-yw1-x1136.google.com. [2607:f8b0:4864:20::1136])
by gmr-mx.google.com with ESMTPS id d9443c01a7336-2446cb74e02si1710155ad.2.2025.08.16.11.40.47
for <bitcoindev@googlegroups.com>
(version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128);
Sat, 16 Aug 2025 11:40:48 -0700 (PDT)
Received-SPF: pass (google.com: domain of marcjohnson518@gmail.com designates 2607:f8b0:4864:20::1136 as permitted sender) client-ip=2607:f8b0:4864:20::1136;
Received: by mail-yw1-x1136.google.com with SMTP id 00721157ae682-71d608e34b4so23432437b3.3
for <bitcoindev@googlegroups.com>; Sat, 16 Aug 2025 11:40:47 -0700 (PDT)
X-Gm-Gg: ASbGncvl+IzeoV2lHnKj3AeQ0xuJDfb98bHgg18EXnxXSALTuhfkMtIQ9JaOL9P7nvZ
VccsDhAvYK0pLWGQeUaSGHXVHY0qzngPrd7AQz4tCfmJVWxYJSjCvTXgkLrdx3hNuFgSzaXP3/m
rHqFOVYopGTFilKmc0dxa+fGZOTmcMfcW15zlyZitfq9salB2NbtxRYNnNcvW5eEVSgr4Kp1ijQ
YoxoYc=
X-Received: by 2002:a05:690c:7001:b0:71b:f755:bbc1 with SMTP id
00721157ae682-71e6de249e4mr73243737b3.31.1755369646928; Sat, 16 Aug 2025
11:40:46 -0700 (PDT)
MIME-Version: 1.0
References: <CADL_X_fpv-aXBxX+eJ_EVTirkAJGyPRUNqOCYdz5um8zu6ma5Q@mail.gmail.com>
<cfb00fb3-1eeb-40c5-acc3-50d1919d7dben@googlegroups.com> <173b3bc4-7052-4e0e-9042-ca15cd5b0587n@googlegroups.com>
<CADL_X_cgqHUOU6V9+GsEKz--ekxmgyYJwOg4BeLajAr_cTVN_g@mail.gmail.com>
In-Reply-To: <CADL_X_cgqHUOU6V9+GsEKz--ekxmgyYJwOg4BeLajAr_cTVN_g@mail.gmail.com>
From: Marc Johnson <marcjohnson518@gmail.com>
Date: Sat, 16 Aug 2025 19:40:35 +0100
X-Gm-Features: Ac12FXxN3PI4kK0BCMqSGag0PPppOBm13NZ5EGpsUQTO0AcAiZdWH63TG9NGS3Y
Message-ID: <CACH3BCRuGfsggczAp2iO+t4BcnAXvTEGUmO+i3mK=zzOAY04gQ@mail.gmail.com>
Subject: Re: [bitcoindev] Re: A Post Quantum Migration Proposal
To: Jameson Lopp <jameson.lopp@gmail.com>
Cc: Bitcoin Development Mailing List <bitcoindev@googlegroups.com>
Content-Type: multipart/alternative; boundary="000000000000413a97063c7fd8d3"
X-Original-Sender: marcjohnson518@gmail.com
X-Original-Authentication-Results: gmr-mx.google.com; dkim=pass
header.i=@gmail.com header.s=20230601 header.b=RYp3NLRb; spf=pass
(google.com: domain of marcjohnson518@gmail.com designates
2607:f8b0:4864:20::1136 as permitted sender) smtp.mailfrom=marcjohnson518@gmail.com;
dmarc=pass (p=NONE sp=QUARANTINE dis=NONE) header.from=gmail.com;
dara=pass header.i=@googlegroups.com
Precedence: list
Mailing-list: list bitcoindev@googlegroups.com; contact bitcoindev+owners@googlegroups.com
List-ID: <bitcoindev.googlegroups.com>
X-Google-Group-Id: 786775582512
List-Post: <https://groups.google.com/group/bitcoindev/post>, <mailto:bitcoindev@googlegroups.com>
List-Help: <https://groups.google.com/support/>, <mailto:bitcoindev+help@googlegroups.com>
List-Archive: <https://groups.google.com/group/bitcoindev
List-Subscribe: <https://groups.google.com/group/bitcoindev/subscribe>, <mailto:bitcoindev+subscribe@googlegroups.com>
List-Unsubscribe: <mailto:googlegroups-manage+786775582512+unsubscribe@googlegroups.com>,
<https://groups.google.com/group/bitcoindev/subscribe>
X-Spam-Score: -0.5 (/)
--000000000000413a97063c7fd8d3
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
Hi Jameson,
You're absolutely right that the dual-signature approach I suggested
doesn't eliminate Bitcoin's migration problem - but it does transform it
into a more manageable one. Let me attempt to clarify:
At it's core, what I'm suggesting is an approach to how we handle the
transition period, not whether migration is needed.
*What Dual Signatures Actually Solve:*
The dual-signature approach addresses three specific issues with the forced
sunset:
1. No Permanent Loss Deadline: Users who miss initial migration windows
aren't permanently locked out. During the transition period, they can st=
ill
move funds by providing both signatures.
2. Gradual Security Upgrade: Rather than a binary "migrate or lose
everything," users can operate with increasing security levels:
- Continue using ECDSA (accepting quantum risk)
- Use both signatures (quantum-resistant but backwards compatible)
- Eventually transition to quantum-only
3. Market-Driven vs Forced Migration: Instead of protocol-enforced
deadlines, market forces (exchange requirements, user preference) drive
adoption.
*How This Could Work for Bitcoin:*
A potential implementation path:
- Phase 1: Enable quantum-resistant output types (like BIP-360)
- Phase 2: Implement dual-signature validation for new transactions
- Phase 3: Allow "transition transactions" where exposed-pubkey UTXOs
can be spent with additional quantum proofs
- Phase 4: Gradually increase economic incentives for quantum migration
(fee discounts, priority processing)
The critical difference: No Phase B cutoff where funds become permanently
unspendable.
*The Key Question:*
Perhaps the core question isn't "how do we eliminate the migration
problem?" but rather "how do we make migration as safe and flexible as
possible?" Your sunset approach prioritizes network security through forced
migration. The dual-signature approach prioritizes user sovereignty through
optional migration.
Both have trade-offs. But given BTC's history with soft forks and the
principle that "not your keys, not your coins" shouldn't become "not
migrated in time, not your coins," perhaps we should explore approaches
that preserve user optionality even if they increase implementation
complexity.
What do you think about a hybrid approach - sunset for clearly abandoned
coins (no movement in 10+ years) but dual-signature support for
active-but-unmigrated funds?
Best,
Marc
On Tue, Aug 12, 2025 at 3:57=E2=80=AFPM Jameson Lopp <jameson.lopp@gmail.co=
m> wrote:
>
>
> On Thu, Aug 7, 2025 at 7:26=E2=80=AFPM Marc Johnson <marcjohnson518@gmail=
.com>
> wrote:
>
>> Hi All!
>>
>> I'd first like to say thank you to James for the comprehensive proposal.
>> The quantum threat is indeed existential, and I appreciate the detailed
>> thinking that went into this migration plan. However, I=E2=80=99d like t=
o
>> respectfully raise some concerns about the approach and share an
>> alternative perspective from work we=E2=80=99ve been doing in this space=
.
>>
>> ## Concerns with the Forced Sunset Approach
>>
>> The proposal=E2=80=99s Phase B - rendering ECDSA/Schnorr spends invalid =
-
>> essentially threatens users with permanent fund loss. This creates sever=
al
>> issues:
>>
>> 1. **Violation of Bitcoin=E2=80=99s Social Contract**: Satoshi=E2=80=99s=
principle that
>> =E2=80=9Clost coins only make everyone else=E2=80=99s coins worth slight=
ly more=E2=80=9D becomes
>> =E2=80=9Ccoins you don=E2=80=99t migrate in time are forcibly lost.=E2=
=80=9D This fundamentally
>> changes Bitcoin=E2=80=99s value proposition.
>>
>> 2. **The 25% Problem**: With ~5.25 million BTC having exposed public
>> keys, forcing these to become unspendable could create massive economic
>> disruption. Many of these may be genuinely lost coins, but some could be
>> long-term cold storage, inheritance situations, or users who simply miss
>> the migration window.
>>
>> 3. **Timeline Risk**: The 5+ year timeline (3 years post-BIP-360 + 2
>> years) assumes smooth consensus and implementation. Given Bitcoin=E2=80=
=99s
>> history, this could easily stretch to 7-10 years, most likely pushing
>> implementation past the 2027-2030 quantum timeline mentioned.
>>
>> ## An Alternative Approach: Learning from Supernova
>>
>> Our team has been working on these exact problems and recently reached
>> production readiness with Supernova - a Bitcoin-inspired blockchain that
>> implements quantum resistance from genesis. Rather than forced migration=
,
>> we use a dual-signature scheme that might be instructive for Bitcoin:
>>
>
> I don't see how this solves Bitcoin's migration problem; how would
> currently locked funds be able to spend via a quantum safe signature sche=
me
> if they have not committed to a dual signature scheme? In order to take
> advantage of this setup on Bitcoin, you just end up recreating the
> migration problem.
>
>
>> **Three Modes of Operation:**
>> - **Legacy Mode**: ECDSA signatures only (Bitcoin-compatible)
>> - **Transition Mode**: Both ECDSA and quantum signatures required
>> - **Quantum Mode**: Quantum signatures only
>>
>> This approach:
>> - Never locks users out of their funds
>> - Allows gradual, voluntary migration
>> - Maintains backwards compatibility indefinitely
>> - Provides immediate protection for those who want it
>>
>> ## Key Innovations Worth Considering
>>
>> 1. **Hybrid Signatures**: Instead of a hard cutoff, transactions can
>> require both classical and quantum signatures during transition. This
>> provides quantum security while maintaining compatibility.
>>
>> 2. **Address Format Compatibility**: Our quantum addresses (snq1...)
>> coexist with standard addresses (sn1...), allowing users to choose their
>> security level per transaction rather than per wallet.
>>
>> 3. **No Coordination Required**: Users can independently decide when to
>> migrate without waiting for ecosystem-wide coordination.
>>
>> 4. **Proven Implementation**: We=E2=80=99ve demonstrated this works in
>> production, including the world=E2=80=99s first quantum-resistant Lightn=
ing Network.
>>
>> ## A Cooperative Path Forward
>>
>> Rather than viewing this as competition, I see opportunity for
>> collaboration. Supernova could serve as a real-world testbed for quantum
>> migration strategies. We=E2=80=99ve already implemented:
>>
>> - NIST-standardized algorithms (Dilithium, SPHINCS+, Falcon)
>> - Quantum-resistant atomic swaps with Bitcoin
>> - Full Lightning Network with quantum HTLCs
>> - Zero-knowledge proofs for enhanced privacy
>>
>> Bitcoin could learn from our implementation experience, while we continu=
e
>> to honor Bitcoin=E2=80=99s principles of decentralization and sound mone=
y.
>>
>> ## Invitation to Explore
>>
>> For those interested in seeing quantum resistance in action today rather
>> than waiting years, I invite you to explore Supernova. We=E2=80=99re lau=
nching our
>> public testnet soon and would value feedback from the Bitcoin community.
>>
>> The quantum threat is real, and we need multiple approaches to ensure th=
e
>> future of decentralized money. Whether through Bitcoin=E2=80=99s eventua=
l upgrade
>> or alternatives like Supernova, the important thing is that we act befor=
e
>> it=E2=80=99s too late.
>>
>> The code is open source, and we welcome technical review: [
>> github.com/Carbon-Twelve-C12/supernova](https://github.com/Carbon-Twelve=
-C12/supernova)
>> <http://github.com/Carbon-Twelve-C12/supernova%5D(https://github.com/Car=
bon-Twelve-C12/supernova)>
>>
>> Would love to hear thoughts on the dual-signature approach and whether
>> something similar could work for Bitcoin without the harsh sunset
>> provisions.
>>
>> ---
>>
>> *Note: While I represent the Supernova project, I=E2=80=99m also a long-=
time
>> Bitcoin supporter who wants to see the entire ecosystem survive the quan=
tum
>> transition. These challenges affect us all.*
>>
>> On Sunday, July 20, 2025 at 11:56:48=E2=80=AFPM UTC+1 Boris Nagaev wrote=
:
>>
>>> Hi Jameson, hi all!
>>>
>>> I have a couple of ideas on how to preserve more funds during any kind
>>> of fork that constrains or blocks currently used spending scenarios. Th=
is
>>> applies to both freezing and commit/reveal schemes; the latter may resu=
lt
>>> in lost funds if the public key is leaked. I realized that this also
>>> applies to the commit/reveal scheme I proposed in another thread [1].
>>>
>>> The idea is to *roll out such forks incrementally across the UTXO set*.
>>> Instead of freezing or constraining all UTXOs at once, we split the UTX=
O
>>> set into 256 groups deterministically (for example, by looking at the f=
irst
>>> byte of the TXID) and apply the constraints over 256 days, processing o=
ne
>>> group per day. Procrastinators will learn what is happening through wor=
d of
>>> mouth, act to save their funds, and only a small percentage of coin own=
ers
>>> will be harmed.
>>>
>>> Another approach is to *provide a temporary opt-out option*. If someone
>>> finds themselves blocked, they would still have a limited time to take =
an
>>> action, without requiring any extra knowledge, to get unblocked. This w=
ould
>>> help raise awareness. After being temporarily blocked and recovering th=
eir
>>> funds through the opt-out mechanism, the person would understand that t=
hey
>>> need to take further steps with their remaining coins to avoid being
>>> permanently blocked once the opt-out period ends. The action to unblock=
the
>>> funds could be as simple as sending a transaction with OP_RETURN "opt-o=
ut
>>> <txid>", which would enable the old acceptance rules for the transactio=
n
>>> with that txid for a period of 2016 blocks.
>>>
>>>
>>> [1] https://groups.google.com/g/bitcoindev/c/uUK6py0Yjq0/m/57bQJ3VSCQAJ
>>> In that scheme if the pubkey is leaked, anyone can post a valid
>>> commitment with a random TXID blocking the coin forever.
>>>
>>> Best,
>>> Boris
>>>
>>> On Saturday, July 12, 2025 at 9:46:09=E2=80=AFPM UTC-3 Jameson Lopp wro=
te:
>>>
>>> Building upon my earlier essay against allowing quantum recovery of
>>> bitcoin
>>> <https://groups.google.com/g/bitcoindev/c/uUK6py0Yjq0/m/6peEaa90AQAJ> I
>>> wish to formalize a proposal after several months of discussions.
>>>
>>> This proposal does not delve into the multitude of issues regarding pos=
t
>>> quantum cryptography and trade-offs of different schemes, but rather is
>>> meant to specifically address the issues of incentivizing adoption and
>>> migration of funds *after* consensus is established that it is prudent
>>> to do so.
>>>
>>> As such, this proposal requires P2QRH as described in BIP-360 or
>>> potential future proposals.
>>> Abstract
>>>
>>> This proposal follows the implementation of post-quantum (PQ) output
>>> type (P2QRH) and introduces a pre-announced sunset of legacy ECDSA/Schn=
orr
>>> signatures. It turns quantum security into a private incentive: fail to
>>> upgrade and you will certainly lose access to your funds, creating a
>>> certainty where none previously existed.
>>>
>>> -
>>>
>>> Phase A: Disallows sending of any funds to quantum-vulnerable
>>> addresses, hastening the adoption of P2QRH address types.
>>> -
>>>
>>> Phase B: Renders ECDSA/Schnorr spends invalid, preventing all
>>> spending of funds in quantum-vulnerable UTXOs. This is triggered by =
a
>>> well-publicized flag-day roughly five years after activation.
>>> -
>>>
>>> Phase C (optional): Pending further research and demand, a separate
>>> BIP proposing a fork to allow recovery of legacy UTXOs through ZK pr=
oof of
>>> possession of BIP-39 seed phrase.
>>>
>>> Motivation
>>>
>>> We seek to secure the value of the UTXO set and minimize incentives for
>>> quantum attacks. This proposal is radically different from any in Bitco=
in=E2=80=99s
>>> history just as the threat posed by quantum computing is radically
>>> different from any other threat in Bitcoin=E2=80=99s history. Never be=
fore has
>>> Bitcoin faced an existential threat to its cryptographic primitives. A
>>> successful quantum attack on Bitcoin would result in significant econom=
ic
>>> disruption and damage across the entire ecosystem. Beyond its impact on
>>> price, the ability of miners to provide network security may be
>>> significantly impacted.
>>>
>>> -
>>>
>>> Accelerating quantum progress.
>>> -
>>>
>>> NIST ratified three production-grade PQ signature schemes in
>>> 2024; academic road-maps now estimate a cryptographically-relevan=
t quantum
>>> computer as early as 2027-2030. [McKinsey
>>> <https://www.mckinsey.com/~/media/mckinsey/business%20functions/m=
ckinsey%20digital/our%20insights/the%20year%20of%20quantum%20from%20concept=
%20to%20reality%20in%202025/quantum-monitor-2025.pdf?shouldIndex=3Dfalse>
>>> ]
>>> -
>>>
>>> Quantum algorithms are rapidly improving
>>> -
>>>
>>> The safety envelope is shrinking by dramatic increases in
>>> algorithms even if the pace of hardware improvements is slower. A=
lgorithms
>>> are improving up to 20X
>>> <https://security.googleblog.com/2025/05/tracking-cost-of-quantum=
-factori.html>,
>>> lowering the theoretical hardware requirements for breaking class=
ical
>>> encryption.
>>> -
>>>
>>> Bitcoin=E2=80=99s exposed public keys.
>>> -
>>>
>>> Roughly 25% of all bitcoin have revealed a public key on-chain;
>>> those UTXOs could be stolen with sufficient quantum power.
>>> -
>>>
>>> We may not know the attack is underway.
>>> -
>>>
>>> Quantum attackers could compute the private key for known public
>>> keys then transfer all funds weeks or months later, in a covert b=
leed to
>>> not alert chain watchers. Q-Day may be only known much later if t=
he attack
>>> withholds broadcasting transactions in order to postpone revealin=
g their
>>> capabilities.
>>> -
>>>
>>> Private keys become public.
>>> -
>>>
>>> Assuming that quantum computers are able to maintain their
>>> current trajectories and overcome existing engineering obstacles,=
there is
>>> a near certain chance that all P2PK (and other outputs with expos=
ed
>>> pubkeys) private keys will be found and used to steal the funds.
>>> -
>>>
>>> Impossible to know motivations.
>>> -
>>>
>>> Prior to a quantum attack, it is impossible to know the
>>> motivations of the attacker. An economically motivated attacker =
will try
>>> to remain undetected for as long as possible, while a malicious a=
ttacker
>>> will attempt to destroy as much value as possible.
>>> -
>>>
>>> Upgrade inertia.
>>> -
>>>
>>> Coordinating wallets, exchanges, miners and custodians
>>> historically takes years.
>>> -
>>>
>>> The longer we postpone migration, the harder it becomes to
>>> coordinate wallets, exchanges, miners, and custodians. A clear, t=
ime-boxed
>>> pathway is the only credible defense.
>>> -
>>>
>>> Coordinating distributed groups is more prone to delay, even if
>>> everyone has similar motivations. Historically, Bitcoin has been =
slow to
>>> adopt code changes, often taking multiple years to be approved.
>>>
>>> Benefits at a Glance
>>>
>>> -
>>>
>>> Resilience: Bitcoin protocol remains secure for the foreseeable
>>> future without waiting for a last-minute emergency.
>>> -
>>>
>>> Certainty: Bitcoin users and stakeholders gain certainty that a plan
>>> is both in place and being implemented to effectively deal with the =
threat
>>> of quantum theft of bitcoin.
>>> -
>>>
>>> Clarity: A single, publicized timeline aligns the entire ecosystem
>>> (wallets, exchanges, hardware vendors).
>>> -
>>>
>>> Supply Discipline: Abandoned keys that never migrate become
>>> unspendable, reducing supply, as Satoshi described
>>> <https://bitcointalk.org/index.php?topic=3D198.msg1647#msg1647>.
>>>
>>> Specification
>>>
>>> Phase
>>>
>>> What Happens
>>>
>>> Who Must Act
>>>
>>> Time Horizon
>>>
>>> Phase A - Disallow spends to legacy script types
>>>
>>> Permitted sends are from legacy scripts to P2QRH scripts
>>>
>>> Everyone holding or accepting BTC.
>>>
>>> 3 years after BIP-360 implementation
>>>
>>> Phase B =E2=80=93 Disallow spends from quantum vulnerable outputs
>>>
>>> At a preset block-height, nodes reject transactions that rely on
>>> ECDSA/Schnorr keys.
>>>
>>> Everyone holding or accepting BTC.
>>>
>>> 2 years after Phase A activation.
>>>
>>> Phase C =E2=80=93 Re-enable spends from quantum vulnerable outputs via =
ZK Proof
>>>
>>> Users with frozen quantum vulnerable funds and a HD wallet seed phrase
>>> can construct a quantum safe ZK proof to recover funds.
>>>
>>> Users who failed to migrate funds before Phase B.
>>>
>>> TBD pending research, demand, and consensus.
>>> Rationale
>>>
>>> -
>>>
>>> Even if Bitcoin is not a primary initial target of a
>>> cryptographically relevant quantum computer, widespread knowledge th=
at such
>>> a computer exists and is capable of breaking Bitcoin=E2=80=99s crypt=
ography will
>>> damage faith in the network .
>>> -
>>>
>>> An attack on Bitcoin may not be economically motivated - an attacker
>>> may be politically or maliciously motivated and may attempt to destr=
oy
>>> value and trust in Bitcoin rather than extract value. There is no w=
ay to
>>> know in advance how, when, or why an attack may occur. A defensive
>>> position must be taken well in advance of any attack.
>>> -
>>>
>>> Bitcoin=E2=80=99s current signatures (ECDSA/Schnorr) will be a tanta=
lizing
>>> target: any UTXO that has ever exposed its public key on-chain (roug=
hly 25
>>> % of all bitcoin) could be stolen by a cryptographically relevant qu=
antum
>>> computer.
>>> -
>>>
>>> Existing Proposals are Insufficient.
>>> 1.
>>>
>>> Any proposal that allows for the quantum theft of =E2=80=9Clost=
=E2=80=9D bitcoin
>>> is creating a redistribution dilemma. There are 3 types of propos=
als:
>>> 1.
>>>
>>> Allow anyone to steal vulnerable coins, benefitting those who
>>> reach quantum capability earliest.
>>> 2.
>>>
>>> Allow throttled theft of coins, which leads to RBF battles and
>>> ultimately miners subsidizing their revenue from lost coins.
>>> 3.
>>>
>>> Allow no one to steal vulnerable coins.
>>> -
>>>
>>> Minimizes attack surface
>>> 1.
>>>
>>> By disallowing new spends to quantum vulnerable script types, we
>>> minimize the attack surface with each new UTXO.
>>> 2.
>>>
>>> Upgrades to Bitcoin have historically taken many years; this will
>>> hasten and speed up the adoption of new quantum resistant script =
types.
>>> 3.
>>>
>>> With a clear deadline, industry stakeholders will more readily
>>> upgrade existing infrastructure to ensure continuity of services.
>>> -
>>>
>>> Minimizes loss of access to funds
>>> 1.
>>>
>>> If there is sufficient demand and research proves possible,
>>> submitting a ZK proof of knowledge of a BIP-39 seed phrase corres=
ponding to
>>> a public key hash or script hash would provide a trustless means =
for legacy
>>> outputs to be spent in a quantum resistant manner, even after the=
sunset.
>>>
>>>
>>> Stakeholder
>>>
>>> Incentive to Upgrade
>>>
>>> Miners
>>>
>>> =E2=80=A2 Larger size PQ signatures along with incentive for users to m=
igrate
>>> will create more demand for block space and thus higher fees collected =
by
>>> miners.
>>>
>>> =E2=80=A2 Post-Phase B, non-upgraded miners produce invalid blocks.
>>>
>>> =E2=80=A2 A quantum attack on Bitcoin will significantly devalue both t=
heir
>>> hardware and Bitcoin as a whole.
>>>
>>> Institutional Holders
>>>
>>> =E2=80=A2 Fiduciary duty: failing to act to prevent a quantum attack on=
Bitcoin
>>> would violate the fiduciary duty to shareholders.
>>>
>>> =E2=80=A2 Demonstrating Bitcoin=E2=80=99s ability to effectively mitiga=
te emerging
>>> threats will prove Bitcoin to be an investment grade asset.
>>>
>>> Exchanges & Custodians
>>>
>>> =E2=80=A2 Concentrated risk: a quantum hack could bankrupt them overnig=
ht.
>>>
>>> =E2=80=A2 Early migration is cheap relative to potential losses, potent=
ial
>>> lawsuits over improper custody and reputational damage.
>>>
>>> Everyday Users
>>>
>>> =E2=80=A2 Self-sovereign peace of mind.
>>>
>>> =E2=80=A2 Sunset date creates a clear deadline and incentive to improve=
their
>>> security rather than an open-ended =E2=80=9Csome day=E2=80=9D that invi=
tes procrastination.
>>>
>>> Attackers
>>>
>>> =E2=80=A2 Economic incentive diminishes as sunset nears, stolen coins c=
annot be
>>> spent after Q-day.
>>>
>>> Key Insight: As mentioned earlier, the proposal turns quantum security
>>> into a private incentive to upgrade.
>>>
>>> This is not an offensive attack, rather, it is defensive: our thesis is
>>> that the Bitcoin ecosystem wishes to defend itself and its interests
>>> against those who would prefer to do nothing and allow a malicious acto=
r to
>>> destroy both value and trust.
>>>
>>>
>>> "Lost coins only make everyone else's coins worth slightly more. Think
>>> of it as a donation to everyone." - Satoshi Nakamoto
>>>
>>>
>>> If true, the corollary is:
>>>
>>>
>>> "Quantum recovered coins only make everyone else's coins worth less.
>>> Think of it as a theft from everyone."
>>>
>>>
>>> The timelines that we are proposing are meant to find the best balance
>>> between giving ample ability for account owners to migrate while
>>> maintaining the integrity of the overall ecosystem to avoid catastrophi=
c
>>> attacks.
>>>
>>> Backward Compatibility
>>>
>>> As a series of soft forks, older nodes will continue to operate without
>>> modification. Non-upgraded nodes, however, will consider all post-quant=
um
>>> witness programs as anyone-can-spend scripts. They are strongly encoura=
ged
>>> to upgrade in order to fully validate the new programs.
>>>
>>> Non-upgraded wallets can receive and send bitcoin from non-upgraded and
>>> upgraded wallets until Phase A. After Phase A, they can no longer recei=
ve
>>> from any other wallets and can only send to upgraded wallets. After Ph=
ase
>>> B, both senders and receivers will require upgraded wallets. Phase C wo=
uld
>>> likely require a loosening of consensus rules (a hard fork) to allow
>>> vulnerable funds recovery via ZK proofs.
>>>
>>> --
>> You received this message because you are subscribed to the Google Group=
s
>> "Bitcoin Development Mailing List" group.
>> To unsubscribe from this group and stop receiving emails from it, send a=
n
>> email to bitcoindev+unsubscribe@googlegroups.com.
>> To view this discussion visit
>> https://groups.google.com/d/msgid/bitcoindev/173b3bc4-7052-4e0e-9042-ca1=
5cd5b0587n%40googlegroups.com
>> <https://groups.google.com/d/msgid/bitcoindev/173b3bc4-7052-4e0e-9042-ca=
15cd5b0587n%40googlegroups.com?utm_medium=3Demail&utm_source=3Dfooter>
>> .
>>
>
--=20
M: +1-646-541-2108
W: marcjohnson.xyz
--=20
You received this message because you are subscribed to the Google Groups "=
Bitcoin Development Mailing List" group.
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to bitcoindev+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/bitcoindev/=
CACH3BCRuGfsggczAp2iO%2Bt4BcnAXvTEGUmO%2Bi3mK%3DzzOAY04gQ%40mail.gmail.com.
--000000000000413a97063c7fd8d3
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
<div dir=3D"ltr"><div class=3D"gmail_default" style=3D"">Hi Jameson,<br><br=
>You're absolutely right that the dual-signature approach I suggested d=
oesn't eliminate Bitcoin's migration problem - but it does transfor=
m it into a more manageable one. Let me attempt to clarify:<br><br>At it=
9;s core, what I'm suggesting is an approach to how we handle the trans=
ition period, not whether migration is needed.<br><br><b>What Dual Signatur=
es Actually Solve:</b><br><br>The dual-signature approach addresses three s=
pecific issues with the forced sunset:<br>
<ol><li>No Permanent Loss Deadline: Users who miss initial migration window=
s aren't permanently locked out. During the transition period, they can=
still move funds by providing both signatures.<br><br></li><li>Gradual Sec=
urity Upgrade: Rather than a binary "migrate or lose everything,"=
users can operate with increasing security levels:</li><ul><li>Continue us=
ing ECDSA (accepting quantum risk)</li><li>Use both signatures (quantum-res=
istant but backwards compatible)</li><li>Eventually transition to quantum-o=
nly<br><br></li></ul><li>Market-Driven vs Forced Migration: Instead of prot=
ocol-enforced deadlines, market forces (exchange requirements, user prefere=
nce) drive adoption.</li></ol><p style=3D""><b>How This Could Work for Bitc=
oin:</b><br><br>A potential implementation path:<br></p><ul><li>Phase 1: En=
able quantum-resistant output types (like BIP-360)</li><li>Phase 2: Impleme=
nt dual-signature validation for new transactions</li><li>Phase 3: Allow &q=
uot;transition transactions" where exposed-pubkey UTXOs can be spent w=
ith additional quantum proofs</li><li>Phase 4: Gradually increase economic =
incentives for quantum migration (fee discounts, priority processing)</li><=
/ul><p></p>The critical difference: No Phase B cutoff where funds become pe=
rmanently unspendable.
<br><br><b>The Key Question:</b><br><br>Perhaps the core question isn't=
"how do we eliminate the migration problem?" but rather "ho=
w do we make migration as safe and flexible as possible?" Your sunset =
approach prioritizes network security through forced migration. The dual-si=
gnature approach prioritizes user sovereignty through optional migration.<b=
r><br>Both have trade-offs. But given BTC's history with soft forks and=
the principle that "not your keys, not your coins" shouldn't=
become "not migrated in time, not your coins," perhaps we should=
explore approaches that preserve user optionality even if they increase im=
plementation complexity.<br><br>What do you think about a hybrid approach -=
sunset for clearly abandoned coins (no movement in 10+ years) but dual-sig=
nature support for active-but-unmigrated funds?<br><br>Best,<br>Marc</div><=
/div><br><div class=3D"gmail_quote gmail_quote_container"><div dir=3D"ltr" =
class=3D"gmail_attr">On Tue, Aug 12, 2025 at 3:57=E2=80=AFPM Jameson Lopp &=
lt;<a href=3D"mailto:jameson.lopp@gmail.com">jameson.lopp@gmail.com</a>>=
wrote:<br></div><blockquote class=3D"gmail_quote" style=3D"margin:0px 0px =
0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir=
=3D"ltr"><div dir=3D"ltr"><br></div><br><div class=3D"gmail_quote"><div dir=
=3D"ltr" class=3D"gmail_attr">On Thu, Aug 7, 2025 at 7:26=E2=80=AFPM Marc J=
ohnson <<a href=3D"mailto:marcjohnson518@gmail.com" target=3D"_blank">ma=
rcjohnson518@gmail.com</a>> wrote:<br></div><blockquote class=3D"gmail_q=
uote" style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,2=
04);padding-left:1ex">Hi All!<br><br>I'd first like to say thank you to=
James for the comprehensive proposal. The quantum threat is indeed existen=
tial, and I appreciate the detailed thinking that went into this migration =
plan. However, I=E2=80=99d like to respectfully raise some concerns about t=
he approach and share an alternative perspective from work we=E2=80=99ve be=
en doing in this space.<br><br>## Concerns with the Forced Sunset Approach<=
br><br>The proposal=E2=80=99s Phase B - rendering ECDSA/Schnorr spends inva=
lid - essentially threatens users with permanent fund loss. This creates se=
veral issues:<br><br>1. **Violation of Bitcoin=E2=80=99s Social Contract**:=
Satoshi=E2=80=99s principle that =E2=80=9Clost coins only make everyone el=
se=E2=80=99s coins worth slightly more=E2=80=9D becomes =E2=80=9Ccoins you =
don=E2=80=99t migrate in time are forcibly lost.=E2=80=9D This fundamentall=
y changes Bitcoin=E2=80=99s value proposition.<br><br>2. **The 25% Problem*=
*: With ~5.25 million BTC having exposed public keys, forcing these to beco=
me unspendable could create massive economic disruption. Many of these may =
be genuinely lost coins, but some could be long-term cold storage, inherita=
nce situations, or users who simply miss the migration window.<br><br>3. **=
Timeline Risk**: The 5+ year timeline (3 years post-BIP-360 + 2 years) assu=
mes smooth consensus and implementation. Given Bitcoin=E2=80=99s history, t=
his could easily stretch to 7-10 years, most likely pushing implementation =
past the 2027-2030 quantum timeline mentioned.<br><br>## An Alternative App=
roach: Learning from Supernova<br><br>Our team has been working on these ex=
act problems and recently reached production readiness with Supernova - a B=
itcoin-inspired blockchain that implements quantum resistance from genesis.=
Rather than forced migration, we use a dual-signature scheme that might be=
instructive for Bitcoin:<br></blockquote><div><br></div><div>I don't s=
ee how this solves Bitcoin's migration problem; how would currently loc=
ked funds be able to spend via a quantum safe signature scheme if they have=
not committed to a dual signature scheme? In order to take advantage of th=
is setup on Bitcoin, you just end up recreating the migration problem.</div=
><div><br></div><blockquote class=3D"gmail_quote" style=3D"margin:0px 0px 0=
px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><br>**Thr=
ee Modes of Operation:**<br>- **Legacy Mode**: ECDSA signatures only (Bitco=
in-compatible)<br>- **Transition Mode**: Both ECDSA and quantum signatures =
required<br>- **Quantum Mode**: Quantum signatures only<br><br>This approac=
h:<br>- Never locks users out of their funds<br>- Allows gradual, voluntary=
migration<br>- Maintains backwards compatibility indefinitely<br>- Provide=
s immediate protection for those who want it<br><br>## Key Innovations Wort=
h Considering<br><br>1. **Hybrid Signatures**: Instead of a hard cutoff, tr=
ansactions can require both classical and quantum signatures during transit=
ion. This provides quantum security while maintaining compatibility.<br><br=
>2. **Address Format Compatibility**: Our quantum addresses (snq1...) coexi=
st with standard addresses (sn1...), allowing users to choose their securit=
y level per transaction rather than per wallet.<br><br>3. **No Coordination=
Required**: Users can independently decide when to migrate without waiting=
for ecosystem-wide coordination.<br><br>4. **Proven Implementation**: We=
=E2=80=99ve demonstrated this works in production, including the world=E2=
=80=99s first quantum-resistant Lightning Network.<br><br>## A Cooperative =
Path Forward<br><br>Rather than viewing this as competition, I see opportun=
ity for collaboration. Supernova could serve as a real-world testbed for qu=
antum migration strategies. We=E2=80=99ve already implemented:<br><br>- NIS=
T-standardized algorithms (Dilithium, SPHINCS+, Falcon)<br>- Quantum-resist=
ant atomic swaps with Bitcoin<br>- Full Lightning Network with quantum HTLC=
s<br>- Zero-knowledge proofs for enhanced privacy<br><br>Bitcoin could lear=
n from our implementation experience, while we continue to honor Bitcoin=E2=
=80=99s principles of decentralization and sound money.<br><br>## Invitatio=
n to Explore<br><br>For those interested in seeing quantum resistance in ac=
tion today rather than waiting years, I invite you to explore Supernova. We=
=E2=80=99re launching our public testnet soon and would value feedback from=
the Bitcoin community. <br><br>The quantum threat is real, and we need mul=
tiple approaches to ensure the future of decentralized money. Whether throu=
gh Bitcoin=E2=80=99s eventual upgrade or alternatives like Supernova, the i=
mportant thing is that we act before it=E2=80=99s too late.<br><br>The code=
is open source, and we welcome technical review: [<a href=3D"http://github=
.com/Carbon-Twelve-C12/supernova%5D(https://github.com/Carbon-Twelve-C12/su=
pernova)" target=3D"_blank">github.com/Carbon-Twelve-C12/supernova](https:/=
/github.com/Carbon-Twelve-C12/supernova)</a><br><br>Would love to hear thou=
ghts on the dual-signature approach and whether something similar could wor=
k for Bitcoin without the harsh sunset provisions.<br><br>---<br><br>*Note:=
While I represent the Supernova project, I=E2=80=99m also a long-time Bitc=
oin supporter who wants to see the entire ecosystem survive the quantum tra=
nsition. These challenges affect us all.*<br><br><div class=3D"gmail_quote"=
><div dir=3D"auto" class=3D"gmail_attr">On Sunday, July 20, 2025 at 11:56:4=
8=E2=80=AFPM UTC+1 Boris Nagaev wrote:<br></div><blockquote class=3D"gmail_=
quote" style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,=
204);padding-left:1ex">Hi Jameson, hi all!<br><br>I have a couple of ideas =
on how to preserve more funds during any kind of fork that constrains or bl=
ocks currently used spending scenarios. This applies to both freezing and c=
ommit/reveal schemes; the latter may result in lost funds if the public key=
is leaked. I realized that this also applies to the commit/reveal scheme I=
proposed in another thread [1].<br><br><div>The idea is to <b>roll out suc=
h forks incrementally across the UTXO set</b>. Instead of freezing or const=
raining all UTXOs at once, we split the UTXO set into 256 groups determinis=
tically (for example, by looking at the first byte of the TXID) and apply t=
he constraints over 256 days, processing one group per day. Procrastinators=
will learn what is happening through word of mouth, act to save their fund=
s, and only a small percentage of coin owners will be harmed.</div><div><br=
></div><div>Another approach is to <b>provide a temporary opt-out option</b=
>. If someone finds themselves blocked, they would still have a limited tim=
e to take an action, without requiring any extra knowledge, to get unblocke=
d. This would help raise awareness. After being temporarily blocked and rec=
overing their funds through the opt-out mechanism, the person would underst=
and that they need to take further steps with their remaining coins to avoi=
d being permanently blocked once the opt-out period ends.=C2=A0The action t=
o unblock the funds could be as simple as sending a transaction with OP_RET=
URN "opt-out <txid>", which would enable the old acceptance=
rules for the transaction with that txid for a period of 2016 blocks.</div=
><div><br></div><div><br></div><div>[1]=C2=A0<a href=3D"https://groups.goog=
le.com/g/bitcoindev/c/uUK6py0Yjq0/m/57bQJ3VSCQAJ" rel=3D"nofollow" target=
=3D"_blank">https://groups.google.com/g/bitcoindev/c/uUK6py0Yjq0/m/57bQJ3VS=
CQAJ</a></div><div>In that scheme if the pubkey is leaked, anyone can post =
a valid commitment with a random TXID blocking the coin forever.</div><div>=
<br></div>Best,<br><div>Boris</div><div><br></div><div><div dir=3D"auto">On=
Saturday, July 12, 2025 at 9:46:09=E2=80=AFPM UTC-3 Jameson Lopp wrote:<br=
></div><blockquote style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid =
rgb(204,204,204);padding-left:1ex"><div dir=3D"ltr"><span><p dir=3D"ltr" st=
yle=3D"line-height:1.44;background-color:rgb(255,255,255);margin-top:12pt;m=
argin-bottom:0pt;padding:0pt 0pt 12pt"><span style=3D"font-size:11pt;font-f=
amily:"Courier New",monospace;color:rgb(34,34,34);background-colo=
r:transparent;font-weight:400;font-style:normal;font-variant:normal;text-de=
coration:none;vertical-align:baseline;white-space:pre-wrap">Building upon m=
y earlier essay </span><a href=3D"https://groups.google.com/g/bitcoindev/c/=
uUK6py0Yjq0/m/6peEaa90AQAJ" style=3D"text-decoration:none" rel=3D"nofollow"=
target=3D"_blank"><span style=3D"font-size:11pt;font-family:"Courier =
New",monospace;color:rgb(17,85,204);background-color:transparent;font-=
weight:400;font-style:normal;font-variant:normal;text-decoration:underline;=
vertical-align:baseline;white-space:pre-wrap">against allowing quantum reco=
very of bitcoin</span></a><span style=3D"font-size:11pt;font-family:"C=
ourier New",monospace;color:rgb(34,34,34);background-color:transparent=
;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none=
;vertical-align:baseline;white-space:pre-wrap"> I wish to formalize a propo=
sal after several months of discussions.</span></p><p dir=3D"ltr" style=3D"=
line-height:1.44;background-color:rgb(255,255,255);margin-top:0pt;margin-bo=
ttom:0pt;padding:0pt 0pt 12pt"><span style=3D"font-size:11pt;font-family:&q=
uot;Courier New",monospace;color:rgb(34,34,34);background-color:transp=
arent;font-weight:400;font-style:normal;font-variant:normal;text-decoration=
:none;vertical-align:baseline;white-space:pre-wrap">This proposal does not =
delve into the multitude of issues regarding post quantum cryptography and =
trade-offs of different schemes, but rather is meant to specifically addres=
s the issues of incentivizing adoption and migration of funds </span><span =
style=3D"font-size:11pt;font-family:"Courier New",monospace;color=
:rgb(34,34,34);background-color:transparent;font-weight:400;font-variant:no=
rmal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap"><i>=
after</i></span><span style=3D"font-size:11pt;font-family:"Courier New=
",monospace;color:rgb(34,34,34);background-color:transparent;font-weig=
ht:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-=
align:baseline;white-space:pre-wrap"> consensus is established that it is p=
rudent to do so.</span></p><p dir=3D"ltr" style=3D"line-height:1.44;backgro=
und-color:rgb(255,255,255);margin-top:0pt;margin-bottom:12pt"><span style=
=3D"font-size:11pt;font-family:"Courier New",monospace;color:rgb(=
0,0,0);background-color:transparent;font-weight:400;font-style:normal;font-=
variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre=
-wrap">As such, this proposal requires P2QRH as described in BIP-360 or pot=
ential future proposals.</span></p><span dir=3D"ltr" style=3D"line-height:1=
.38;margin-top:18pt;margin-bottom:4pt"><span style=3D"font-size:17pt;font-f=
amily:"Courier New",monospace;color:rgb(0,0,0);background-color:t=
ransparent;font-variant-numeric:normal;font-variant-east-asian:normal;font-=
variant-alternates:normal;vertical-align:baseline">Abstract</span></span><p=
dir=3D"ltr" style=3D"line-height:1.38;margin-top:12pt;margin-bottom:12pt">=
<span style=3D"font-size:11pt;font-family:"Courier New",monospace=
;color:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;=
font-variant-east-asian:normal;font-variant-alternates:normal;vertical-alig=
n:baseline">This proposal follows the implementation of post-quantum (PQ) o=
utput type (P2QRH) and introduces a pre-announced sunset of legacy ECDSA/Sc=
hnorr signatures. It turns quantum security into a </span><span style=3D"fo=
nt-size:11pt;font-family:"Courier New",monospace;color:rgb(0,0,0)=
;background-color:transparent;font-style:italic;font-variant-numeric:normal=
;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-ali=
gn:baseline">private incentive</span><span style=3D"font-size:11pt;font-fam=
ily:"Courier New",monospace;color:rgb(0,0,0);background-color:tra=
nsparent;font-variant-numeric:normal;font-variant-east-asian:normal;font-va=
riant-alternates:normal;vertical-align:baseline">: fail to upgrade and you =
will certainly lose access to your funds, creating a certainty where none p=
reviously existed.=C2=A0</span></p><ul style=3D"margin-top:0px;margin-botto=
m:0px"><li dir=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-fa=
mily:"Courier New",monospace;color:rgb(0,0,0);background-color:tr=
ansparent;font-variant-numeric:normal;font-variant-east-asian:normal;font-v=
ariant-alternates:normal;vertical-align:baseline;white-space:pre-wrap"><p d=
ir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt" role=
=3D"presentation"><span style=3D"font-size:11pt;background-color:transparen=
t;font-weight:700;font-variant-numeric:normal;font-variant-east-asian:norma=
l;font-variant-alternates:normal;vertical-align:baseline">Phase A:</span><s=
pan style=3D"font-size:11pt;background-color:transparent;font-variant-numer=
ic:normal;font-variant-east-asian:normal;font-variant-alternates:normal;ver=
tical-align:baseline"> Disallows sending of any funds to quantum-vulnerable=
addresses, hastening the adoption of P2QRH address types.</span></p></li><=
li dir=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-family:&qu=
ot;Courier New",monospace;color:rgb(0,0,0);background-color:transparen=
t;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-a=
lternates:normal;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"lt=
r" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt" role=3D"pres=
entation"><span style=3D"font-size:11pt;background-color:transparent;font-w=
eight:700;font-variant-numeric:normal;font-variant-east-asian:normal;font-v=
ariant-alternates:normal;vertical-align:baseline">Phase B:</span><span styl=
e=3D"font-size:11pt;background-color:transparent;font-variant-numeric:norma=
l;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-al=
ign:baseline"> Renders ECDSA/Schnorr spends invalid, preventing all spendin=
g of funds in quantum-vulnerable UTXOs. This is triggered by a well-publici=
zed flag-day roughly five years after activation.</span></p></li><li dir=3D=
"ltr" style=3D"list-style-type:disc;font-size:11pt;font-family:"Courie=
r New",monospace;color:rgb(0,0,0);background-color:transparent;font-va=
riant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates=
:normal;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=
=3D"line-height:1.38;margin-top:0pt;margin-bottom:6pt" role=3D"presentation=
"><span style=3D"font-size:11pt;background-color:transparent;font-weight:70=
0;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-a=
lternates:normal;vertical-align:baseline">Phase C (optional):</span><span s=
tyle=3D"font-size:11pt;background-color:transparent;font-variant-numeric:no=
rmal;font-variant-east-asian:normal;font-variant-alternates:normal;vertical=
-align:baseline"> Pending further research and demand, a separate BIP propo=
sing a fork to allow recovery of legacy UTXOs through ZK proof of possessio=
n of BIP-39 seed phrase.=C2=A0=C2=A0</span></p></li></ul><span dir=3D"ltr" =
style=3D"line-height:1.38;text-align:justify;margin-top:14pt;margin-bottom:=
6pt"><span style=3D"font-size:16pt;font-family:"Courier New",mono=
space;color:rgb(0,0,0);background-color:transparent;font-variant-numeric:no=
rmal;font-variant-east-asian:normal;font-variant-alternates:normal;vertical=
-align:baseline">Motivation</span></span><p dir=3D"ltr" style=3D"line-heigh=
t:1.38;text-align:justify;margin-top:12pt;margin-bottom:12pt"><span style=
=3D"font-size:11pt;font-family:"Courier New",monospace;color:rgb(=
0,0,0);background-color:transparent;font-variant-numeric:normal;font-varian=
t-east-asian:normal;font-variant-alternates:normal;vertical-align:baseline"=
>We seek to secure the value of the UTXO set</span><span style=3D"font-size=
:11pt;font-family:"Courier New",monospace;color:rgb(0,0,0);backgr=
ound-color:transparent;font-weight:700;font-variant-numeric:normal;font-var=
iant-east-asian:normal;font-variant-alternates:normal;vertical-align:baseli=
ne"> </span><span style=3D"font-size:11pt;font-family:"Courier New&quo=
t;,monospace;color:rgb(0,0,0);background-color:transparent;font-variant-num=
eric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;v=
ertical-align:baseline">and minimize incentives for quantum attacks. This p=
roposal is radically different from any in Bitcoin=E2=80=99s history just a=
s the threat posed by quantum computing is radically different from any oth=
er threat in Bitcoin=E2=80=99s history.=C2=A0 Never before has Bitcoin face=
d an existential threat to its cryptographic primitives. A successful quant=
um attack on Bitcoin would result in significant economic disruption and da=
mage across the entire ecosystem. Beyond its impact on price, the ability o=
f miners to provide network security may be significantly impacted.=C2=A0=
=C2=A0</span></p><ul style=3D"margin-top:0px;margin-bottom:0px"><li dir=3D"=
ltr" style=3D"list-style-type:disc;font-size:11pt;font-family:"Courier=
New",monospace;color:rgb(0,0,0);background-color:transparent;font-var=
iant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:=
normal;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=
=3D"line-height:1.38;margin-top:12pt;margin-bottom:0pt" role=3D"presentatio=
n"><span style=3D"font-size:11pt;background-color:transparent;font-weight:7=
00;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-=
alternates:normal;vertical-align:baseline">Accelerating quantum progress.</=
span><span style=3D"font-size:11pt;background-color:transparent;font-varian=
t-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:nor=
mal;vertical-align:baseline">=C2=A0</span></p><ul style=3D"margin-top:0px;m=
argin-bottom:0px"><li dir=3D"ltr" style=3D"list-style-type:circle;font-size=
:11pt;font-family:"Courier New",monospace;color:rgb(0,0,0);backgr=
ound-color:transparent;font-variant-numeric:normal;font-variant-east-asian:=
normal;font-variant-alternates:normal;vertical-align:baseline;white-space:p=
re-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bot=
tom:0pt" role=3D"presentation"><span style=3D"font-size:11pt;background-col=
or:transparent;font-variant-numeric:normal;font-variant-east-asian:normal;f=
ont-variant-alternates:normal;vertical-align:baseline">NIST ratified three =
production-grade PQ signature schemes in 2024; academic road-maps now estim=
ate a cryptographically-relevant quantum computer as early as 2027-2030. [<=
/span><a href=3D"https://www.mckinsey.com/~/media/mckinsey/business%20funct=
ions/mckinsey%20digital/our%20insights/the%20year%20of%20quantum%20from%20c=
oncept%20to%20reality%20in%202025/quantum-monitor-2025.pdf?shouldIndex=3Dfa=
lse" style=3D"text-decoration-line:none" rel=3D"nofollow" target=3D"_blank"=
><span style=3D"font-size:11pt;background-color:transparent;font-variant-nu=
meric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;=
text-decoration-line:underline;vertical-align:baseline">McKinsey</span></a>=
<span style=3D"font-size:11pt;background-color:transparent;font-variant-num=
eric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;v=
ertical-align:baseline">]</span></p></li></ul></li><li dir=3D"ltr" style=3D=
"list-style-type:disc;font-size:11pt;font-family:"Courier New",mo=
nospace;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-=
variant-numeric:normal;font-variant-east-asian:normal;font-variant-alternat=
es:normal;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" styl=
e=3D"line-height:1.38;text-align:justify;margin-top:0pt;margin-bottom:0pt" =
role=3D"presentation"><span style=3D"font-size:11pt;background-color:transp=
arent;font-variant-numeric:normal;font-variant-east-asian:normal;font-varia=
nt-alternates:normal;vertical-align:baseline">Quantum algorithms are rapidl=
y improving</span></p><ul style=3D"margin-top:0px;margin-bottom:0px"><li di=
r=3D"ltr" style=3D"list-style-type:circle;font-size:11pt;font-family:"=
Courier New",monospace;color:rgb(0,0,0);background-color:transparent;f=
ont-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alte=
rnates:normal;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" =
style=3D"line-height:1.38;text-align:justify;margin-top:0pt;margin-bottom:0=
pt" role=3D"presentation"><span style=3D"font-size:11pt;background-color:tr=
ansparent;font-variant-numeric:normal;font-variant-east-asian:normal;font-v=
ariant-alternates:normal;vertical-align:baseline">The safety envelope is sh=
rinking by dramatic increases in algorithms even if the pace of hardware im=
provements is slower. Algorithms are <a href=3D"https://security.googleblog=
.com/2025/05/tracking-cost-of-quantum-factori.html" rel=3D"nofollow" target=
=3D"_blank">improving up to 20X</a>, lowering the theoretical hardware requ=
irements for breaking classical encryption.</span></p></li></ul></li><li di=
r=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-family:"Co=
urier New",monospace;color:rgb(0,0,0);background-color:transparent;fon=
t-variant-numeric:normal;font-variant-east-asian:normal;font-variant-altern=
ates:normal;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" st=
yle=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt" role=3D"presentat=
ion"><span style=3D"font-size:11pt;background-color:transparent;font-weight=
:700;font-variant-numeric:normal;font-variant-east-asian:normal;font-varian=
t-alternates:normal;vertical-align:baseline">Bitcoin=E2=80=99s exposed publ=
ic keys.</span><span style=3D"font-size:11pt;background-color:transparent;f=
ont-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alte=
rnates:normal;vertical-align:baseline">=C2=A0</span></p><ul style=3D"margin=
-top:0px;margin-bottom:0px"><li dir=3D"ltr" style=3D"list-style-type:circle=
;font-size:11pt;font-family:"Courier New",monospace;color:rgb(0,0=
,0);background-color:transparent;font-variant-numeric:normal;font-variant-e=
ast-asian:normal;font-variant-alternates:normal;vertical-align:baseline;whi=
te-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;=
margin-bottom:0pt" role=3D"presentation"><span style=3D"font-size:11pt;back=
ground-color:transparent;font-variant-numeric:normal;font-variant-east-asia=
n:normal;font-variant-alternates:normal;vertical-align:baseline">Roughly 25=
% of all bitcoin have revealed a public key on-chain; those UTXOs could be =
stolen with sufficient quantum power.=C2=A0=C2=A0</span></p></li></ul></li>=
<li dir=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-family:&q=
uot;Courier New",monospace;color:rgb(0,0,0);background-color:transpare=
nt;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-=
alternates:normal;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"l=
tr" style=3D"line-height:1.38;text-align:justify;margin-top:0pt;margin-bott=
om:0pt" role=3D"presentation"><span style=3D"font-size:11pt;background-colo=
r:transparent;font-weight:700;font-variant-numeric:normal;font-variant-east=
-asian:normal;font-variant-alternates:normal;vertical-align:baseline">We ma=
y not know the attack is underway.=C2=A0</span></p><ul style=3D"margin-top:=
0px;margin-bottom:0px"><li dir=3D"ltr" style=3D"list-style-type:circle;font=
-size:11pt;font-family:"Courier New",monospace;color:rgb(0,0,0);b=
ackground-color:transparent;font-variant-numeric:normal;font-variant-east-a=
sian:normal;font-variant-alternates:normal;vertical-align:baseline;white-sp=
ace:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;text-align:justify;m=
argin-top:0pt;margin-bottom:0pt" role=3D"presentation"><span style=3D"font-=
size:11pt;background-color:transparent;font-variant-numeric:normal;font-var=
iant-east-asian:normal;font-variant-alternates:normal;vertical-align:baseli=
ne">Quantum attackers could compute the private key for known public keys t=
hen transfer all funds weeks or months later, in a covert bleed to not aler=
t chain watchers. Q-Day may be only known much later if the attack withhold=
s broadcasting transactions in order to postpone revealing their capabiliti=
es.</span></p></li></ul></li><li dir=3D"ltr" style=3D"list-style-type:disc;=
font-size:11pt;font-family:"Courier New",monospace;color:rgb(0,0,=
0);background-color:transparent;font-weight:700;font-variant-numeric:normal=
;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-ali=
gn:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;=
margin-top:0pt;margin-bottom:0pt" role=3D"presentation"><span style=3D"font=
-size:11pt;background-color:transparent;font-variant-numeric:normal;font-va=
riant-east-asian:normal;font-variant-alternates:normal;vertical-align:basel=
ine">Private keys become public.=C2=A0</span></p><ul style=3D"margin-top:0p=
x;margin-bottom:0px"><li dir=3D"ltr" style=3D"list-style-type:circle;font-s=
ize:11pt;font-family:"Courier New",monospace;color:rgb(0,0,0);bac=
kground-color:transparent;font-weight:700;font-variant-numeric:normal;font-=
variant-east-asian:normal;font-variant-alternates:normal;vertical-align:bas=
eline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;margin=
-top:0pt;margin-bottom:0pt" role=3D"presentation"><span style=3D"font-size:=
11pt;background-color:transparent;font-weight:400;font-variant-numeric:norm=
al;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-a=
lign:baseline">Assuming that quantum computers are able to maintain their c=
urrent trajectories and overcome existing engineering obstacles, there is a=
near certain chance that all P2PK (and other outputs with exposed pubkeys)=
private keys will be found and used to steal the funds.</span></p></li></u=
l></li><li dir=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-fa=
mily:"Courier New",monospace;color:rgb(0,0,0);background-color:tr=
ansparent;font-weight:700;font-variant-numeric:normal;font-variant-east-asi=
an:normal;font-variant-alternates:normal;vertical-align:baseline;white-spac=
e:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-=
bottom:0pt" role=3D"presentation"><span style=3D"font-size:11pt;background-=
color:transparent;font-variant-numeric:normal;font-variant-east-asian:norma=
l;font-variant-alternates:normal;vertical-align:baseline">Impossible to kno=
w motivations.=C2=A0</span></p><ul style=3D"margin-top:0px;margin-bottom:0p=
x"><li dir=3D"ltr" style=3D"list-style-type:circle;font-size:11pt;font-fami=
ly:"Courier New",monospace;color:rgb(0,0,0);background-color:tran=
sparent;font-weight:700;font-variant-numeric:normal;font-variant-east-asian=
:normal;font-variant-alternates:normal;vertical-align:baseline;white-space:=
pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bo=
ttom:0pt" role=3D"presentation"><span style=3D"font-size:11pt;background-co=
lor:transparent;font-weight:400;font-variant-numeric:normal;font-variant-ea=
st-asian:normal;font-variant-alternates:normal;vertical-align:baseline">Pri=
or to a quantum attack, it is impossible to know the motivations of the att=
acker.=C2=A0 An economically motivated attacker will try to remain undetect=
ed for as long as possible, while a malicious attacker will attempt to dest=
roy as much value as possible.=C2=A0=C2=A0</span></p></li></ul></li><li dir=
=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-family:"Cou=
rier New",monospace;color:rgb(0,0,0);background-color:transparent;font=
-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alterna=
tes:normal;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" sty=
le=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt" role=3D"presentati=
on"><span style=3D"font-size:11pt;background-color:transparent;font-weight:=
700;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant=
-alternates:normal;vertical-align:baseline">Upgrade inertia.</span><span st=
yle=3D"font-size:11pt;background-color:transparent;font-variant-numeric:nor=
mal;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-=
align:baseline">=C2=A0</span></p><ul style=3D"margin-top:0px;margin-bottom:=
0px"><li dir=3D"ltr" style=3D"list-style-type:circle;font-size:11pt;font-fa=
mily:"Courier New",monospace;color:rgb(0,0,0);background-color:tr=
ansparent;font-variant-numeric:normal;font-variant-east-asian:normal;font-v=
ariant-alternates:normal;vertical-align:baseline;white-space:pre-wrap"><p d=
ir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt" role=
=3D"presentation"><span style=3D"font-size:11pt;background-color:transparen=
t;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-a=
lternates:normal;vertical-align:baseline">Coordinating wallets, exchanges, =
miners and custodians historically takes years.</span></p></li><li dir=3D"l=
tr" style=3D"list-style-type:circle;font-size:11pt;font-family:"Courie=
r New",monospace;color:rgb(0,0,0);background-color:transparent;font-va=
riant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates=
:normal;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=
=3D"line-height:1.38;text-align:justify;margin-top:0pt;margin-bottom:0pt" r=
ole=3D"presentation"><span style=3D"font-size:11pt;background-color:transpa=
rent;font-variant-numeric:normal;font-variant-east-asian:normal;font-varian=
t-alternates:normal;vertical-align:baseline">The longer we postpone migrati=
on, the harder it becomes to coordinate wallets, exchanges, miners, and cus=
todians. A clear, time-boxed pathway is the only credible defense.</span></=
p></li><li dir=3D"ltr" style=3D"list-style-type:circle;font-size:11pt;font-=
family:"Courier New",monospace;color:rgb(0,0,0);background-color:=
transparent;font-variant-numeric:normal;font-variant-east-asian:normal;font=
-variant-alternates:normal;vertical-align:baseline;white-space:pre-wrap"><p=
dir=3D"ltr" style=3D"line-height:1.38;text-align:justify;margin-top:0pt;ma=
rgin-bottom:12pt" role=3D"presentation"><span style=3D"font-size:11pt;backg=
round-color:transparent;font-variant-numeric:normal;font-variant-east-asian=
:normal;font-variant-alternates:normal;vertical-align:baseline">Coordinatin=
g distributed groups is more prone to delay, even if everyone has similar m=
otivations. Historically, Bitcoin has been slow to adopt code changes, ofte=
n taking multiple years to be approved.</span></p></li></ul></li></ul><span=
dir=3D"ltr" style=3D"line-height:1.38;text-align:justify;margin-top:14pt;m=
argin-bottom:6pt"><span style=3D"font-size:16pt;font-family:"Courier N=
ew",monospace;color:rgb(0,0,0);background-color:transparent;font-varia=
nt-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:no=
rmal;vertical-align:baseline">Benefits at a Glance</span></span><ul style=
=3D"margin-top:0px;margin-bottom:0px"><li dir=3D"ltr" style=3D"list-style-t=
ype:disc;font-size:11pt;font-family:Arial,sans-serif;color:rgb(0,0,0);backg=
round-color:transparent;font-variant-numeric:normal;font-variant-east-asian=
:normal;font-variant-alternates:normal;vertical-align:baseline;white-space:=
pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;text-align:justify;margi=
n-top:12pt;margin-bottom:0pt" role=3D"presentation"><span style=3D"font-siz=
e:11pt;font-family:"Courier New",monospace;background-color:trans=
parent;font-weight:700;font-variant-numeric:normal;font-variant-east-asian:=
normal;font-variant-alternates:normal;vertical-align:baseline">Resilience:<=
/span><span style=3D"font-size:11pt;font-family:"Courier New",mon=
ospace;background-color:transparent;font-variant-numeric:normal;font-varian=
t-east-asian:normal;font-variant-alternates:normal;vertical-align:baseline"=
> Bitcoin protocol remains secure for the foreseeable future without waitin=
g for a last-minute emergency.</span></p></li><li dir=3D"ltr" style=3D"list=
-style-type:disc;font-size:11pt;font-family:Arial,sans-serif;color:rgb(0,0,=
0);background-color:transparent;font-variant-numeric:normal;font-variant-ea=
st-asian:normal;font-variant-alternates:normal;vertical-align:baseline;whit=
e-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;text-align:justi=
fy;margin-top:0pt;margin-bottom:0pt" role=3D"presentation"><span style=3D"f=
ont-size:11pt;font-family:"Courier New",monospace;background-colo=
r:transparent;font-weight:700;font-variant-numeric:normal;font-variant-east=
-asian:normal;font-variant-alternates:normal;vertical-align:baseline">Certa=
inty</span><span style=3D"font-size:11pt;font-family:"Courier New"=
;,monospace;background-color:transparent;font-variant-numeric:normal;font-v=
ariant-east-asian:normal;font-variant-alternates:normal;vertical-align:base=
line">: Bitcoin users and stakeholders gain certainty that a plan is both i=
n place and being implemented to effectively deal with the threat of quantu=
m theft of bitcoin.=C2=A0=C2=A0</span></p></li><li dir=3D"ltr" style=3D"lis=
t-style-type:disc;font-size:11pt;font-family:Arial,sans-serif;color:rgb(0,0=
,0);background-color:transparent;font-variant-numeric:normal;font-variant-e=
ast-asian:normal;font-variant-alternates:normal;vertical-align:baseline;whi=
te-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;text-align:just=
ify;margin-top:0pt;margin-bottom:0pt" role=3D"presentation"><span style=3D"=
font-size:11pt;font-family:"Courier New",monospace;background-col=
or:transparent;font-weight:700;font-variant-numeric:normal;font-variant-eas=
t-asian:normal;font-variant-alternates:normal;vertical-align:baseline">Clar=
ity:</span><span style=3D"font-size:11pt;font-family:"Courier New"=
;,monospace;background-color:transparent;font-variant-numeric:normal;font-v=
ariant-east-asian:normal;font-variant-alternates:normal;vertical-align:base=
line"> A single, publicized timeline aligns the entire ecosystem (wallets, =
exchanges, hardware vendors).</span></p></li><li dir=3D"ltr" style=3D"list-=
style-type:disc;font-size:11pt;font-family:Arial,sans-serif;color:rgb(0,0,0=
);background-color:transparent;font-variant-numeric:normal;font-variant-eas=
t-asian:normal;font-variant-alternates:normal;vertical-align:baseline;white=
-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;text-align:justif=
y;margin-top:0pt;margin-bottom:12pt" role=3D"presentation"><span style=3D"f=
ont-size:11pt;font-family:"Courier New",monospace;background-colo=
r:transparent;font-weight:700;font-variant-numeric:normal;font-variant-east=
-asian:normal;font-variant-alternates:normal;vertical-align:baseline">Suppl=
y Discipline:</span><span style=3D"font-size:11pt;font-family:"Courier=
New",monospace;background-color:transparent;font-variant-numeric:norm=
al;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-a=
lign:baseline"> Abandoned keys that never migrate become unspendable, reduc=
ing supply, <a href=3D"https://bitcointalk.org/index.php?topic=3D198.msg164=
7#msg1647" rel=3D"nofollow" target=3D"_blank">as Satoshi described</a></spa=
n><span style=3D"font-size:11pt;font-family:"Courier New",monospa=
ce;background-color:transparent;font-variant-numeric:normal;font-variant-ea=
st-asian:normal;font-variant-alternates:normal;vertical-align:baseline">.=
=C2=A0=C2=A0</span></p></li></ul><span dir=3D"ltr" style=3D"line-height:1.3=
8;text-align:justify;margin-top:12pt;margin-bottom:12pt"><span style=3D"fon=
t-size:16pt;font-family:"Courier New",monospace;color:rgb(0,0,0);=
background-color:transparent;font-variant-numeric:normal;font-variant-east-=
asian:normal;font-variant-alternates:normal;vertical-align:baseline">Specif=
ication</span></span><span dir=3D"ltr" style=3D"line-height:1.38;text-align=
:justify;margin-top:12pt;margin-bottom:12pt"><span style=3D"font-weight:nor=
mal"><div dir=3D"ltr" style=3D"margin-left:0pt" align=3D"left"><span style=
=3D"border:medium;border-collapse:collapse"><span><span width=3D"181"></spa=
n><span width=3D"224"></span><span width=3D"137"></span><span width=3D"130"=
></span></span><span><span style=3D"min-height:0pt"><span style=3D"border-w=
idth:1pt;border-style:solid;border-color:rgb(0,0,0);vertical-align:top;padd=
ing:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-height:1.38;text-alig=
n:center;margin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;fo=
nt-family:"Courier New",monospace;color:rgb(0,0,0);background-col=
or:transparent;font-weight:700;font-variant-numeric:normal;font-variant-eas=
t-asian:normal;font-variant-alternates:normal;vertical-align:baseline">Phas=
e</span></p></span><span style=3D"border-width:1pt;border-style:solid;borde=
r-color:rgb(0,0,0);vertical-align:top;padding:5pt;overflow:hidden"><p dir=
=3D"ltr" style=3D"line-height:1.38;text-align:center;margin-top:0pt;margin-=
bottom:0pt"><span style=3D"font-size:11pt;font-family:"Courier New&quo=
t;,monospace;color:rgb(0,0,0);background-color:transparent;font-weight:700;=
font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alt=
ernates:normal;vertical-align:baseline">What Happens</span></p></span><span=
style=3D"border-width:1pt;border-style:solid;border-color:rgb(0,0,0);verti=
cal-align:top;padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-hei=
ght:1.38;text-align:center;margin-top:0pt;margin-bottom:0pt"><span style=3D=
"font-size:11pt;font-family:"Courier New",monospace;color:rgb(0,0=
,0);background-color:transparent;font-weight:700;font-variant-numeric:norma=
l;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-al=
ign:baseline">Who Must Act</span></p></span><span style=3D"border-width:1pt=
;border-style:solid;border-color:rgb(0,0,0);vertical-align:top;padding:5pt;=
overflow:hidden"><p dir=3D"ltr" style=3D"line-height:1.38;text-align:center=
;margin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;font-famil=
y:"Courier New",monospace;color:rgb(0,0,0);background-color:trans=
parent;font-weight:700;font-variant-numeric:normal;font-variant-east-asian:=
normal;font-variant-alternates:normal;vertical-align:baseline">Time Horizon=
</span></p></span></span><span style=3D"min-height:0pt"><span style=3D"bord=
er-width:1pt;border-style:solid;border-color:rgb(0,0,0);vertical-align:top;=
padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-height:1.38;margi=
n-top:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;font-family:&quo=
t;Courier New",monospace;color:rgb(0,0,0);background-color:transparent=
;font-weight:700;font-variant-numeric:normal;font-variant-east-asian:normal=
;font-variant-alternates:normal;vertical-align:baseline">Phase A - </span><=
span style=3D"font-size:11pt;font-family:"Courier New",monospace;=
color:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;f=
ont-variant-east-asian:normal;font-variant-alternates:normal;vertical-align=
:baseline">Disallow spends to legacy script types</span></p></span><span st=
yle=3D"border-width:1pt;border-style:solid;border-color:rgb(0,0,0);vertical=
-align:middle;padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-hei=
ght:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:10pt;fo=
nt-family:"Courier New",monospace;color:rgb(0,0,0);background-col=
or:transparent;font-variant-numeric:normal;font-variant-east-asian:normal;f=
ont-variant-alternates:normal;vertical-align:baseline">Permitted sends are =
from legacy scripts to P2QRH scripts</span></p></span><span style=3D"border=
-width:1pt;border-style:solid;border-color:rgb(0,0,0);vertical-align:middle=
;padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-height:1.38;marg=
in-top:0pt;margin-bottom:0pt"><span style=3D"font-size:10pt;font-family:&qu=
ot;Courier New",monospace;color:rgb(0,0,0);background-color:transparen=
t;font-style:italic;font-variant-numeric:normal;font-variant-east-asian:nor=
mal;font-variant-alternates:normal;vertical-align:baseline">Everyone</span>=
<span style=3D"font-size:10pt;font-family:"Courier New",monospace=
;color:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;=
font-variant-east-asian:normal;font-variant-alternates:normal;vertical-alig=
n:baseline"> holding or accepting BTC.</span></p></span><span style=3D"bord=
er-width:1pt;border-style:solid;border-color:rgb(0,0,0);vertical-align:midd=
le;padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-height:1.38;ma=
rgin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:10pt;font-family:&=
quot;Courier New",monospace;color:rgb(0,0,0);background-color:transpar=
ent;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant=
-alternates:normal;vertical-align:baseline">3 years after BIP-360 implement=
ation</span></p></span></span><span style=3D"min-height:0pt"><span style=3D=
"border-width:1pt;border-style:solid;border-color:rgb(0,0,0);vertical-align=
:top;padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-height:1.38;=
margin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;font-family=
:"Courier New",monospace;color:rgb(0,0,0);background-color:transp=
arent;font-weight:700;font-variant-numeric:normal;font-variant-east-asian:n=
ormal;font-variant-alternates:normal;vertical-align:baseline">Phase B =E2=
=80=93 </span><span style=3D"font-size:11pt;font-family:"Courier New&q=
uot;,monospace;color:rgb(0,0,0);background-color:transparent;font-variant-n=
umeric:normal;font-variant-east-asian:normal;font-variant-alternates:normal=
;vertical-align:baseline">Disallow spends from quantum vulnerable outputs</=
span></p></span><span style=3D"border-width:1pt;border-style:solid;border-c=
olor:rgb(0,0,0);vertical-align:middle;padding:5pt;overflow:hidden"><p dir=
=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span =
style=3D"font-size:10pt;font-family:"Courier New",monospace;color=
:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;font-v=
ariant-east-asian:normal;font-variant-alternates:normal;vertical-align:base=
line">At a preset block-height, nodes reject transactions that rely on ECDS=
A/Schnorr keys.=C2=A0</span></p></span><span style=3D"border-width:1pt;bord=
er-style:solid;border-color:rgb(0,0,0);vertical-align:middle;padding:5pt;ov=
erflow:hidden"><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;marg=
in-bottom:0pt"><span style=3D"font-size:10pt;font-family:"Courier New&=
quot;,monospace;color:rgb(0,0,0);background-color:transparent;font-style:it=
alic;font-variant-numeric:normal;font-variant-east-asian:normal;font-varian=
t-alternates:normal;vertical-align:baseline">Everyone</span><span style=3D"=
font-size:10pt;font-family:"Courier New",monospace;color:rgb(0,0,=
0);background-color:transparent;font-variant-numeric:normal;font-variant-ea=
st-asian:normal;font-variant-alternates:normal;vertical-align:baseline"> ho=
lding or accepting BTC.</span></p></span><span style=3D"border-width:1pt;bo=
rder-style:solid;border-color:rgb(0,0,0);vertical-align:middle;padding:5pt;=
overflow:hidden"><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;ma=
rgin-bottom:0pt"><span style=3D"font-size:10pt;font-family:"Courier Ne=
w",monospace;color:rgb(0,0,0);background-color:transparent;font-varian=
t-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:nor=
mal;vertical-align:baseline">2 years after Phase A activation.</span></p></=
span></span><span style=3D"min-height:0pt"><span style=3D"border-width:1pt;=
border-style:solid;border-color:rgb(0,0,0);vertical-align:top;padding:5pt;o=
verflow:hidden"><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;mar=
gin-bottom:0pt"><span style=3D"font-size:11pt;font-family:"Courier New=
",monospace;color:rgb(0,0,0);background-color:transparent;font-weight:=
700;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant=
-alternates:normal;vertical-align:baseline">Phase C =E2=80=93 </span><span =
style=3D"font-size:11pt;font-family:"Courier New",monospace;color=
:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;font-v=
ariant-east-asian:normal;font-variant-alternates:normal;vertical-align:base=
line">Re-enable spends from quantum vulnerable outputs via ZK Proof</span><=
/p></span><span style=3D"border-width:1pt;border-style:solid;border-color:r=
gb(0,0,0);vertical-align:middle;padding:5pt;overflow:hidden"><p dir=3D"ltr"=
style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D=
"font-size:10pt;font-family:"Courier New",monospace;color:rgb(0,0=
,0);background-color:transparent;font-variant-numeric:normal;font-variant-e=
ast-asian:normal;font-variant-alternates:normal;vertical-align:baseline">Us=
ers with frozen quantum vulnerable funds and a HD wallet seed phrase can co=
nstruct a quantum safe ZK proof to recover funds.</span></p></span><span st=
yle=3D"border-width:1pt;border-style:solid;border-color:rgb(0,0,0);vertical=
-align:middle;padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-hei=
ght:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:10pt;fo=
nt-family:"Courier New",monospace;color:rgb(0,0,0);background-col=
or:transparent;font-variant-numeric:normal;font-variant-east-asian:normal;f=
ont-variant-alternates:normal;vertical-align:baseline">Users who failed to =
migrate funds before Phase B.</span></p></span><span style=3D"border-width:=
1pt;border-style:solid;border-color:rgb(0,0,0);vertical-align:middle;paddin=
g:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:=
0pt;margin-bottom:0pt"><span style=3D"font-size:10pt;font-family:"Cour=
ier New",monospace;color:rgb(0,0,0);background-color:transparent;font-=
variant-numeric:normal;font-variant-east-asian:normal;font-variant-alternat=
es:normal;vertical-align:baseline">TBD pending research, demand, and consen=
sus.</span></p></span></span></span></span></div></span></span><span dir=3D=
"ltr" style=3D"line-height:1.38;margin-top:14pt;margin-bottom:6pt"><span st=
yle=3D"font-size:16pt;font-family:"Courier New",monospace;color:r=
gb(0,0,0);background-color:transparent;font-weight:700;font-style:normal;fo=
nt-variant:normal;text-decoration:none;vertical-align:baseline;white-space:=
pre-wrap">Rationale</span></span><ul style=3D"margin-top:0px;margin-bottom:=
0px"><li dir=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-fami=
ly:"Courier New",monospace;color:rgb(0,0,0);background-color:tran=
sparent;font-variant-numeric:normal;font-variant-east-asian:normal;font-var=
iant-alternates:normal;vertical-align:baseline;white-space:pre-wrap"><p dir=
=3D"ltr" style=3D"line-height:1.38;text-align:justify;margin-top:12pt;margi=
n-bottom:0pt" role=3D"presentation"><span style=3D"font-size:11pt;backgroun=
d-color:transparent;font-variant-numeric:normal;font-variant-east-asian:nor=
mal;font-variant-alternates:normal;vertical-align:baseline">Even if Bitcoin=
is not a primary initial target of a cryptographically relevant quantum co=
mputer, widespread knowledge that such a computer exists and is capable of =
breaking Bitcoin=E2=80=99s cryptography will damage faith in the network .=
=C2=A0</span></p></li><li dir=3D"ltr" style=3D"list-style-type:disc;font-si=
ze:11pt;font-family:"Courier New",monospace;color:rgb(0,0,0);back=
ground-color:transparent;font-variant-numeric:normal;font-variant-east-asia=
n:normal;font-variant-alternates:normal;vertical-align:baseline;white-space=
:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;text-align:justify;marg=
in-top:0pt;margin-bottom:0pt" role=3D"presentation"><span style=3D"font-siz=
e:11pt;background-color:transparent;font-variant-numeric:normal;font-varian=
t-east-asian:normal;font-variant-alternates:normal;vertical-align:baseline"=
>An attack on Bitcoin may not be economically motivated - an attacker may b=
e politically or maliciously motivated and may attempt to destroy value and=
trust in Bitcoin rather than extract value.=C2=A0 There is no way to know =
in advance how, when, or why an attack may occur.=C2=A0 A defensive positio=
n must be taken well in advance of any attack.=C2=A0=C2=A0</span></p></li><=
li dir=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-family:&qu=
ot;Courier New",monospace;color:rgb(0,0,0);background-color:transparen=
t;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-a=
lternates:normal;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"lt=
r" style=3D"line-height:1.38;text-align:justify;margin-top:0pt;margin-botto=
m:0pt" role=3D"presentation"><span style=3D"font-size:11pt;background-color=
:transparent;font-variant-numeric:normal;font-variant-east-asian:normal;fon=
t-variant-alternates:normal;vertical-align:baseline">Bitcoin=E2=80=99s curr=
ent signatures (ECDSA/Schnorr) will be a tantalizing target: any UTXO that =
has ever exposed its public key on-chain (roughly 25 % of all bitcoin) coul=
d be stolen by a cryptographically relevant quantum computer.</span></p></l=
i><li dir=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-family:=
Arial,sans-serif;color:rgb(0,0,0);background-color:transparent;font-variant=
-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:norm=
al;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"li=
ne-height:1.38;text-align:justify;margin-top:0pt;margin-bottom:0pt" role=3D=
"presentation"><span style=3D"font-size:11pt;font-family:"Courier New&=
quot;,monospace;background-color:transparent;font-weight:700;font-variant-n=
umeric:normal;font-variant-east-asian:normal;font-variant-alternates:normal=
;vertical-align:baseline">Existing Proposals are Insufficient.</span><span =
style=3D"font-size:11pt;font-family:"Courier New",monospace;backg=
round-color:transparent;font-variant-numeric:normal;font-variant-east-asian=
:normal;font-variant-alternates:normal;vertical-align:baseline">=C2=A0=C2=
=A0</span></p><ol style=3D"margin-top:0px;margin-bottom:0px"><li dir=3D"ltr=
" style=3D"list-style-type:lower-alpha;font-size:11pt;font-family:"Cou=
rier New",monospace;color:rgb(0,0,0);background-color:transparent;font=
-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alterna=
tes:normal;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" sty=
le=3D"line-height:1.38;text-align:justify;margin-top:0pt;margin-bottom:0pt"=
role=3D"presentation"><span style=3D"font-size:11pt;background-color:trans=
parent;font-variant-numeric:normal;font-variant-east-asian:normal;font-vari=
ant-alternates:normal;vertical-align:baseline">Any proposal that allows for=
the quantum theft of =E2=80=9Clost=E2=80=9D bitcoin is creating a redistri=
bution dilemma. There are 3 types of proposals:</span></p><ol style=3D"marg=
in-top:0px;margin-bottom:0px"><li dir=3D"ltr" style=3D"list-style-type:lowe=
r-roman;font-size:11pt;font-family:"Courier New",monospace;color:=
rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;font-va=
riant-east-asian:normal;font-variant-alternates:normal;vertical-align:basel=
ine;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;text-ali=
gn:justify;margin-top:0pt;margin-bottom:0pt" role=3D"presentation"><span st=
yle=3D"font-size:11pt;background-color:transparent;font-variant-numeric:nor=
mal;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-=
align:baseline">Allow anyone to steal vulnerable coins, benefitting those w=
ho reach quantum capability earliest.</span></p></li><li dir=3D"ltr" style=
=3D"list-style-type:lower-roman;font-size:11pt;font-family:"Courier Ne=
w",monospace;color:rgb(0,0,0);background-color:transparent;font-varian=
t-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:nor=
mal;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"l=
ine-height:1.38;text-align:justify;margin-top:0pt;margin-bottom:0pt" role=
=3D"presentation"><span style=3D"font-size:11pt;background-color:transparen=
t;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-a=
lternates:normal;vertical-align:baseline">Allow throttled theft of coins, w=
hich leads to RBF battles and ultimately miners subsidizing their revenue f=
rom lost coins.</span></p></li><li dir=3D"ltr" style=3D"list-style-type:low=
er-roman;font-size:11pt;font-family:"Courier New",monospace;color=
:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;font-v=
ariant-east-asian:normal;font-variant-alternates:normal;vertical-align:base=
line;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;text-al=
ign:justify;margin-top:0pt;margin-bottom:0pt" role=3D"presentation"><span s=
tyle=3D"font-size:11pt;background-color:transparent;font-variant-numeric:no=
rmal;font-variant-east-asian:normal;font-variant-alternates:normal;vertical=
-align:baseline">Allow no one to steal vulnerable coins.</span></p></li></o=
l></li></ol></li><li dir=3D"ltr" style=3D"list-style-type:disc;font-size:11=
pt;font-family:"Courier New",monospace;color:rgb(0,0,0);backgroun=
d-color:transparent;font-weight:700;font-variant-numeric:normal;font-varian=
t-east-asian:normal;font-variant-alternates:normal;vertical-align:baseline;=
white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;text-align:j=
ustify;margin-top:0pt;margin-bottom:0pt" role=3D"presentation"><span style=
=3D"font-size:11pt;background-color:transparent;font-variant-numeric:normal=
;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-ali=
gn:baseline">Minimizes attack surface</span></p><ol style=3D"margin-top:0px=
;margin-bottom:0px"><li dir=3D"ltr" style=3D"list-style-type:lower-alpha;fo=
nt-size:11pt;font-family:"Courier New",monospace;color:rgb(0,0,0)=
;background-color:transparent;font-variant-numeric:normal;font-variant-east=
-asian:normal;font-variant-alternates:normal;vertical-align:baseline;white-=
space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;text-align:justify=
;margin-top:0pt;margin-bottom:0pt" role=3D"presentation"><span style=3D"fon=
t-size:11pt;background-color:transparent;font-variant-numeric:normal;font-v=
ariant-east-asian:normal;font-variant-alternates:normal;vertical-align:base=
line">By disallowing new spends to quantum vulnerable script types, we mini=
mize the attack surface with each new UTXO.=C2=A0=C2=A0</span></p></li><li =
dir=3D"ltr" style=3D"list-style-type:lower-alpha;font-size:11pt;font-family=
:"Courier New",monospace;color:rgb(0,0,0);background-color:transp=
arent;font-variant-numeric:normal;font-variant-east-asian:normal;font-varia=
nt-alternates:normal;vertical-align:baseline;white-space:pre-wrap"><p dir=
=3D"ltr" style=3D"line-height:1.38;text-align:justify;margin-top:0pt;margin=
-bottom:0pt" role=3D"presentation"><span style=3D"font-size:11pt;background=
-color:transparent;font-variant-numeric:normal;font-variant-east-asian:norm=
al;font-variant-alternates:normal;vertical-align:baseline">Upgrades to Bitc=
oin have historically taken many years; this will hasten and speed up the a=
doption of new quantum resistant script types.=C2=A0</span></p></li><li dir=
=3D"ltr" style=3D"list-style-type:lower-alpha;font-size:11pt;font-family:&q=
uot;Courier New",monospace;color:rgb(0,0,0);background-color:transpare=
nt;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-=
alternates:normal;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"l=
tr" style=3D"line-height:1.38;text-align:justify;margin-top:0pt;margin-bott=
om:0pt" role=3D"presentation"><span style=3D"font-size:11pt;background-colo=
r:transparent;font-variant-numeric:normal;font-variant-east-asian:normal;fo=
nt-variant-alternates:normal;vertical-align:baseline">With a clear deadline=
, industry stakeholders will more readily upgrade existing infrastructure t=
o ensure continuity of services.=C2=A0=C2=A0</span></p></li></ol></li><li d=
ir=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-family:"C=
ourier New",monospace;color:rgb(0,0,0);background-color:transparent;fo=
nt-weight:700;font-variant-numeric:normal;font-variant-east-asian:normal;fo=
nt-variant-alternates:normal;vertical-align:baseline;white-space:pre-wrap">=
<p dir=3D"ltr" style=3D"line-height:1.38;text-align:justify;margin-top:0pt;=
margin-bottom:0pt" role=3D"presentation"><span style=3D"font-size:11pt;back=
ground-color:transparent;font-variant-numeric:normal;font-variant-east-asia=
n:normal;font-variant-alternates:normal;vertical-align:baseline">Minimizes =
loss of access to funds=C2=A0</span></p><ol style=3D"margin-top:0px;margin-=
bottom:0px"><li dir=3D"ltr" style=3D"list-style-type:lower-alpha;font-size:=
11pt;font-family:"Courier New",monospace;color:rgb(0,0,0);backgro=
und-color:transparent;font-variant-numeric:normal;font-variant-east-asian:n=
ormal;font-variant-alternates:normal;vertical-align:baseline;white-space:pr=
e-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;text-align:justify;margin-=
top:0pt;margin-bottom:12pt" role=3D"presentation"><span style=3D"font-size:=
11pt;background-color:transparent;font-variant-numeric:normal;font-variant-=
east-asian:normal;font-variant-alternates:normal;vertical-align:baseline">I=
f there is sufficient demand and research proves possible, submitting a ZK =
proof of knowledge of a BIP-39 seed phrase corresponding to a public key h=
ash or script hash would provide a trustless means for legacy outputs to be=
spent in a quantum resistant manner, even after the sunset.=C2=A0=C2=A0</s=
pan></p></li></ol></li></ul><br><div dir=3D"ltr" style=3D"margin-left:0pt" =
align=3D"left"><span style=3D"border:medium;border-collapse:collapse"><span=
><span width=3D"143"></span><span width=3D"539"></span></span><span><span s=
tyle=3D"min-height:27.4463pt"><span style=3D"border-width:1pt;border-style:=
solid;border-color:rgb(0,0,0);vertical-align:top;padding:5pt;overflow:hidde=
n"><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0p=
t"><span style=3D"font-size:11pt;font-family:"Courier New",monosp=
ace;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-vari=
ant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:n=
ormal;vertical-align:baseline">Stakeholder</span></p></span><span style=3D"=
border-width:1pt;border-style:solid;border-color:rgb(0,0,0);vertical-align:=
top;padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-height:1.38;m=
argin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;font-family:=
"Courier New",monospace;color:rgb(0,0,0);background-color:transpa=
rent;font-weight:700;font-variant-numeric:normal;font-variant-east-asian:no=
rmal;font-variant-alternates:normal;vertical-align:baseline">Incentive to U=
pgrade</span></p></span></span><span style=3D"min-height:53.5388pt"><span s=
tyle=3D"border-width:1pt;border-style:solid;border-color:rgb(0,0,0);vertica=
l-align:middle;padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-he=
ight:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;f=
ont-family:"Courier New",monospace;color:rgb(0,0,0);background-co=
lor:transparent;font-weight:700;font-variant-numeric:normal;font-variant-ea=
st-asian:normal;font-variant-alternates:normal;vertical-align:baseline">Min=
ers</span></p></span><span style=3D"border-width:1pt;border-style:solid;bor=
der-color:rgb(0,0,0);vertical-align:top;padding:5pt;overflow:hidden"><p dir=
=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span =
style=3D"font-size:11pt;font-family:"Courier New",monospace;color=
:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;font-v=
ariant-east-asian:normal;font-variant-alternates:normal;vertical-align:base=
line">=E2=80=A2 Larger size PQ signatures along with incentive for users to=
migrate will create more demand for block space and thus higher fees colle=
cted by miners.</span></p><p dir=3D"ltr" style=3D"line-height:1.38;margin-t=
op:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;font-family:"C=
ourier New",monospace;color:rgb(0,0,0);background-color:transparent;fo=
nt-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alter=
nates:normal;vertical-align:baseline">=E2=80=A2 Post-Phase B, non-upgraded =
miners produce invalid blocks.</span></p><p dir=3D"ltr" style=3D"line-heigh=
t:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;font=
-family:"Courier New",monospace;color:rgb(0,0,0);background-color=
:transparent;font-variant-numeric:normal;font-variant-east-asian:normal;fon=
t-variant-alternates:normal;vertical-align:baseline">=E2=80=A2 A quantum at=
tack on Bitcoin will significantly devalue both their hardware and Bitcoin =
as a whole.=C2=A0</span></p></span></span><span style=3D"min-height:52pt"><=
span style=3D"border-width:1pt;border-style:solid;border-color:rgb(0,0,0);v=
ertical-align:middle;padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"l=
ine-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:=
11pt;font-family:"Courier New",monospace;color:rgb(0,0,0);backgro=
und-color:transparent;font-weight:700;font-variant-numeric:normal;font-vari=
ant-east-asian:normal;font-variant-alternates:normal;vertical-align:baselin=
e">Institutional Holders</span></p></span><span style=3D"border-width:1pt;b=
order-style:solid;border-color:rgb(0,0,0);vertical-align:top;padding:5pt;ov=
erflow:hidden"><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;marg=
in-bottom:0pt"><span style=3D"font-size:11pt;font-family:"Courier New&=
quot;,monospace;color:rgb(0,0,0);background-color:transparent;font-variant-=
numeric:normal;font-variant-east-asian:normal;font-variant-alternates:norma=
l;vertical-align:baseline">=E2=80=A2 Fiduciary duty: failing to act to prev=
ent a quantum attack on Bitcoin would violate the fiduciary duty to shareho=
lders.=C2=A0=C2=A0</span></p><p dir=3D"ltr" style=3D"line-height:1.38;margi=
n-top:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;font-family:&quo=
t;Courier New",monospace;color:rgb(0,0,0);background-color:transparent=
;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-al=
ternates:normal;vertical-align:baseline">=E2=80=A2 Demonstrating Bitcoin=E2=
=80=99s ability to effectively mitigate emerging threats will prove Bitcoin=
to be an investment grade asset.</span></p></span></span><span style=3D"mi=
n-height:52pt"><span style=3D"border-width:1pt;border-style:solid;border-co=
lor:rgb(0,0,0);vertical-align:middle;padding:5pt;overflow:hidden"><p dir=3D=
"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span sty=
le=3D"font-size:11pt;font-family:"Courier New",monospace;color:rg=
b(0,0,0);background-color:transparent;font-weight:700;font-variant-numeric:=
normal;font-variant-east-asian:normal;font-variant-alternates:normal;vertic=
al-align:baseline">Exchanges & Custodians</span></p></span><span style=
=3D"border-width:1pt;border-style:solid;border-color:rgb(0,0,0);vertical-al=
ign:top;padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-height:1.=
38;margin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;font-fam=
ily:"Courier New",monospace;color:rgb(0,0,0);background-color:tra=
nsparent;font-variant-numeric:normal;font-variant-east-asian:normal;font-va=
riant-alternates:normal;vertical-align:baseline">=E2=80=A2 Concentrated ris=
k: a quantum hack could bankrupt them overnight.</span></p><p dir=3D"ltr" s=
tyle=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D"f=
ont-size:11pt;font-family:"Courier New",monospace;color:rgb(0,0,0=
);background-color:transparent;font-variant-numeric:normal;font-variant-eas=
t-asian:normal;font-variant-alternates:normal;vertical-align:baseline">=E2=
=80=A2 Early migration is cheap relative to potential losses, potential law=
suits over improper custody and reputational damage.</span></p></span></spa=
n><span style=3D"min-height:52pt"><span style=3D"border-width:1pt;border-st=
yle:solid;border-color:rgb(0,0,0);vertical-align:middle;padding:5pt;overflo=
w:hidden"><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bo=
ttom:0pt"><span style=3D"font-size:11pt;font-family:"Courier New"=
,monospace;color:rgb(0,0,0);background-color:transparent;font-weight:700;fo=
nt-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alter=
nates:normal;vertical-align:baseline">Everyday Users</span></p></span><span=
style=3D"border-width:1pt;border-style:solid;border-color:rgb(0,0,0);verti=
cal-align:top;padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-hei=
ght:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;fo=
nt-family:"Courier New",monospace;color:rgb(0,0,0);background-col=
or:transparent;font-variant-numeric:normal;font-variant-east-asian:normal;f=
ont-variant-alternates:normal;vertical-align:baseline">=E2=80=A2 Self-sover=
eign peace of mind.</span></p><p dir=3D"ltr" style=3D"line-height:1.38;marg=
in-top:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;font-family:&qu=
ot;Courier New",monospace;color:rgb(0,0,0);background-color:transparen=
t;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-a=
lternates:normal;vertical-align:baseline">=E2=80=A2 Sunset date creates a c=
lear deadline and incentive to improve their security rather than an open-e=
nded =E2=80=9Csome day=E2=80=9D that invites procrastination.</span></p></s=
pan></span><span style=3D"min-height:43.7925pt"><span style=3D"border-width=
:1pt;border-style:solid;border-color:rgb(0,0,0);vertical-align:middle;paddi=
ng:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-height:1.38;margin-top=
:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;font-family:"Cou=
rier New",monospace;color:rgb(0,0,0);background-color:transparent;font=
-weight:700;font-variant-numeric:normal;font-variant-east-asian:normal;font=
-variant-alternates:normal;vertical-align:baseline">Attackers</span></p></s=
pan><span style=3D"border-width:1pt;border-style:solid;border-color:rgb(0,0=
,0);vertical-align:top;padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D=
"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D"font-siz=
e:11pt;font-family:"Courier New",monospace;color:rgb(0,0,0);backg=
round-color:transparent;font-variant-numeric:normal;font-variant-east-asian=
:normal;font-variant-alternates:normal;vertical-align:baseline">=E2=80=A2 E=
conomic incentive diminishes as sunset nears, stolen coins cannot be spent =
after Q-day.</span></p></span></span></span></span></div><p dir=3D"ltr" sty=
le=3D"line-height:1.38;text-align:justify;margin-top:12pt;margin-bottom:12p=
t"><span style=3D"font-size:11pt;font-family:"Courier New",monosp=
ace;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-vari=
ant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:n=
ormal;vertical-align:baseline">Key Insight:</span><span style=3D"font-size:=
11pt;font-family:"Courier New",monospace;color:rgb(0,0,0);backgro=
und-color:transparent;font-variant-numeric:normal;font-variant-east-asian:n=
ormal;font-variant-alternates:normal;vertical-align:baseline"> As mentioned=
earlier, the proposal turns quantum security into a </span><span style=3D"=
font-size:11pt;font-family:"Courier New",monospace;color:rgb(0,0,=
0);background-color:transparent;font-style:italic;font-variant-numeric:norm=
al;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-a=
lign:baseline">private incentive to upgrade</span><span style=3D"font-size:=
11pt;font-family:"Courier New",monospace;color:rgb(0,0,0);backgro=
und-color:transparent;font-variant-numeric:normal;font-variant-east-asian:n=
ormal;font-variant-alternates:normal;vertical-align:baseline">.=C2=A0=C2=A0=
</span></p><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-b=
ottom:0pt"><span style=3D"font-size:11pt;font-family:"Courier New"=
;,monospace;color:rgb(0,0,0);background-color:transparent;font-variant-nume=
ric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;ve=
rtical-align:baseline">This is not an offensive attack, rather, it is defen=
sive: our thesis is that the Bitcoin ecosystem wishes to defend itself and =
its interests against those who would prefer to do nothing and allow a mali=
cious actor to destroy both value and trust.=C2=A0=C2=A0</span></p><p dir=
=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span =
style=3D"background-color:transparent;color:rgb(0,0,0);font-family:"Co=
urier New",monospace;font-size:11pt;text-align:center"><br></span></p>=
<blockquote style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204=
,204,204);padding-left:1ex"><span style=3D"background-color:transparent;col=
or:rgb(0,0,0);font-family:"Courier New",monospace;font-size:11pt;=
text-align:center">"Lost coins only make everyone else's coins wor=
th slightly more. Think of it as a donation to everyone." - Satoshi Na=
kamoto</span></blockquote><br><p dir=3D"ltr" style=3D"line-height:1.38;marg=
in-top:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;font-family:&qu=
ot;Courier New",monospace;color:rgb(0,0,0);background-color:transparen=
t;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-a=
lternates:normal;vertical-align:baseline">If true, the corollary is:</span>=
</p><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0=
pt"><span style=3D"background-color:transparent;color:rgb(0,0,0);font-famil=
y:"Courier New",monospace;font-size:11pt;text-align:center"><br><=
/span></p><blockquote style=3D"margin:0px 0px 0px 0.8ex;border-left:1px sol=
id rgb(204,204,204);padding-left:1ex"><span style=3D"background-color:trans=
parent;color:rgb(0,0,0);font-family:"Courier New",monospace;font-=
size:11pt;text-align:center">"Quantum recovered coins only make everyo=
ne else's coins worth less. Think of it as a theft from everyone."=
</span></blockquote><br><p dir=3D"ltr" style=3D"line-height:1.38;margin-top=
:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;font-family:"Cou=
rier New",monospace;color:rgb(0,0,0);background-color:transparent;font=
-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alterna=
tes:normal;vertical-align:baseline">The timelines that we are proposing are=
meant to find the best balance between giving ample ability for account ow=
ners to migrate while maintaining the integrity of the overall ecosystem to=
avoid catastrophic attacks.=C2=A0=C2=A0</span></p><br><span dir=3D"ltr" st=
yle=3D"line-height:1.38;margin-top:18pt;margin-bottom:4pt"><span style=3D"f=
ont-size:17pt;font-family:"Courier New",monospace;color:rgb(0,0,0=
);background-color:transparent;font-variant-numeric:normal;font-variant-eas=
t-asian:normal;font-variant-alternates:normal;vertical-align:baseline">Back=
ward Compatibility</span></span><p dir=3D"ltr" style=3D"line-height:1.38;ma=
rgin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;font-family:&=
quot;Courier New",monospace;color:rgb(0,0,0);background-color:transpar=
ent;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant=
-alternates:normal;vertical-align:baseline">As a series of soft forks, olde=
r nodes will continue to operate without modification. Non-upgraded nodes, =
however, will consider all post-quantum witness programs as anyone-can-spen=
d scripts. They are strongly encouraged to upgrade in order to fully valida=
te the new programs.</span></p><br><p dir=3D"ltr" style=3D"line-height:1.38=
;margin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;font-famil=
y:"Courier New",monospace;color:rgb(0,0,0);background-color:trans=
parent;font-variant-numeric:normal;font-variant-east-asian:normal;font-vari=
ant-alternates:normal;vertical-align:baseline">Non-upgraded wallets can rec=
eive and send bitcoin from non-upgraded and upgraded wallets until Phase A.=
After Phase A, they can no longer receive from any other wallets and can o=
nly send to upgraded wallets.=C2=A0 After Phase B, both senders and receive=
rs will require upgraded wallets.=C2=A0Phase C would likely require a loose=
ning of consensus rules (a hard fork) to allow vulnerable funds recovery vi=
a ZK proofs.</span></p></span></div>
</blockquote></div></blockquote></div>
<p></p>
-- <br>
You received this message because you are subscribed to the Google Groups &=
quot;Bitcoin Development Mailing List" group.<br>
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:bitcoindev+unsubscribe@googlegroups.com" target=
=3D"_blank">bitcoindev+unsubscribe@googlegroups.com</a>.<br>
To view this discussion visit <a href=3D"https://groups.google.com/d/msgid/=
bitcoindev/173b3bc4-7052-4e0e-9042-ca15cd5b0587n%40googlegroups.com?utm_med=
ium=3Demail&utm_source=3Dfooter" target=3D"_blank">https://groups.googl=
e.com/d/msgid/bitcoindev/173b3bc4-7052-4e0e-9042-ca15cd5b0587n%40googlegrou=
ps.com</a>.<br>
</blockquote></div></div>
</blockquote></div><div><br clear=3D"all"></div><div><br></div><span class=
=3D"gmail_signature_prefix">-- </span><br><div dir=3D"ltr" class=3D"gmail_s=
ignature"><div dir=3D"ltr"><div><div dir=3D"ltr"><font face=3D"tahoma, sans=
-serif" color=3D"#666666">M: +1-646-541-2108</font><div><font face=3D"tahom=
a, sans-serif" color=3D"#666666">W: <a href=3D"https://marcjohnson.xyz/" ta=
rget=3D"_blank">marcjohnson.xyz</a></font></div></div></div></div></div>
<p></p>
-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;Bitcoin Development Mailing List" group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:bitcoindev+unsubscribe@googlegroups.com">bitcoind=
ev+unsubscribe@googlegroups.com</a>.<br />
To view this discussion visit <a href=3D"https://groups.google.com/d/msgid/=
bitcoindev/CACH3BCRuGfsggczAp2iO%2Bt4BcnAXvTEGUmO%2Bi3mK%3DzzOAY04gQ%40mail=
.gmail.com?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.co=
m/d/msgid/bitcoindev/CACH3BCRuGfsggczAp2iO%2Bt4BcnAXvTEGUmO%2Bi3mK%3DzzOAY0=
4gQ%40mail.gmail.com</a>.<br />
--000000000000413a97063c7fd8d3--
|