summaryrefslogtreecommitdiff
path: root/bc/7ab64a7b8120e3f2041d8ce582c076403d83eb
blob: 4f7c0bd036c73abdee0ff1db8c02d0bb8bd7240b (plain)
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
Return-Path: <eric@voskuil.org>
Received: from smtp1.osuosl.org (smtp1.osuosl.org [140.211.166.138])
 by lists.linuxfoundation.org (Postfix) with ESMTP id 48409C0001
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Mon,  1 Mar 2021 22:45:34 +0000 (UTC)
Received: from localhost (localhost [127.0.0.1])
 by smtp1.osuosl.org (Postfix) with ESMTP id 2E380843F7
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Mon,  1 Mar 2021 22:45:34 +0000 (UTC)
X-Virus-Scanned: amavisd-new at osuosl.org
X-Spam-Flag: NO
X-Spam-Score: -1.897
X-Spam-Level: 
X-Spam-Status: No, score=-1.897 tagged_above=-999 required=5
 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1,
 HTML_MESSAGE=0.001, MIME_QP_LONG_LINE=0.001,
 RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H2=-0.001,
 SPF_HELO_NONE=0.001, SPF_NONE=0.001] autolearn=ham autolearn_force=no
Authentication-Results: smtp1.osuosl.org (amavisd-new);
 dkim=pass (2048-bit key) header.d=voskuil-org.20150623.gappssmtp.com
Received: from smtp1.osuosl.org ([127.0.0.1])
 by localhost (smtp1.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id KWAUjpH6Y-fl
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Mon,  1 Mar 2021 22:45:32 +0000 (UTC)
X-Greylist: delayed 12:01:39 by SQLgrey-1.8.0
Received: from mail-vs1-f53.google.com (mail-vs1-f53.google.com
 [209.85.217.53])
 by smtp1.osuosl.org (Postfix) with ESMTPS id 097C2843F5
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Mon,  1 Mar 2021 22:45:31 +0000 (UTC)
Received: by mail-vs1-f53.google.com with SMTP id d25so2559812vsr.11
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Mon, 01 Mar 2021 14:45:31 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=voskuil-org.20150623.gappssmtp.com; s=20150623;
 h=content-transfer-encoding:from:mime-version:subject:date:message-id
 :references:cc:in-reply-to:to;
 bh=oYk/eZjLtaSGFuP0ZIho2mGnWrIAY8cS53HOO68yyBY=;
 b=1ym/1KePGPlxSJeaIZMnJeQhYo/RNmtzlB+gUhcQ03jfj6BXwtYVM0fzjkhcSoCyMI
 05GN6gZCFrJ0Lhhrzr1bPsmHZAioSC8QSyRqxWyJN2jw4e+ribPtiAfJ5id6KS88kiH7
 5ZAxp35Q5LPPIKhUl5V7kMKZfJ6UQAnsf94RI5fX49jhhOqZXOa5gZsEtXnUZ7ZSuMTJ
 WFebm/o2Xnkk5kAe+0oTI7amR9lHHU0N6EYlw1tN1o8yvrO+cToIhRyF7+g1s5epMwrk
 ujivtdglhjGfBt/IK+XO215489na2J0RJ8W/lo+6E5cHhLSSpVjlVgqxqe4zypwliHoS
 QpgA==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:content-transfer-encoding:from:mime-version
 :subject:date:message-id:references:cc:in-reply-to:to;
 bh=oYk/eZjLtaSGFuP0ZIho2mGnWrIAY8cS53HOO68yyBY=;
 b=ooGVLUpWIrgJOVtvcRFt8r8sfe08dKUkEomS4yPZY2jOegG41ogjIezOGDrTcTQOnz
 NtKSi6PBC09e4W5sMcSZ8rr8c5fixzZv9HYIE854BOTUMTphYU98ZOauPdTVK84mN5gZ
 0o7BKLdt68WR6w8KuRkPSR1bTZ+mHvX10g7Qyie3SFyNY33Ia9Vmm+HxPwzRA858z3ut
 nRPONB6KNXhMrqOsyoZik5FfElfsH5RWg+dKmsyYB2MhfAIz6c0WwS96LYNkI68uRt6L
 hubrpS64PEF/0Gdg+CjeW0vi0h7iwDGHaCHVn3UBb7WPmq3nSNUQO8lwpa16rZ0uWW75
 +z3g==
X-Gm-Message-State: AOAM531d7rX0CxTtJeKd8g7W8xFg9O+/zTwZCNMa66yokiUa9H8Gu9cP
 2OS5QRl+A8Y1QiznpCtqXJt+ZX+ENya1iQ==
X-Google-Smtp-Source: ABdhPJzsZF3zPxwVkluaM29sKBDfzYUz0uEOSGhnGyzyeej34lCvj4wm8GsFcynH6TcsPktDZKPEfg==
X-Received: by 2002:a17:902:ea12:b029:e3:1b24:414f with SMTP id
 s18-20020a170902ea12b02900e31b24414fmr846420plg.13.1614638265067; 
 Mon, 01 Mar 2021 14:37:45 -0800 (PST)
Received: from ?IPv6:2600:380:7012:4bff:880d:35fd:735f:1a2a?
 ([2600:380:7012:4bff:880d:35fd:735f:1a2a])
 by smtp.gmail.com with ESMTPSA id h20sm18162443pfv.164.2021.03.01.14.37.44
 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128);
 Mon, 01 Mar 2021 14:37:44 -0800 (PST)
Content-Type: multipart/alternative;
 boundary=Apple-Mail-44BE99E2-65FD-4433-B03D-42C53DF1DA48
Content-Transfer-Encoding: 7bit
From: Eric Voskuil <eric@voskuil.org>
Mime-Version: 1.0 (1.0)
Date: Mon, 1 Mar 2021 14:37:42 -0800
Message-Id: <A326C6D2-7C6E-42A2-93C9-DC7647BB09B6@voskuil.org>
References: <SL2P216MB0089B70AEDD58F2EBC46B4309D9A9@SL2P216MB0089.KORP216.PROD.OUTLOOK.COM>
In-Reply-To: <SL2P216MB0089B70AEDD58F2EBC46B4309D9A9@SL2P216MB0089.KORP216.PROD.OUTLOOK.COM>
To: LORD HIS EXCELLENCY JAMES HRMH <willtech@live.com.au>,
 Bitcoin Protocol Discussion <bitcoin-dev@lists.linuxfoundation.org>
X-Mailer: iPhone Mail (18D52)
Subject: Re: [bitcoin-dev] Taproot NACK
X-BeenThere: bitcoin-dev@lists.linuxfoundation.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: Bitcoin Protocol Discussion <bitcoin-dev.lists.linuxfoundation.org>
List-Unsubscribe: <https://lists.linuxfoundation.org/mailman/options/bitcoin-dev>, 
 <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=unsubscribe>
List-Archive: <http://lists.linuxfoundation.org/pipermail/bitcoin-dev/>
List-Post: <mailto:bitcoin-dev@lists.linuxfoundation.org>
List-Help: <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=help>
List-Subscribe: <https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev>, 
 <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=subscribe>
X-List-Received-Date: Mon, 01 Mar 2021 22:45:34 -0000


--Apple-Mail-44BE99E2-65FD-4433-B03D-42C53DF1DA48
Content-Type: text/plain;
	charset=utf-8
Content-Transfer-Encoding: quoted-printable

To be clear, is this a NACK because Taproot reduces =E2=80=9Ctransparency=E2=
=80=9D (increases privacy) on the chain (=E2=80=9Cmaintaining consensus=E2=80=
=9D is obviously an argument against any protocol change, so that=E2=80=99s a=
 red herring)?=20

And is it your theory that only an =E2=80=9Chonest=E2=80=9D (statute abiding=
) person should have privacy, and not against the state, and/or that mixers a=
re sufficient privacy?

Personally, I=E2=80=99m not moved by such an argument. What do you think is t=
he value proposition of Bitcoin?

e

> On Mar 1, 2021, at 14:21, LORD HIS EXCELLENCY JAMES HRMH via bitcoin-dev <=
bitcoin-dev@lists.linuxfoundation.org> wrote:
>=20
> =EF=BB=BF
> Good Afternoon,
>=20
> I am going to take tough terms with much of your reply and do appreciate a=
 courteous practice. Having previously made public disclosure of my affiliat=
ion with Jambler.io it seems sufficient to disclose my affiliation through t=
he link in my email signature block.
>=20
> My concern is not increased privacy it is maintaining consensus values and=
 the transparency of the blockchain wherein all transactions are published i=
n an immutable record and that forbids the redaction of information by any o=
bfuscation. A separate concern is the availability of a privacy suitable for=
 cash should a Bitcoin user desire and especially without disturbing the exi=
sting consensus.
>=20
> The use of a Bitcoin Mixer is to enable standard equivalent privacy. As yo=
u may experience yourself, you do not allow people to follow you around look=
ing in your purse, suppose you are dealing entirely with cash, and to see wh=
ere and how much you fill it up, and where you spend. Nonetheless, for an ho=
nest person, their wallet is available for government audit as are their fin=
ancial affairs. This is consistent with the existing operation of consensus.=

>=20
> My full email signature block is a disclosure where I have some affiliatio=
n with the referenced website being that it carries at least some informatio=
n that I have provided or that in some way I am associated perhaps only maki=
ng use of their services. For example, I hardly make a profit from LinkedIn j=
ust my information is there. Also, I have made previous public disclosure of=
 the affiliation. Bitcoin Mixer 2.0 is a partner mixer run by Jambler.io whe=
rein I receive a service referral fee and am not in receipt of any part of t=
he process transaction. The operation block diagram provided by Jambler.io i=
s provided here and attached.
> <ip.bitcointalk.org.png>
>=20
> [ip.bitcointalk.org.png]-Operation of Jambler.io partner mixer
> https://ip.bitcointalk.org/?u=3Dhttps%3A%2F%2Fjambler.io%2Fimages%2Fscheme=
-1.png&t=3D622&c=3DgTi7r1cfh-yynw
> from this thread  https://bitcointalk.org/index.php?topic=3D5267588
>=20
>=20
> The installation script provided by Jambler.io that is the basis of my ref=
erral website is also publicly published,
> https://github.com/jambler-io/bitcoin-mixer
>=20
> The disclosure for the partner program is available from Jambler.io howeve=
r and is made prominently on my referral website. While it may seem lucrativ=
e at first I insist all partner profits are reportable on your personal inco=
me.
> https://jambler.io/become-partner.php
>=20
> I am certainly better than confident that you appreciate the difference be=
tween an open and transparent blockchain and the ability of the user to not r=
eveal details of the content of their wallet publicly.
>=20
> If further clarification is required may I suggest you pay a token and mix=
 some Bitcoin wherein our discussion may then have some point of reference.
>=20
> KING JAMES HRMH
> Great British Empire
>=20
> Regards,
> The Australian
> LORD HIS EXCELLENCY JAMES HRMH (& HMRH)
> of Hougun Manor & Glencoe & British Empire
> MR. Damian A. James Williamson
> Wills
>=20
> et al.
>=20
> =20
> Willtech
> www.willtech.com.au
> www.go-overt.com
> and other projects
> =20
> earn.com/willtech
> linkedin.com/in/damianwilliamson
>=20
>=20
> m. 0487135719
> f. +61261470192
>=20
>=20
> This email does not constitute a general advice. Please disregard this ema=
il if misdelivered.
> From: Ariel Lorenzo-Luaces <arielluaces@gmail.com>
> Sent: Monday, 1 March 2021 12:07 AM
> To: LORD HIS EXCELLENCY JAMES HRMH <willtech@live.com.au>; Bitcoin Protoco=
l Discussion <bitcoin-dev@lists.linuxfoundation.org>
> Subject: Re: [bitcoin-dev] Taproot NACK
> =20
> Hello LORD HIS EXCELLENCY JAMES HRMH
>=20
> I find a striking dichotomy between your concern of increased privacy in b=
itcoin and your link to a bitcoin mixer in your signature www.go-overt.com
>=20
> At first your concerns seemed genuine but after seeing your promotion of a=
 bitcoin mixer I'm thinking your concerns may be more profit motivated? I ca=
n't tell since you failed to disclose your relationship with the mixer.
>=20
> Could you please clarify your association with the bitcoin mixer and movin=
g forward could you please always do proper disclosure any time you're publi=
cally talking about bitcoin transaction privacy. It's only fair to do so as t=
o not mislead people in an attempt to manipulate at worst and just a courteo=
us practice at best.
>=20
> Cheers
> Ariel Lorenzo-Luaces
> On Feb 28, 2021, at 4:36 AM, LORD HIS EXCELLENCY JAMES HRMH via bitcoin-de=
v <bitcoin-dev@lists.linuxfoundation.org> wrote:
> Good Evening,
>=20
> Thank-you for your advice   @JeremyRubin  on the basis you advise, "Taproo=
t does not enable monero-like privacy features", I am prepred to withdraw my=
 NACK notably that the existing feeatures of Bitcoin MUST be maintained, and=
 whereby the UTXO of a transaction is identifiable, the PayTo Address, and t=
he amount all without any obfuscation.
>=20
> Lightning does not really provide obfuscation, it provides a result of a s=
ubset of transactions although the operation of the channel is observable to=
 the parties.
>=20
> The reports I were reading concerning the supposed operation of Taproot pu=
blished in a public media channel may have been speculation or misinformatio=
n nonetheless it is prudent to conditionally reply as you see that I have. I=
t is important not to allow things to slip through the cracks. As you may be=
lieve may astute reviewers could make a full disclosure to this list it is n=
ot to be expected.
>=20
> KING JAMES HRMH
> Great British Empire
>=20
> Regards,
> The Australian
> LORD HIS EXCELLENCY JAMES HRMH (& HMRH)
> of Hougun Manor & Glencoe & British Empire
> MR. Damian A. James Williamson
> Wills
>=20
> et al.
>=20
> =20
> Willtech
> www.willtech.com.au
> www.go-overt.com
> and other projects
> =20
> earn.com/willtech
> linkedin.com/in/damianwilliamson
>=20
>=20
> m. 0487135719
> f. +61261470192
>=20
>=20
> This email does not constitute a general advice. Please disregard this ema=
il if misdelivered.
> From: Jeremy <jlrubin@mit.edu>
> Sent: Sunday, 28 February 2021 3:14 AM
> To: LORD HIS EXCELLENCY JAMES HRMH <willtech@live.com.au>; Bitcoin Protoco=
l Discussion <bitcoin-dev@lists.linuxfoundation.org>
> Subject: Re: [bitcoin-dev] Taproot NACK
> =20
> I have good news for you: Taproot does not enable monero-like privacy feat=
ures any moreso than already exist in Bitcoin today. At its core, taproot is=
 a way to make transactions with embedded smart contracts less expensive, do=
ne so in a manner that may marginally improve privacy dependent on user beha=
vior (but not in the monero-like way you mention). For example, it makes it p=
ossible for lightning channels to look structurally similar to single key wa=
llets, but it does nothing inherently to obfuscate the transaction graph as i=
n monero.=20
>=20
> Such "monero-like" transaction graph obfuscation may already exist in Bitc=
oin via other techniques (coinjoin, payjoin, coinswap, lightning, etc) with o=
r without Taproot, so the point is further moot.=20
>=20
> Do you have a source on your reporting?
>=20
> You may wish to rescind your nack.=20
>=20
>=20
> --=20
> @JeremyRubin
>=20
>=20
> On Sat, Feb 27, 2021 at 5:46 AM LORD HIS EXCELLENCY JAMES HRMH via bitcoin=
-dev < bitcoin-dev@lists.linuxfoundation.org> wrote:=20
> Good Afternoon,
>=20
> It has been reported that Taproot will enable some Monero like features in=
cluding the ability to hide transactions.
>=20
> If that is the case I offer a full NACK and let me explain.
>=20
> A part of the benefit of using Bitcoin is its honesty. The full transactio=
n is published on the blockchain. If that were to change so that transaction=
s may be obfuscated from scrutiny then any government would have unlimited i=
mpetus to ban Bitcoin, and speculation has that is the reason India has been=
 reported to have banned cryptocurrencies already.
>=20
> I am in support of the expanded use case of Bitcoin without harming the es=
tablished robust fairness and equal equity offered. The core functionality o=
f Bitcoin, its values, must remain unaltered.=20
>=20
> KING JAMES HRMH
> Great British Empire=20
>=20
> Regards,
> The Australian
> LORD HIS EXCELLENCY JAMES HRMH (& HMRH)
> of Hougun Manor & Glencoe & British Empire
> MR. Damian A. James Williamson
> Wills
>=20
> et al.
>=20
> =20
> Willtech
> www.willtech.com.au
> www.go-overt.com
> and other projects
> =20
> earn.com/willtech
> linkedin.com/in/damianwilliamson
>=20
>=20
> m. 0487135719
> f. +61261470192
>=20
>=20
> This email does not constitute a general advice. Please disregard this ema=
il if misdelivered.
> _______________________________________________=20
> bitcoin-dev mailing list=20
> bitcoin-dev@lists.linuxfoundation.org=20
> https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev=20
> =20
>=20
> bitcoin-dev mailing list
> bitcoin-dev@lists.linuxfoundation.org
> https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev
> <ip.bitcointalk.org.png>
> _______________________________________________
> bitcoin-dev mailing list
> bitcoin-dev@lists.linuxfoundation.org
> https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev

--Apple-Mail-44BE99E2-65FD-4433-B03D-42C53DF1DA48
Content-Type: text/html;
	charset=utf-8
Content-Transfer-Encoding: quoted-printable

<html><head><meta http-equiv=3D"content-type" content=3D"text/html; charset=3D=
utf-8"></head><body dir=3D"auto"><div dir=3D"ltr">To be clear, is this a NAC=
K because Taproot reduces =E2=80=9Ctransparency=E2=80=9D (increases privacy)=
 on the chain (=E2=80=9Cmaintaining consensus=E2=80=9D is obviously an argum=
ent against any protocol change, so that=E2=80=99s a red herring)?&nbsp;</di=
v><div dir=3D"ltr"><br></div><div dir=3D"ltr">And is it your theory that onl=
y an =E2=80=9Chonest=E2=80=9D (statute abiding) person should have privacy, a=
nd not against the state, and/or that mixers are sufficient privacy?</div><d=
iv dir=3D"ltr"><br></div><div dir=3D"ltr">Personally, I=E2=80=99m not moved b=
y such an argument. What do you think is the value proposition of Bitcoin?</=
div><div dir=3D"ltr"><br></div><div dir=3D"ltr">e</div><div dir=3D"ltr"><br>=
<blockquote type=3D"cite">On Mar 1, 2021, at 14:21, LORD HIS EXCELLENCY JAME=
S HRMH via bitcoin-dev &lt;bitcoin-dev@lists.linuxfoundation.org&gt; wrote:<=
br><br></blockquote></div><blockquote type=3D"cite"><div dir=3D"ltr">=EF=BB=BF=


<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859-1=
">



<div style=3D"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; c=
olor: rgb(0, 0, 0);">
Good Afternoon,</div>
<div style=3D"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; c=
olor: rgb(0, 0, 0);">
<br>
</div>
<div style=3D"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; c=
olor: rgb(0, 0, 0);">
I am going to take tough terms with much of your reply and do appreciate a c=
ourteous practice. Having previously made public disclosure of my affiliatio=
n with Jambler.io it seems sufficient to disclose my affiliation through the=
 link in my email signature block.<br>
</div>
<div style=3D"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; c=
olor: rgb(0, 0, 0);">
<br>
</div>
<div style=3D"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; c=
olor: rgb(0, 0, 0);">
My concern is not increased privacy it is maintaining consensus values and t=
he transparency of the blockchain wherein all transactions are published in a=
n immutable record and that forbids the redaction of information by any obfu=
scation. A separate concern
 is the availability of a privacy suitable for cash should a Bitcoin user de=
sire and especially without disturbing the existing consensus.<br>
</div>
<div style=3D"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; c=
olor: rgb(0, 0, 0);">
<br>
</div>
<div style=3D"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; c=
olor: rgb(0, 0, 0);">
The use of a Bitcoin Mixer is to enable standard equivalent privacy. As you m=
ay experience yourself, you do not allow people to follow you around looking=
 in your purse, suppose you are dealing entirely with cash, and to see where=
 and how much you fill it up,
 and where you spend. Nonetheless, for an honest person, their wallet is ava=
ilable for government audit as are their financial affairs. This is consiste=
nt with the existing operation of consensus.<br>
</div>
<div style=3D"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; c=
olor: rgb(0, 0, 0);">
<br>
</div>
<div style=3D"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; c=
olor: rgb(0, 0, 0);">
My full email signature block is a disclosure where I have some affiliation w=
ith the referenced website being that it carries at least some information t=
hat I have provided or that in some way I am associated perhaps only making u=
se of their services. For example,
 I hardly make a profit from LinkedIn just my information is there. Also, I h=
ave made previous public disclosure of the affiliation. Bitcoin Mixer 2.0 is=
 a partner mixer run by Jambler.io wherein I receive a service referral fee a=
nd am not in receipt of any
 part of the process transaction. The operation block diagram provided by Ja=
mbler.io is provided here and attached.<br>
</div>
<div>
<div style=3D"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; c=
olor: rgb(0, 0, 0);">
<div>&lt;ip.bitcointalk.org.png&gt;</div><br>
</div>
<div style=3D"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; c=
olor: rgb(0, 0, 0);">
[ip.bitcointalk.org.png]-Operation of Jambler.io partner mixer<br>
</div>
<div style=3D"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; c=
olor: rgb(0, 0, 0);">
<a href=3D"https://ip.bitcointalk.org/?u=3Dhttps%3A%2F%2Fjambler.io%2Fimages=
%2Fscheme-1.png&amp;t=3D622&amp;c=3DgTi7r1cfh-yynw" id=3D"LPlnk164827">https=
://ip.bitcointalk.org/?u=3Dhttps%3A%2F%2Fjambler.io%2Fimages%2Fscheme-1.png&=
amp;t=3D622&amp;c=3DgTi7r1cfh-yynw</a></div>
<div style=3D"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; c=
olor: rgb(0, 0, 0);">
from this thread&nbsp; <a href=3D"https://bitcointalk.org/index.php?topic=3D=
5267588" id=3D"LPlnk">
https://bitcointalk.org/index.php?topic=3D5267588</a><br>
<div class=3D"_Entity _EType_OWALinkPreview _EId_OWALinkPreview_2 _EReadonly=
_1"></div>
<br>
</div>
<div style=3D"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; c=
olor: rgb(0, 0, 0);">
<br>
</div>
<div style=3D"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; c=
olor: rgb(0, 0, 0);">
The installation script provided by Jambler.io that is the basis of my refer=
ral website is also publicly published,</div>
<div style=3D"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; c=
olor: rgb(0, 0, 0);">
<a href=3D"https://github.com/jambler-io/bitcoin-mixer" id=3D"LPlnk">https:/=
/github.com/jambler-io/bitcoin-mixer</a><br>
</div>
<div class=3D"_Entity _EType_OWALinkPreview _EId_OWALinkPreview _EReadonly_1=
"></div>
<br>
<div style=3D"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; c=
olor: rgb(0, 0, 0);">
The disclosure for the partner program is available from Jambler.io however a=
nd is made prominently on my referral website. While it may seem lucrative a=
t first I insist all partner profits are reportable on your personal income.=
</div>
<div style=3D"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; c=
olor: rgb(0, 0, 0);">
<a href=3D"https://jambler.io/become-partner.php" id=3D"LPlnk">https://jambl=
er.io/become-partner.php</a></div>
<div style=3D"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; c=
olor: rgb(0, 0, 0);">
<br>
</div>
<div style=3D"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; c=
olor: rgb(0, 0, 0);">
I am certainly better than confident that you appreciate the difference betw=
een an open and transparent blockchain and the ability of the user to not re=
veal details of the content of their wallet publicly.</div>
<div style=3D"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; c=
olor: rgb(0, 0, 0);">
<br>
</div>
<div style=3D"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; c=
olor: rgb(0, 0, 0);">
If further clarification is required may I suggest you pay a token and mix s=
ome Bitcoin wherein our discussion may then have some point of reference.<br=
>
</div>
<div class=3D"_Entity _EType_OWALinkPreview _EId_OWALinkPreview_1 _EReadonly=
_1"></div>
</div>
<div><br>
</div>
<div>
<div id=3D"Signature">
<div>
<div style=3D"font-family:Calibri,Helvetica,sans-serif; font-size:12pt; colo=
r:rgb(0,0,0)">
<div>KING JAMES HRMH</div>
<div>Great British Empire<br>
<div><br>
</div>
<div>Regards,</div>
<div>The Australian</div>
<div>LORD HIS EXCELLENCY JAMES HRMH (&amp; HMRH)</div>
<div>of Hougun Manor &amp; Glencoe &amp; British Empire</div>
<div>MR. Damian A. James Williamson</div>
<div>Wills</div>
<div><br>
</div>
<div>et al.</div>
<div><br>
</div>
<div>&nbsp;</div>
<div>Willtech</div>
<div>www.willtech.com.au</div>
<div>www.go-overt.com</div>
<div>and other projects</div>
<div>&nbsp;</div>
<div>earn.com/willtech</div>
<div>linkedin.com/in/damianwilliamson</div>
<div><br>
</div>
<div><br>
</div>
<div>m. 0487135719</div>
<div>f. +61261470192</div>
<div><br>
</div>
<div><br>
</div>
<span style=3D"font-size: 10pt;">This email does not constitute a general ad=
vice. Please disregard this email if misdelivered.</span><br>
</div>
<div></div>
</div>
</div>
</div>
</div>
<div>
<hr tabindex=3D"-1" style=3D"display:inline-block; width:98%">
<div id=3D"divRplyFwdMsg" dir=3D"ltr"><font style=3D"font-size:11pt" face=3D=
"Calibri, sans-serif" color=3D"#000000"><b>From:</b> Ariel Lorenzo-Luaces &l=
t;arielluaces@gmail.com&gt;<br>
<b>Sent:</b> Monday, 1 March 2021 12:07 AM<br>
<b>To:</b> LORD HIS EXCELLENCY JAMES HRMH &lt;willtech@live.com.au&gt;; Bitc=
oin Protocol Discussion &lt;bitcoin-dev@lists.linuxfoundation.org&gt;<br>
<b>Subject:</b> Re: [bitcoin-dev] Taproot NACK</font>
<div>&nbsp;</div>
</div>
<div>
<div dir=3D"auto">Hello LORD HIS EXCELLENCY JAMES HRMH<br>
<br>
</div>
<div dir=3D"auto">I find a striking dichotomy between your concern of increa=
sed privacy in bitcoin and your link to a bitcoin mixer in your signature
<a href=3D"http://www.go-overt.com">www.go-overt.com</a><br>
<br>
</div>
<div dir=3D"auto">At first your concerns seemed genuine but after seeing you=
r promotion of a bitcoin mixer I'm thinking your concerns may be more profit=
 motivated? I can't tell since you failed to disclose your relationship with=
 the mixer.<br>
<br>
</div>
<div dir=3D"auto">Could you please clarify your association with the bitcoin=
 mixer and moving forward could you please always do proper disclosure any t=
ime you're publically talking about bitcoin transaction privacy. It's only f=
air to do so as to not mislead
 people in an attempt to manipulate at worst and just a courteous practice a=
t best.<br>
<br>
</div>
<div dir=3D"auto">Cheers<br>
</div>
<div dir=3D"auto">Ariel Lorenzo-Luaces<br>
</div>
<div class=3D"x_gmail_quote">On Feb 28, 2021, at 4:36 AM, LORD HIS EXCELLENC=
Y JAMES HRMH via bitcoin-dev &lt;<a href=3D"mailto:bitcoin-dev@lists.linuxfo=
undation.org" target=3D"_blank">bitcoin-dev@lists.linuxfoundation.org</a>&gt=
; wrote:
<blockquote class=3D"x_gmail_quote" style=3D"margin:0pt 0pt 0pt 0.8ex; borde=
r-left:1px solid rgb(204,204,204); padding-left:1ex">
<div style=3D"font-family:Calibri,Helvetica,sans-serif; font-size:12pt; colo=
r:rgb(0,0,0)">
</div>
<span style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-w=
eight:normal; orphans:auto; text-align:left; widows:auto">Good Evening,</spa=
n>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
<br>
</div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
Thank-you for your advice <span class=3D"x_Apple-converted-space">&nbsp;</sp=
an> <a href=3D"https://twitter.com/JeremyRubin" target=3D"_blank">
@JeremyRubin</a> <span class=3D"x_Apple-converted-space">&nbsp;</span>on the=
 basis you advise, "Taproot does not enable monero-like privacy features", I=
 am prepred to withdraw my NACK notably that the existing feeatures of Bitco=
in MUST be maintained, and whereby the
 UTXO of a transaction is identifiable, the PayTo Address, and the amount al=
l without any obfuscation.
</div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
<br>
</div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
Lightning does not really provide obfuscation, it provides a result of a sub=
set of transactions although the operation of the channel is observable to t=
he parties.
</div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
<br>
</div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
The reports I were reading concerning the supposed operation of Taproot publ=
ished in a public media channel may have been speculation or misinformation n=
onetheless it is prudent to conditionally reply as you see that I have. It i=
s important not to allow things
 to slip through the cracks. As you may believe may astute reviewers could m=
ake a full disclosure to this list it is not to be expected.
</div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
<br>
</div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
KING JAMES HRMH </div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
Great British Empire </div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
<br>
</div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
Regards, </div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
The Australian </div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
LORD HIS EXCELLENCY JAMES HRMH (&amp; HMRH) </div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
of Hougun Manor &amp; Glencoe &amp; British Empire </div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
MR. Damian A. James Williamson </div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
Wills </div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
<br>
</div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
et al. </div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
<br>
</div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
&nbsp; </div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
Willtech </div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
<a href=3D"">www.willtech.com.au</a> </div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
<a href=3D"">www.go-overt.com</a> </div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
and other projects </div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
&nbsp; </div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
earn.com/willtech </div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
linkedin.com/in/damianwilliamson </div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
<br>
</div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
<br>
</div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
m. 0487135719 </div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
f. +61261470192 </div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
<br>
</div>
<div style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-we=
ight:normal; orphans:auto; text-align:left; widows:auto">
<br>
</div>
<span style=3D"font-family:Cantarell; font-size:14.666666984558105px; font-w=
eight:normal; orphans:auto; text-align:left; widows:auto"><font size=3D"2">T=
his email does not constitute a general advice. Please disregard this email i=
f misdelivered.</font></span>
<div>
<hr tabindex=3D"-1" style=3D"display:inline-block; width:98%">
<div id=3D"x_divRplyFwdMsg" dir=3D"ltr"><font style=3D"font-size:11pt" face=3D=
"Calibri, sans-serif" color=3D"#000000"><b>From:</b> Jeremy &lt;jlrubin@mit.=
edu&gt;<br>
<b>Sent:</b> Sunday, 28 February 2021 3:14 AM<br>
<b>To:</b> LORD HIS EXCELLENCY JAMES HRMH &lt;willtech@live.com.au&gt;; Bitc=
oin Protocol Discussion &lt;bitcoin-dev@lists.linuxfoundation.org&gt;<br>
<b>Subject:</b> Re: [bitcoin-dev] Taproot NACK</font>
<div>&nbsp; </div>
</div>
<div>
<div dir=3D"ltr">
<div class=3D"x_x_gmail_default" style=3D"font-family:arial,helvetica,sans-s=
erif; font-size:small; color:#000000">
I have good news for you: Taproot does not enable monero-like privacy featur=
es any moreso than already exist in Bitcoin today. At its core, taproot is a=
 way to make transactions with embedded smart contracts less expensive, done=
 so in a manner that may marginally
 improve privacy dependent on user behavior (but not in the monero-like way y=
ou mention). For example, it makes it possible for lightning channels to loo=
k structurally similar to single key wallets, but it does nothing inherently=
 to obfuscate the transaction
 graph as in monero. <br>
</div>
<div class=3D"x_x_gmail_default" style=3D"font-family:arial,helvetica,sans-s=
erif; font-size:small; color:#000000">
<br>
</div>
<div class=3D"x_x_gmail_default" style=3D"font-family:arial,helvetica,sans-s=
erif; font-size:small; color:#000000">
Such "monero-like" transaction graph obfuscation may already exist in Bitcoi=
n via other techniques (coinjoin, payjoin, coinswap, lightning, etc) with or=
 without Taproot, so the point is further moot.
<br>
</div>
<div class=3D"x_x_gmail_default" style=3D"font-family:arial,helvetica,sans-s=
erif; font-size:small; color:#000000">
<br>
</div>
<div class=3D"x_x_gmail_default" style=3D"font-family:arial,helvetica,sans-s=
erif; font-size:small; color:#000000">
Do you have a source on your reporting? </div>
<div class=3D"x_x_gmail_default" style=3D"font-family:arial,helvetica,sans-s=
erif; font-size:small; color:#000000">
<br>
</div>
<div class=3D"x_x_gmail_default" style=3D"font-family:arial,helvetica,sans-s=
erif; font-size:small; color:#000000">
You may wish to rescind your nack. <br clear=3D"all">
</div>
<div>
<div dir=3D"ltr" class=3D"x_x_gmail_signature">
<div dir=3D"ltr"><br>
</div>
<div dir=3D"ltr"><br>
</div>
<div dir=3D"ltr">-- <br>
<a href=3D"https://twitter.com/JeremyRubin" target=3D"_blank">@JeremyRubin</=
a> <a href=3D"https://twitter.com/JeremyRubin" target=3D"_blank">
</a></div>
</div>
</div>
<br>
</div>
<br>
<div class=3D"x_x_gmail_quote">
<div dir=3D"ltr" class=3D"x_x_gmail_attr">On Sat, Feb 27, 2021 at 5:46 AM LO=
RD HIS EXCELLENCY JAMES HRMH via bitcoin-dev &lt;
<a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org">bitcoin-dev@lists.l=
inuxfoundation.org</a>&gt; wrote:
<br>
</div>
<blockquote class=3D"x_x_gmail_quote" style=3D"margin:0px 0px 0px 0.8ex; bor=
der-left:1px solid rgb(204,204,204); padding-left:1ex">
<div dir=3D"ltr">
<div style=3D"font-family:Calibri,Helvetica,sans-serif; font-size:12pt; colo=
r:rgb(0,0,0)">
Good Afternoon, </div>
<div style=3D"font-family:Calibri,Helvetica,sans-serif; font-size:12pt; colo=
r:rgb(0,0,0)">
<br>
</div>
<div style=3D"font-family:Calibri,Helvetica,sans-serif; font-size:12pt; colo=
r:rgb(0,0,0)">
It has been reported that Taproot will enable some Monero like features incl=
uding the ability to hide transactions.
</div>
<div style=3D"font-family:Calibri,Helvetica,sans-serif; font-size:12pt; colo=
r:rgb(0,0,0)">
<br>
</div>
<div style=3D"font-family:Calibri,Helvetica,sans-serif; font-size:12pt; colo=
r:rgb(0,0,0)">
If that is the case I offer a full NACK and let me explain. </div>
<div style=3D"font-family:Calibri,Helvetica,sans-serif; font-size:12pt; colo=
r:rgb(0,0,0)">
<br>
</div>
<div style=3D"font-family:Calibri,Helvetica,sans-serif; font-size:12pt; colo=
r:rgb(0,0,0)">
A part of the benefit of using Bitcoin is its honesty. The full transaction i=
s published on the blockchain. If that were to change so that transactions m=
ay be obfuscated from scrutiny then any government would have unlimited impe=
tus to ban Bitcoin, and speculation
 has that is the reason India has been reported to have banned cryptocurrenc=
ies already.
</div>
<div style=3D"font-family:Calibri,Helvetica,sans-serif; font-size:12pt; colo=
r:rgb(0,0,0)">
<br>
</div>
<div style=3D"font-family:Calibri,Helvetica,sans-serif; font-size:12pt; colo=
r:rgb(0,0,0)">
I am in support of the expanded use case of Bitcoin without harming the esta=
blished robust fairness and equal equity offered. The core functionality of B=
itcoin, its values, must remain unaltered.
<br>
</div>
<div>
<div style=3D"font-family:Calibri,Helvetica,sans-serif; font-size:12pt; colo=
r:rgb(0,0,0)">
<span><span style=3D"font-family:Calibri,Helvetica,sans-serif; font-size:12p=
t; color:rgb(0,0,0)"><br>
</span></span>
<div><span style=3D"font-family:Calibri,Helvetica,sans-serif; font-size:12pt=
; color:rgb(0,0,0)">KING JAMES HRMH</span>
</div>
<span><span style=3D"font-family:Calibri,Helvetica,sans-serif; font-size:12p=
t; color:rgb(0,0,0)">Great British Empire</span></span>
<br>
</div>
<div style=3D"font-family:Calibri,Helvetica,sans-serif; font-size:12pt; colo=
r:rgb(0,0,0)">
<br>
</div>
<div id=3D"x_x_gmail-m_4980216234097253335Signature">
<div>
<div></div>
<div></div>
<div></div>
<div style=3D"font-family:Calibri,Helvetica,sans-serif; font-size:12pt; colo=
r:rgb(0,0,0)">
</div>
<div style=3D"font-family:Calibri,Helvetica,sans-serif; font-size:12pt; colo=
r:rgb(0,0,0)">
<div>Regards,
<div>The Australian </div>
<div>LORD HIS EXCELLENCY JAMES HRMH (&amp; HMRH) </div>
<div>of Hougun Manor &amp; Glencoe &amp; British Empire </div>
<div>MR. Damian A. James Williamson </div>
<div>Wills </div>
<div><br>
</div>
<div>et al. </div>
<div><br>
</div>
<div>&nbsp; </div>
<div></div>
Willtech
<div><a href=3D"http://www.willtech.com.au" target=3D"_blank">www.willtech.c=
om.au</a>
</div>
<div><a href=3D"http://www.go-overt.com" target=3D"_blank">www.go-overt.com<=
/a> </div>
<div>and other projects </div>
<div>&nbsp; </div>
<div><a href=3D"http://earn.com/willtech" target=3D"_blank">earn.com/willtec=
h</a> </div>
<div><a href=3D"http://linkedin.com/in/damianwilliamson" target=3D"_blank">l=
inkedin.com/in/damianwilliamson</a>
</div>
<div><br>
</div>
<div><br>
</div>
<div>m. 0487135719 </div>
<div>f. +61261470192 </div>
<div><br>
</div>
<div><br>
</div>
<div><span style=3D"font-size:10pt">This email does not constitute a general=
 advice. Please disregard this email if misdelivered.</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
_______________________________________________ <br>
bitcoin-dev mailing list <br>
<a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" target=3D"_blank">b=
itcoin-dev@lists.linuxfoundation.org</a>
<br>
<a href=3D"https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev" r=
el=3D"noreferrer" target=3D"_blank">https://lists.linuxfoundation.org/mailma=
n/listinfo/bitcoin-dev</a>
<br>
</blockquote>
</div>
</div>
</div>
<pre class=3D"x_blue"> <hr><br>bitcoin-dev mailing list<br>bitcoin-dev@lists=
.linuxfoundation.org<br><a href=3D"https://lists.linuxfoundation.org/mailman=
/listinfo/bitcoin-dev">https://lists.linuxfoundation.org/mailman/listinfo/bi=
tcoin-dev</a><br></pre>
</blockquote>
</div>
</div>
</div>


<div>&lt;ip.bitcointalk.org.png&gt;</div><span>_____________________________=
__________________</span><br><span>bitcoin-dev mailing list</span><br><span>=
bitcoin-dev@lists.linuxfoundation.org</span><br><span>https://lists.linuxfou=
ndation.org/mailman/listinfo/bitcoin-dev</span><br></div></blockquote></body=
></html>=

--Apple-Mail-44BE99E2-65FD-4433-B03D-42C53DF1DA48--