<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-12574936</id><updated>2024-11-01T05:43:29.829-07:00</updated><category term="xrp"/><category term="ripple"/><category term="gentoo"/><category term="loongson"/><category term="documentation"/><category term="mips"/><category term="rippled"/><category term="emacs"/><category term="firefox"/><category term="font"/><category term="gcc"/><category term="glibc"/><category term="fontconfig"/><category term="kernel"/><category term="linux"/><category term="scim"/><category term="audacious"/><category term="bash"/><category term="bayonne"/><category term="bitcoin"/><category term="chardet"/><category term="game"/><category term="gdb"/><category term="id3v2"/><category term="interledger"/><category term="mldonkey"/><category term="mp3"/><category term="portage"/><category term="ps3"/><category term="ripple-client-desktop"/><category term="simsun"/><category term="stardict"/><category term="xulrunner"/><category term="acid3"/><category term="amarok"/><category term="angularjs"/><category term="antialias"/><category term="api"/><category term="as-needed"/><category term="asterisk"/><category term="bash-completion"/><category term="binutils"/><category term="bug"/><category term="c++"/><category term="cflags"/><category term="coil"/><category term="crossdev"/><category term="crypto"/><category term="cvs"/><category term="debug"/><category term="decentralization"/><category term="deflation"/><category term="desktop"/><category term="distcc"/><category term="dri"/><category term="driver"/><category term="entropy"/><category term="exploit"/><category term="fbsplash"/><category term="fcitx"/><category term="flare"/><category term="free software"/><category term="fuloong"/><category term="fuse"/><category term="gaim"/><category term="gulp"/><category term="gwn"/><category term="i18n"/><category term="ilp"/><category term="input method"/><category term="ivr"/><category term="kde"/><category term="laptop"/><category term="ld"/><category term="lighttpd"/><category term="linker"/><category term="monitoring"/><category term="nodejs"/><category term="ntfs"/><category term="ntfs-3g"/><category term="nvidia"/><category term="ocaml"/><category term="overlay"/><category term="plugin"/><category term="prelink"/><category term="qt"/><category term="ripple-lib"/><category term="screen"/><category term="secret key"/><category term="segfault"/><category term="shellcode"/><category term="songbird"/><category term="sqlite"/><category term="suse"/><category term="synway"/><category term="sysroot"/><category term="tag"/><category term="tax"/><category term="unicode"/><category term="validator"/><category term="voip"/><category term="web-monetize"/><category term="web3"/><category term="winning eleven"/><category term="yeeloong"/><title type='text'>XRP Ninja</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default?start-index=26&amp;max-results=25'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>243</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-12574936.post-105863733538655817</id><published>2021-09-21T12:49:00.001-07:00</published><updated>2021-09-21T12:50:29.424-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="flare"/><category scheme="http://www.blogger.com/atom/ns#" term="nodejs"/><category scheme="http://www.blogger.com/atom/ns#" term="songbird"/><category scheme="http://www.blogger.com/atom/ns#" term="web3"/><title type='text'>Send $SGB (Songbird) to another wallet using a script</title><content type='html'>You need nodejs and web3 to run it:&amp;nbsp;&lt;div&gt;&lt;pre&gt;const Web3 = require(&#39;web3&#39;);

// Variables definition
const privKey =
 &#39;8xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2&#39;; // Genesis private key
const addressFrom = &#39;0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA&#39;;
const addressTo = &#39;0xBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB&#39;;
const web3 = new Web3(&#39;https://songbird.towolabs.com/rpc&#39;);

// Create transaction
const deploy = async () =&amp;gt; {
   console.log(
      `Attempting to make transaction from ${addressFrom} to ${addressTo}`
   );

   const createTransaction = await web3.eth.accounts.signTransaction(
      {
         from: addressFrom,
         to: addressTo,
         value: web3.utils.toWei(&#39;1&#39;, &#39;ether&#39;),  // Send 1 SGB. &#39;ether&#39; is not a typo here.
         gasPrice: web3.utils.toWei(&#39;225&#39;, &#39;Gwei&#39;),
         gas: &#39;21000&#39;,
      },
      privKey
   );

   // Deploy transaction
   const createReceipt = await web3.eth.sendSignedTransaction(
      createTransaction.rawTransaction
   );
   console.log(
      `Transaction successful with hash: ${createReceipt.transactionHash}`
   );
};

deploy();
&lt;/pre&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/105863733538655817/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/105863733538655817' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/105863733538655817'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/105863733538655817'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2021/09/send-sgb-songbird-to-another-wallet.html' title='Send $SGB (Songbird) to another wallet using a script'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-7831888747963533384</id><published>2021-04-12T12:47:00.003-07:00</published><updated>2021-04-12T12:47:47.212-07:00</updated><title type='text'>Rippled thread cpu usage</title><content type='html'>&lt;p&gt;The cpu usage of &lt;a href=&quot;https://livenet.xrpl.org/validators/nHBTqw7vwjqrSMruoQNYmSXcrBmQHDquG7jgvrsQpurGaVELqdNx/&quot;&gt;xrp.ninja&lt;/a&gt; validator spikes every 2 hours. I always wonder what it is doing during the spikes. So I wrote a script to report the thead cpu usage to a statsd server.&amp;nbsp;&lt;/p&gt;&lt;p&gt;I started statsd/graphite/grafana using&amp;nbsp;&lt;a href=&quot;https://github.com/ripple/rippledmon&quot;&gt;https://github.com/ripple/rippledmon&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Then I wrote this script:&lt;/p&gt;
&lt;pre&gt;#!/usr/bin/python3
import collections
import itertools
import os
import re
import statsd
import subprocess
import time

HEADER = b&#39;%CPU COMMAND&#39;
STATSD = &#39;XXX&#39;
PORT = &#39;YYY&#39;
PREFIX = &#39;rippled.threads&#39;
TOP = &#39;env HOME={0} top -b -n 1 -p $(pgrep rippled) -H&#39;.format(os.getcwd())

def report(c, jobs):
    p = subprocess.run(TOP, shell=True, stdout=subprocess.PIPE,
            stderr=subprocess.PIPE)
    if p.returncode != 0:
        print(p.stderr)
        return
    m = collections.defaultdict(float)
    for line in itertools.dropwhile(lambda x: x != HEADER, p.stdout.splitlines()):
        if line == HEADER:
            continue
        usage, comm = line.decode().strip().split(&#39; &#39;, 1)
        if usage == &#39;0.0&#39;:
            break
        comm = re.sub(r&#39;(:|\s|#|\.)+&#39;, &#39;_&#39;, comm)
        m[comm] += float(usage)
        if comm not in jobs:
            jobs.add(comm)
    m[&#39;sum&#39;] = sum(m.values())
    with c.pipeline() as pipe:
        for comm in jobs:
            if comm in m:
                pipe.gauge(comm, int(m[comm] + 0.5))
            else:
                pipe.gauge(comm, 0)

def main():
    c = statsd.StatsClient(STATSD, PORT, prefix=PREFIX)
    jobs = {&#39;sum&#39;}
    while True:
        report(c, jobs)
        time.sleep(1)


if __name__ == &#39;__main__&#39;:
    main()
&lt;/pre&gt;
&lt;p&gt;This script uses top command to report thread cpu usage. I created a toprc which only shows cpu usage and command name (thread name if -H is used) and put the toprc in a different directory than $HOME and run the script in that directory.&lt;/p&gt;&lt;p&gt;The result shows SHAMapStore is the culprit.&lt;br /&gt;&lt;/p&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjPe81ybPgfezYu4dm0ee6uvpFzDlTz7FDpZ97kCMCZB9PviL0zLraEvlg1dtC9O9G-UNA-M-jRgtO7OVZanqR6jiAkJCdLsSrh6XTyjD9EtlFRHVP6B1zeWkY0h65khWVTfWJJ/s1103/Screenshot+from+2021-04-12+11-43-57.png&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;659&quot; data-original-width=&quot;1103&quot; height=&quot;292&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjPe81ybPgfezYu4dm0ee6uvpFzDlTz7FDpZ97kCMCZB9PviL0zLraEvlg1dtC9O9G-UNA-M-jRgtO7OVZanqR6jiAkJCdLsSrh6XTyjD9EtlFRHVP6B1zeWkY0h65khWVTfWJJ/w636-h292/Screenshot+from+2021-04-12+11-43-57.png&quot; width=&quot;636&quot; /&gt;&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/7831888747963533384/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/7831888747963533384' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/7831888747963533384'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/7831888747963533384'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2021/04/rippled-thread-cpu-usage.html' title='Rippled thread cpu usage'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjPe81ybPgfezYu4dm0ee6uvpFzDlTz7FDpZ97kCMCZB9PviL0zLraEvlg1dtC9O9G-UNA-M-jRgtO7OVZanqR6jiAkJCdLsSrh6XTyjD9EtlFRHVP6B1zeWkY0h65khWVTfWJJ/s72-w636-h292-c/Screenshot+from+2021-04-12+11-43-57.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-7292165537985073084</id><published>2021-02-18T18:49:00.002-08:00</published><updated>2021-02-18T18:49:22.671-08:00</updated><title type='text'>The diff between the original SEC complaint against Ripple and the amended one</title><content type='html'>&lt;p&gt;&lt;span style=&quot;color: #7f7f7f; font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; font-weight: bold;&quot;&gt;--- original.txt	2021-02-18 18:32:43.171832036 -0800&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #7f7f7f; font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; font-weight: bold;&quot;&gt;+++ amended.txt	2021-02-18 18:32:29.103735165 -0800&lt;/span&gt;&lt;/p&gt;&lt;pre style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt;&quot;&gt;&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1,4 +1,4 @@&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 1 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 1 of 79&lt;/span&gt;
 
 Richard Best
 Kristina Littman
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -34,9 +34,9 @@&lt;/span&gt;
 :
 ------------------------------------------------------------------------x
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-20 Civ. 10832&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+20 Civ. 10832 (AT)&lt;/span&gt;
 ECF Case
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Complaint&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+First Amended Complaint&lt;/span&gt;
 Jury Trial Demanded
 
 Plaintiff Securities and Exchange Commission (the â€œSECâ€), for its Complaint against
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -53,7 +53,7 @@&lt;/span&gt;
 required by the federal securities laws, and no exemption from this requirement applied.
 1
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 2 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 2 of 79&lt;/span&gt;
 
 2.
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -103,7 +103,7 @@&lt;/span&gt;
 
 2
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 3 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 3 of 79&lt;/span&gt;
 
 VIOLATIONS
 9.
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -150,7 +150,7 @@&lt;/span&gt;
 
 3
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 4 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 4 of 79&lt;/span&gt;
 
 15.
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -193,7 +193,7 @@&lt;/span&gt;
 
 4
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 5 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 5 of 79&lt;/span&gt;
 
 20.
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -243,7 +243,7 @@&lt;/span&gt;
 
 5
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 6 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 6 of 79&lt;/span&gt;
 
 27.
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -287,7 +287,7 @@&lt;/span&gt;
 
 6
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 7 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 7 of 79&lt;/span&gt;
 
 through which a person invests money in a common enterprise and reasonably expects profits or
 returns derived from the entrepreneurial or managerial efforts of others. Courts have found that
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -331,7 +331,7 @@&lt;/span&gt;
 
 7
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 8 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 8 of 79&lt;/span&gt;
 
 ledger, such as helping secure the ledger from manipulation or other forms of attacks. Like other
 â€œdigital tokens,â€ native tokens may also be sold and traded for consideration.
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -383,7 +383,7 @@&lt;/span&gt;
 
 8
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 9 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 9 of 79&lt;/span&gt;
 
 43.
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -442,7 +442,7 @@&lt;/span&gt;
 
 9
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 10 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 10 of 79&lt;/span&gt;
 
 52.
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -492,7 +492,7 @@&lt;/span&gt;
 
 10
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 11 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 11 of 79&lt;/span&gt;
 
 59.
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -538,7 +538,7 @@&lt;/span&gt;
 
 11
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 12 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 12 of 79&lt;/span&gt;
 
 currency,â€ that it would â€œkeep between 25% to 30%â€ of XRP, and noted the â€œrecord highsâ€ of
 prices other digital assets had achieved as something Ripple hoped to emulate for XRP.
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -586,7 +586,7 @@&lt;/span&gt;
 
 12
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 13 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 13 of 79&lt;/span&gt;
 
 69.
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -624,29 +624,38 @@&lt;/span&gt;
 
 Garlinghouse joined Ripple as COO in April 2015 and substantially assisted its
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-ongoing unregistered Offering by, among other things, being responsible for its operations. In&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-January 2017, Garlinghouse became CEO and Larsen retained his role as chairman of the Board.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+ongoing unregistered Offering by, among other things alleged here, being responsible for its&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+operations. In January 2017, Garlinghouse became CEO and Larsen retained his role as chairman&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+of the Board.&lt;/span&gt;
 75.
 
 After the change in corporate structure, both Garlinghouse and Larsen remained key
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-decision makers and participants in Rippleâ€™s ongoing Offering. As CEO, Garlinghouse approved&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-the timing and amounts of unregistered offers and sales of XRP, and, as chairman of the Board,&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Larsen was consulted on such offers and sales. Both continue to communicate with potential and&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+decision makers and participants in, and continued to direct, Rippleâ€™s ongoing Offering. As Ripple&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+explained in June 2018 to a New York-based investment firm when the firm was considering the&lt;/span&gt;
 
 13
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 14 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 14 of 79&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-actual XRP investors and Ripple equity shareholders and to participate in certain projects Ripple is&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-pursuing with respect to XRP. Both have continued selling XRP into public markets.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+creation of an XRP-based fund, the â€œXRP Sales Committee consisting of Brad Garlinghouse (CEO),&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Chris Larsen (Co-founder and Executive Chairman)â€ and two other individuals at Ripple â€œmake[ ]&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+XRP distribution and sales decisions at the company . . . .â€&lt;/span&gt;
 76.
 
&lt;span style=&quot;color: #00cd00;&quot;&gt;+As CEO, Garlinghouse approved the timing and amounts of unregistered offers and&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+sales of XRP, and, as chairman of the Board, Larsen was consulted on such offers and sales. Both&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+continue to communicate with potential and actual XRP investors and Ripple equity shareholders&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+and to participate in certain projects Ripple is pursuing with respect to XRP. Both have continued&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+selling XRP into public markets.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+77.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 In 2017, Defendants also began accelerating Rippleâ€™s sales of XRP because, while
 
 Rippleâ€™s expenses continued to increase (reaching nearly $275 million for 2018), its revenue outside
 of XRP sales did not.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-77.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+78.&lt;/span&gt;
 
 For example, starting in 2016, Ripple began selling two software suites, xCurrent and
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -658,70 +667,76 @@&lt;/span&gt;
 
 Overview of Rippleâ€™s XRP Distribution
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-78.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+79.&lt;/span&gt;
 
 Rippleâ€™s planned distribution of XRP succeeded.
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-79.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+80.&lt;/span&gt;
 
 From 2014 through the end of 2019, to fund its operations, Ripple sold at least 3.9
 
 billion XRP through Market Sales for approximately $763 million USD.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-80.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+81.&lt;/span&gt;
 
 From 2013 through the end of the third quarter of 2020, Ripple sold at least 4.9
 
 billion XRP through Institutional Sales for approximately $624 million USD, also to fund Rippleâ€™s
 operations, for a total of at least $1.38 billion USD in Market and Institutional Sales alone.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-81.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+14&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 15 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+82.&lt;/span&gt;
 
 The market price for XRPâ€”and Rippleâ€™s sales prices in the Offeringâ€”ranged from
 
 a low price of approximately $0.002 per XRP in 2014 to a high price of $3.84 per XRP in early 2018,
 an increase of nearly 137,000%. XRP traded at approximately $0.58 USD per XRP as of last week.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-82.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+83.&lt;/span&gt;
 
 Ripple also undertook to achieve its goal of widespread distribution of XRP by
 
 exchanging XRP for non-cash consideration, such as labor and market-making services. Through
 the Other XRP Distributions, Ripple paid third parties to assist in its efforts to accomplish as
 widespread a distribution of XRP as possible and to attempt to develop a â€œuseâ€ for XRP.
&lt;span style=&quot;color: #00cd00;&quot;&gt;+84.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-14&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 15 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-83.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Since 2014, Defendants have disbursed at least 4.05 billion XRP (valued at at least&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Since 2014, Defendants have disbursed at least 4.05 billion XRP (valued at least $500&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-$500 million USD when the XRP was distributed) through Other XRP Distributions.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-84.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+million USD when the XRP was distributed) through Other XRP Distributions.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+85.&lt;/span&gt;
 
 In addition, Larsen (beginning in 2015) and Garlinghouse (beginning in 2017)
 
 directly participated in the Offering by offering and selling their own holdings of XRP into the same
 market as Rippleâ€™s Market Sales, typically following the same manner of sale.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-85.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+86.&lt;/span&gt;
 
 From 2015 through at least March 2020, while Larsen was an affiliate of Ripple as its
 
 CEO and later chairman of the Board, Larsen and his wife sold over 1.7 billion XRP to public
 investors in the market. Larsen and his wife netted at least $450 million USD from those sales.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-86.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+87.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-From April 2017 through December 2019, while an affiliate of Ripple as CEO,&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+From April 2017 through at least October 2020, while an affiliate of Ripple as CEO,&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Garlinghouse sold over 321 million XRP he had received from Ripple to public investors in the&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-market, generating approximately $150 million USD from those sales.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-87.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Garlinghouse sold over 357 million XRP he had received from Ripple to public investors in the&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+market, generating approximately $159 million USD from those sales (with Larsenâ€™s sales, the&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+â€œIndividual Defendantsâ€™ XRP Salesâ€).&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+88.&lt;/span&gt;
 
 Defendants offered and sold XRP to any person, without restricting offers or sales
 
 to persons who had a â€œuseâ€ for XRP (particularly given that little to no â€œuseâ€ existed until Ripple
 subsidized some â€œuseâ€ operations in recent months, as described below) and without restricting
 anyoneâ€™s ability to resell their XRP to investors within the United States or elsewhere.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-88.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+15&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 16 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+89.&lt;/span&gt;
 
 With respect to all four types of distribution (Market Sales, Institutional Sales, Other
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -729,13 +744,15 @@&lt;/span&gt;
 purchasers routinely resold XRP to other investors in the United States and other countries. These
 resales aligned with Defendantsâ€™ own goals of achieving as widespread a distribution of XRP as
 possible, which was necessary to promote an aftermarket of buyers and sellers of XRP.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-89.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+90.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Defendants sold approximately 14.6 billion XRP, as summarized in Table 1, below.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+At all relevant times, Garlinghouse and Larsen knew or recklessly disregarded that&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-15&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+investors were using money to purchase XRP and that Ripple was pooling that capital to fund its&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+efforts to create profits for Ripple and XRP purchasers (in the form of increased prices for XRP).&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+91.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 16 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Defendants sold approximately 14.6 billion XRP, as summarized in Table 1, below.&lt;/span&gt;
 
 Type of Sales
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -758,7 +775,7 @@&lt;/span&gt;
 
 Individual Defendantsâ€™ XRP Sales â€“ Garlinghouse
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-321 million*&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+357 million*&lt;/span&gt;
 
 Total Offering
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -770,28 +787,33 @@&lt;/span&gt;
 
 Defendantsâ€™ Market Sales of XRP
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-90.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+92.&lt;/span&gt;
 
 As CEO, Larsen initiated and approved Rippleâ€™s Market Sales of XRP.
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-91.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+93.&lt;/span&gt;
 
 Ripple conducted the Market Sales first by transferring ownership of XRP on the
 
 XRP Ledger directly to investors and later by using traders who specialized in algorithmic digital
 asset trading to offer and sell XRP to investors, both on the XRP Ledger and on digital asset trading
 platforms, both in exchange for fiat currencies or other digital assets such as bitcoin.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-92.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+16&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 17 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+94.&lt;/span&gt;
 
 The entities Defendants enlisted to help carry out the Market Salesâ€”the specialized
 
 traders or the trading platformsâ€”were typically not registered with the SEC in any capacity.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-93.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+95.&lt;/span&gt;
 
 Ripple conducted the Market Sales by paying at least four entities commissions, paid
 
 in XRP, for executing Rippleâ€™s XRP sales to the public on digital asset trading platforms.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-94.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+96.&lt;/span&gt;
 
 One of these entities is based in New York and was registered with the SEC as a
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -799,89 +821,105 @@&lt;/span&gt;
 while another entity is internationally-based but has offices in the United States. The fourth entity,
 through which Ripple conducted most of the Market Sales, is a global digital asset trading firm with
 an office in the United States (the â€œMarket Makerâ€).
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-16&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 17 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-95.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+97.&lt;/span&gt;
 
 To increase Market Sales throughout the Offering, Ripple has also directed all
 
 readers of its website to information about â€œHow to Buy XRPâ€ and has provided a list of digital
 asset trading platforms, including some with principal places of business in the United States, on
 which investors can make those purchases.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-96.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+98.&lt;/span&gt;
 
 While each was CEO, Larsen and Garlinghouse had final decision-making authority
 
 over which trading venues to use for Market Sales and how much XRP to sell on a particular venue,
 which Ripple communicated to traders as an overall percentage of XRPâ€™s daily trading volume.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-97.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+99.&lt;/span&gt;
 
 At Rippleâ€™s direction, the intermediaries such as the Market Maker ensured that
 
 Market Sales were programmatically set not to exceed a certain percentage of XRPâ€™s overall daily
 trading volume, and Ripple referred to the Market Sales as â€œprogrammatic sales.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-98.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+100.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Ripple employees or the Market Marker specifically sought Larsenâ€™s and&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-On occasion, Ripple employees or the Market Marker consulted Larsen and&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Garlinghouseâ€™s approval as to parameters for conducting Rippleâ€™s Market Sales. For example, in&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+mid-December 2015, Rippleâ€™s then-Chief Financial Officer (the â€œCFOâ€) emailed Larsen and&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Garlinghouse with daily updates regarding the market price and volume of XRP and how they&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+impacted Rippleâ€™s Market Sales strategy. The CFO informed Larsen and Garlinghouse that the&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Garlinghouse as to parameters for conducting Rippleâ€™s Market Sales, which they at times approved.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+17&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 18 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Market Sales had been paused due to a drop in XRP price but suggested the following day that the&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+sales be restarted. Larsen instead instructed the CFO to â€œkeep paused for nowâ€ and â€œ[w]ait until&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+[the] market had recovered from this mistake.â€ That afternoon, the CFO indicated that the XRP&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+price had remained stable that day and suggested re-starting Market Sales the following day, a&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+proposal that Larsen then approved.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+101.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Similarly, in April 2016, the CFO emailed Larsen and Garlinghouse regarding&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+continued â€œdownward pressure on the price of XRPâ€ and suggested having the Market Maker&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+â€œadjust down a bit our net sell target for a few days to see if we can help stabilize and/or increase&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+the XRP price.â€ Larsen responded, â€œYes â€“ letâ€™s adj[ust],â€ while Garlinghouse stated that he was â€œin&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+favor ofâ€ adjustment but was â€œmarginally inclined to be more aggressive when we do this.â€&lt;/span&gt;
 D.
 
 Defendantsâ€™ Public Distribution through Institutional Sales of XRP
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-99.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+102.&lt;/span&gt;
 
 Since at least 2013, Ripple and Larsen tried to make Institutional Sales to obtain
 
 essential funding for Rippleâ€™s operations and develop a speculative trading market in XRP.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-100.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+103.&lt;/span&gt;
 
 Ripple viewed the Institutional Sales as the lynchpin of its strategy to generate
 
 speculative interest in XRP from public investors. As Ripple stated in a document published on its
 website on January 24, 2017, which Ripple Agent-2 authored, Rippleâ€™s Institutional Sales of XRP
 were â€œindicative of [XRPâ€™s] broader capital market potential.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-101.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+104.&lt;/span&gt;
 
 Rippleâ€”through its agents, including Larsen and Garlinghouseâ€”offered and sold
 
 XRP for investment to influential players in the digital asset space, including XRP market makers,
 dealers, and blockchain-focused private investment funds looking to create an XRP-based fund or
 include XRP in their fund. These market makers were also typically not registered with the SEC.
&lt;span style=&quot;color: #00cd00;&quot;&gt;+105.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-17&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+With a few exceptions, Ripple conducted the Institutional Sales through XRP II,&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 18 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+which applied for a license with the NYDFS to engage in the â€œvirtual currency business activityâ€ of&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-102.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+18&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-With a few exceptions, Ripple conducted the Institutional Sales through XRP II,&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 19 of 79&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-which applied for a license with the NYDFS to engage in the â€œvirtual currency business activityâ€ of&lt;/span&gt;
 selling â€œunits of Rippleâ€™s virtual currency . . . to institutional and other accredited investorsâ€ who are
 â€œpurchasing XRP for speculative purposes.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-103.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+106.&lt;/span&gt;
 
 From 2013 to the present, Ripple has made Institutional Sales to at least twenty-six
 
 institutional investors.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-104.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+107.&lt;/span&gt;
 
 Ripple made many of the XRP Institutional Sales at a discount from XRP market
 
 prices. At least seven of the institutional investorsâ€”including some described belowâ€”bought XRP
&lt;span style=&quot;color: #cd0000;&quot;&gt;-at discounts between 4% and 30% to the market price&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-105.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+at discounts between 4% and 30% to the market price.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+108.&lt;/span&gt;
 
 The agreements governing Rippleâ€™s Institutional Sales typically provided no
 
 restrictions on the buyerâ€™s ability to resell XRP, provided only brief lock-up periods (during which
 the investor could not resell its XRP) of typically three to twelve months, or limited the buyerâ€™s
 ability to resell quantities of XRP that could potentially lower XRPâ€™s trading price.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-106.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+109.&lt;/span&gt;
 
 In other words, Ripple expected that most, if not all, Institutional Sales buyers would
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -889,76 +927,127 @@&lt;/span&gt;
 that could be resold during any given time period. By selling at discounts to market prices, Ripple
 incentivized these buyers to seek to sell their XRP into the public markets in order to realize what
 was essentially a guaranteed profit.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-107.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+110.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-The paragraphs below describe three examples of Institutional Sales.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Larsen and Garlinghouse both played significant roles in negotiating and approving&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-108.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Rippleâ€™s Institutional Sales and other offers and sales of XRP to institutional investors, including&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+while Garlinghouse was COO.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+111.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-On June 12, 2017, Larsen and others employees met with an investment fund&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+For example, in mid-2015, Garlinghouse negotiated an institutional investorâ€™s&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-(â€œInstitutional Investor Aâ€), which Ripple Agent-2 described in a June 12, 2017 email to Ripple&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Agent-3 as â€œa $12B [$12 billion] alternative asset hedge fund based out of New York.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+purchase of XRP in connection with the investorâ€™s formation of a â€œprivate investment fundâ€ whose&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+sole purpose would have been to speculate on XRP as an investment (â€œXRP Fund Aâ€). On July 10,&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+2015, Garlinghouse emailed that potential investor a documentâ€”which Ripple had created in 2014&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+(as described further below) and that Garlinghouse described to the potential investor as a â€œwhite&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-18&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+19&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 19 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 20 of 79&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-109.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+paperâ€â€”entitled â€œThe Ripple Protocol: A Deep Dive for Financial Professionalsâ€ (the â€œ2014 Promotional&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Documentâ€). On August 3, 2015, Ripple, through XRP II, entered into a â€œMemorandum of&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Understandingâ€ (which Larsen signed on XRP IIâ€™s behalf), committing Ripple to sell XRP to that&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+investor for XRP Fund A. Around November 2015, Garlinghouse, Larsen, and others received&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+drafts of the potential offering documents for XRP Fund A and provided comments on these&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+documents.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+112.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+The paragraphs below describe three examples of Institutional Sales, certain of&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+which, as alleged, Larsen and Garlinghouse negotiated, approved, or signed on behalf of Ripple.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+113.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+On June 12, 2017, Larsen and others employees met with an investment fund&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+(â€œInstitutional Investor Aâ€), which Ripple Agent-2 described in a June 12, 2017 email to Ripple&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Agent-3 as â€œa $12B [$12 billion] alternative asset hedge fund based out of New York.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+114.&lt;/span&gt;
 
 In 2017, Ripple sold approximately 14.8 million XRP for $2.1 million to Institutional
 
 Investor A, without restricting Institutional Investor Aâ€™s ability to resell this XRP into public
 markets in any way, at price discounts of up to 30% below XRP market prices.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-110.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+115.&lt;/span&gt;
 
 From at least 2016 through 2019, Ripple sold approximately 115 million XRP to an
 
 entity (â€œInstitutional Investor Bâ€) that describes itself as a â€œfull-service digital currency prime
 brokerâ€ that â€œprovide[s] investors with a secure marketplace to trade, borrow, lend &amp;amp; custody digital
 currencies.â€ Institutional Investor B paid Ripple approximately $6.4 million for its XRP, the first
&lt;span style=&quot;color: #cd0000;&quot;&gt;-$500,000 of which it obtained at a 10% discount from XRP market prices.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-111.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+$500,000 of which it obtained in June 2016 at a 10% discount from XRP market prices.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+116.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+In an internal email on April 22, 2016, Ripple Agent-3 had sought Larsenâ€™s and&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Garlinghouseâ€™s approval to sell XRP to Institutional Investor B, which Ripple Agent-3 described as&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+an â€œinstitutional reseller,â€ at a discount relative to current market conditions and with certain lockup restrictions. In response, Garlinghouse and Larsen both approved the saleâ€”with each separately&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+telling Ripple Agent-3 that they were â€œgood with it.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+20&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 21 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+117.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Around September 12, 2016, after Institutional Investor Bâ€™s initial purchase of XRP,&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Garlinghouse (as COO) and Ripple Agent-3 met with representatives for Institutional Investor B.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+118.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+An internal Ripple email memorializing this meeting shows that Institutional&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Investor B explained to Garlinghouse that its â€œpurchase of XRP was simply a consequence of . . .&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Chris [Larsen] indicating XRP was central to Rippleâ€™s success,â€ but that it would no longer&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+â€œpurchase more XRPâ€ unless certain â€œprerequisitesâ€ were met. These included, among others,&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Ripple â€œmak[ing] it easier to trade XRPâ€ by making it available on digital asset trading platforms,&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+showing â€œmetrics and charts that show XRP trending up and to the right,â€ and â€œ[c]onsider[ing]&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+moving [Rippleâ€™s] XRP into escrowâ€ to â€œguarantee distribution with a predictable and public&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+schedule.â€ As Institutional Investor B explained to Garlinghouse, â€œ[i]nvestors will not invest when&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+they do not understand something,â€ which required a â€œclearly defined distribution planâ€ for XRP,&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+without which â€œit [would] be difficult/impossible to attract new money to XRP.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+119.&lt;/span&gt;
 
 Under the terms of its agreement with Ripple, Institutional Investor Bâ€”whose
 
 principal place of business is in Manhattanâ€”agreed to resell its XRP subject to volume limitations
 to be specified at the time of each subsequent purchase. Ripple did not restrict the entityâ€™s ability to
 resell XRP into the market in any other way.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-112.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+120.&lt;/span&gt;
 
 On September 24, 2018, Ripple entered into an agreement (as amended,
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-â€œInstitutional Investor C Sales Agreementâ€), signed by Garlinghouse with a Japanese entity&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+â€œInstitutional Investor C Sales Agreementâ€), signed by Garlinghouse, with a Japanese entity&lt;/span&gt;
 (â€œInstitutional Investor Câ€) that describes itself as â€œoperat[ing] sales and exchange service[s] of
 crypto-assets to offer safe and secure transactions of crypto-assets for as many people as possible.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-113.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+121.&lt;/span&gt;
 
 Pursuant to the Institutional Investor C Sales Agreement, Ripple agreed to make up
 
 to $1 billion worth of XRP available for purchases to Institutional Investor C from November 1,
 2018 through November 1, 2021, $800 million of which was offered at prices discounted between
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+21&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 22 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 15% and 30% below XRPâ€™s market price, depending on the total amount of XRP purchased by
 Institutional Investor C.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-114.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+122.&lt;/span&gt;
 
 Pursuant to the Institutional Investor C Sales Agreement, Institutional Investor C
 
 agreed to limit the amount of its own â€œsales or transfers of XRPâ€ to not exceed 10 basis points of
 the average daily volume of XRP trading in the market (a basis point is .0001 or 1/100th of 1%).
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-19&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 20 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-115.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+123.&lt;/span&gt;
 
 From 2018 through the end of 2019, Ripple sold over $170 million worth of XRP,
 
 approximately 719 million XRP, to Institutional Investor C, sold approximately 361 million XRP to
 Institutional Investor C through the end of September 2020, and at least another 20 million XRP
 around December 15, 2020.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-116.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+124.&lt;/span&gt;
 
 Table 2 specifies the amounts Ripple raised in both Market and Institutional Sales:
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1019,14 +1108,19 @@&lt;/span&gt;
 Defendantsâ€™ Other XRP Distributions and â€œListingâ€ of XRP on Digital Asset
 Trading Platforms
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-117.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+125.&lt;/span&gt;
 
 At times, rather than directly selling XRP into the market to fund its operations,
 
 Ripple funded its dual XRP market-creating and company financing goals by transferring XRP to
 third parties as compensation. Ripple understood that these parties would in turn sell XRP into the
 public markets (often explicitly dictating the terms under which the parties could make these sales).
&lt;span style=&quot;color: #cd0000;&quot;&gt;-118.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+22&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 23 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+126.&lt;/span&gt;
 
 These Other XRP Distributions consist of five other types of sales and distributions
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1035,36 +1129,32 @@&lt;/span&gt;
 
 Executive Compensation Distributions
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-119.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+127.&lt;/span&gt;
 
 Between December 2016 and at least May 2019, Ripple granted certain of its
 
 executives a total of approximately 900 million XRP in consideration for their labor as Ripple
 employees, at least 597 million of which Ripple has already tendered to these executives.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-20&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 21 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-120.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+128.&lt;/span&gt;
 
 On December 13, 2016, Ripple granted Ripple Agent-3 and Garlinghouse 150
 
 million and 500 million XRP, respectively, in separately negotiated compensation agreements.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-121.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+129.&lt;/span&gt;
 
 Ripple granted Garlinghouse an additional 250 million XRP on May 29, 2019.
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-122.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+130.&lt;/span&gt;
 
 Pursuant to the terms of these agreements, Ripple has transferred approximately 521
 
 million XRP to Garlinghouse and approximately 76 million XRP to Ripple Agent-3, worth
&lt;span style=&quot;color: #cd0000;&quot;&gt;-approximately $246 million and $44 million, respectively, at the time of transfer.1&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+approximately $246 million and $44 million, respectively, at the time of transfer. 1&lt;/span&gt;
 2.
 
 On-Demand Liquidity Distributions
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-123.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+131.&lt;/span&gt;
 
 As described below, in late 2018 Ripple began to market a product (â€œOn-Demand
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1072,52 +1162,53 @@&lt;/span&gt;
 jurisdiction, transfer it to a separate destination, and sell XRP for the local fiat currency, to effect
 cross-border payments. To encourage adoption of ODL, Ripple paid XRP to both the money
 transmitting businesses and certain market makers that supported the product for their efforts.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-124.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+132.&lt;/span&gt;
 
 Ripple chose to compensate these entities (which were not investors in XRP) with
 
 XRP directly, understanding that they would monetize their fees by selling XRP into public markets.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-125.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+133.&lt;/span&gt;
 
 From approximately December 2018 through July 2020, Ripple issued at least 324
 
 million XRP as fees, rebates, and incentives to entities associated with ODL, without restricting the
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+These values are based on the weighted average of XRPâ€™s closing price for a particular day,&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+month, or quarter, as reported by the digital asset platform Coinmarketcap.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+1&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+23&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 24 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 ability of these entities to resell the XRP received as incentives into public markets. This XRP was
 valued at approximately $67 million at the time of Rippleâ€™s payments.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-126.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+134.&lt;/span&gt;
 
 These entities typically have resold all the XRP they have received from Ripple to
 
 investors in the public markets, typically on the same day that they received the XRP from Ripple.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-127.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+135.&lt;/span&gt;
 
 Ripple took no steps to ensure that these entities intended to hold XRP as an
 
 investment. To the contrary, Ripple gave these entities XRP to sell into the public markets.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-1&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-These values are based on the weighted average of XRPâ€™s closing price for a particular day,&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-month, or quarter, as reported by the digital asset platform Coinmarketcap.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-21&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 22 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
 3.
 
 Sales of XRP into the Market on Behalf of a Larsen-Established Entity and by Ripple-Funded
 Projects.
 (i)
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-128.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+136.&lt;/span&gt;
 
 RippleWorks
 
 In 2015 and 2017, Ripple issued at least 2 billion XRP as contributions to
 
 â€œRippleWorks,â€ an entity Larsen co-founded to invest in, among other things, XRP-related projects
&lt;span style=&quot;color: #cd0000;&quot;&gt;-to further Rippleâ€™s goals of achieving widespread trading of XRP in the market.2&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-129.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+to further Rippleâ€™s goals of achieving widespread trading of XRP in the market. 2&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+137.&lt;/span&gt;
 
 Larsen co-founded RippleWorks with another individual who would become its
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1125,66 +1216,79 @@&lt;/span&gt;
 RippleWorks, and Rippleâ€™s Board, including Larsen, approved giving 1 billion XRP to RippleWorks,
 in part because the Board â€œbelieve[d] [RippleWorks] will help promote [Rippleâ€™s] business.â€ On
 February 1, 2017, Ripple committed an additional one billion XRP to RippleWorks.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-130.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+138.&lt;/span&gt;
 
 RippleWorks worked to achieve Rippleâ€™s own goal of widespread distributions of
 
 XRP, with Larsen supervising RippleWorksâ€™ sales of XRP into the market.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-131.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+139.&lt;/span&gt;
 
 Ripple took no steps to ensure that RippleWorks intended to hold XRP as an
 
 investment. To the contrary, Ripple gave XRP to RippleWorks so it would sell XRP into the public
 markets and, from mid-2015 to the present, enlisted the Market Maker to sell approximately 693
 million XRP to the public on RippleWorksâ€™ behalf, for approximately $176 million.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-132.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+In a November 21, 2019 tweet, Larsen explained that RippleWorks had â€œdistribute[d]&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+$25M+â€ to a number of ventures, which then presumptively resold the XRP into public markets.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-A November 11, 2016 email from the RippleWorks CEO to Larsen and&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+2&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Garlinghouse exemplifies the relationship between the two entities. In the email, the RippleWorks&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-CEO detailed RippleWorksâ€™ â€œ2016 Year End XRP sellingâ€ and â€œ2017 XRP Salesâ€ in order to&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-â€œinsure [sic] we are all on the same page and allow anyone to chime in with any different thoughts.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+24&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-2&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 25 of 79&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-In a November 21, 2019 tweet, Larsen explained that RippleWorks had â€œdistribute[d]&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-$25M+â€ to a number of ventures, which then presumptively resold the XRP into public markets.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-22&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+140.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 23 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Larsen coordinated these sales with the Market Maker by directing and approving&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-133.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+changes to RippleWorksâ€™ XRP sales strategy. For example, various mid-2017 emails between Larsen&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+and the Market Marker show that Larsen instructed the Market Maker to â€œrestartâ€ trading by one of&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+its trading bots and that he asked the Market Maker to â€œmonitor[ ] closely to ensureâ€ that certain&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+sales are â€œconstructive to the market.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+141.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+A November 11, 2016 email from the RippleWorks CEO to Larsen and&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Garlinghouse exemplifies the relationship between the two entities. In the email, the RippleWorks&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+CEO detailed RippleWorksâ€™ â€œ2016 Year End XRP sellingâ€ and â€œ2017 XRP Salesâ€ in order to&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+â€œinsure [sic] we are all on the same page and allow anyone to chime in with any different thoughts.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+142.&lt;/span&gt;
 
 Another example involves RippleWorksâ€™ eventual investment into a fund that wished
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-to invest in digital assets (the â€œXRP Fundâ€) and Rippleâ€™s â€œloanâ€ of XRP to that fund so that it could&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+to invest in digital assets (â€œXRP Fund Bâ€) and Rippleâ€™s â€œloanâ€ of XRP to that fund so that it could&lt;/span&gt;
 engage in market-making activities.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-134.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+143.&lt;/span&gt;
 
 In an August 27, 2017 weekly update email, Ripple Agent-3 informed Garlinghouse
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-that the XRP Fund and Ripple had exchanged a term sheet.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-135.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+that XRP Fund B and Ripple had exchanged a term sheet.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+144.&lt;/span&gt;
 
 In an October 2, 2017 weekly update email, Ripple Agent-3 informed Garlinghouse
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-that Ripple was â€œevaluating setting up [an investment in the XRP Fund] through RippleWorks.â€&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-136.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+that Ripple was â€œevaluating setting up [an investment in XRP Fund B] through RippleWorks.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+145.&lt;/span&gt;
 
 On November 1, 2017, Ripple Agent-3 informed Ripple Agent-2 that Ripple was
 
 looking to â€œaccelerate/prioritize XRP-beneficial announcements,â€ including potentially the
&lt;span style=&quot;color: #cd0000;&quot;&gt;-formation of the XRP Fund.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-137.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+formation of XRP Fund B.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+146.&lt;/span&gt;
 
 On November 11, 2017, a Ripple marketing executive asked Garlinghouse and
 
 Ripple Agent-3 in an email if they could use an upcoming investment conference in Manhattan to
&lt;span style=&quot;color: #cd0000;&quot;&gt;-â€œpushâ€ the XRP Fund or the RippleWorks CEO â€œto close so we can announce.â€ The next day,&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+â€œpushâ€ XRP Fund B or the RippleWorks CEO â€œto close so we can announce.â€ The next day,&lt;/span&gt;
 Ripple Agent-3 informed Garlinghouse that Ripple was â€œfollowing up with [the RippleWorks CEO]
&lt;span style=&quot;color: #cd0000;&quot;&gt;-with some provisions [for the XRP Fund] to prevent harmful XRP behavior.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+with some provisions [for XRP Fund B] to prevent harmful XRP behavior.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+25&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 26 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 (ii) Third-Party Incentives Through â€œxPringâ€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-138.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+147.&lt;/span&gt;
 
 From approximately April 2018 through August 2020, Ripple publicly marketed an
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1193,19 +1297,14 @@&lt;/span&gt;
 goals of achieving widespread XRP distribution. Ripple called xPring â€œa new initiative by Ripple
 that will invest in, incubate, acquire and provide grants to companies and projects run by proven
 entrepreneursâ€ in hopes of achieving Rippleâ€™s stated goal of working to develop a use for XRP.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-139.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+148.&lt;/span&gt;
 
 Ripple used xPring as yet another way to get XRP into the hands of public investors
 
 through conduits, while obtaining the added benefit of incentivizing third parties to help Ripple
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-23&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 24 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
 pursue its XRP goals. Ripple gave XRP to these entities so they would sell it into public markets
 and took no steps to ensure that xPring-funded parties would not resell their XRP to the public.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-140.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+149.&lt;/span&gt;
 
 For example, a November 1, 2018, two-year â€œServices and Marketing Agreementâ€
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1215,7 +1314,7 @@&lt;/span&gt;
 provided that these additional parties agreed to abide by Ripple-mandated parameters for their XRP
 trading volumes. By August 2020, Ripple had paid the entity at least 364 million XRP, of which the
 entity had distributed 178 million to other parties, typically approved by Ripple.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-141.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+150.&lt;/span&gt;
 
 Another such distribution included a November 8, 2018 agreement wherein Ripple
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1224,16 +1323,21 @@&lt;/span&gt;
 that the company would seek to resell the XRP it received from Ripple, Ripple again required the
 entity to agree to certain volume-related parameters to effect XRP sales into the market. Ripple
 eventually transferred more than 163 million XRP to this entity.
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+26&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 27 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 4.
 
 The XRP Options
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-142.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+151.&lt;/span&gt;
 
 From January 2018 through December 2019, Ripple sold at least 1.63 billion XRP
 
 when certain entities exercised options to buy XRP that Ripple had granted (the â€œOption Salesâ€).
&lt;span style=&quot;color: #cd0000;&quot;&gt;-143.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+152.&lt;/span&gt;
 
 In February 2016, Ripple granted â€œan option to purchase units of Ripple XRPâ€ to a
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1241,74 +1345,175 @@&lt;/span&gt;
 exchange for advisory services providedâ€ to Ripple by Option Investor Aâ€™s founder. Ripple granted
 options for up to one billion XRP as of January 1, 2014, at prices to be determined based on XRPâ€™s
 average market prices. The options are from January 1, 2018, and for each month thereafter, until
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-24&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 25 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
 March 1, 2022. Between 2018 and September 2020, Rippleâ€™s sales to Option Investor A consisted
&lt;span style=&quot;color: #cd0000;&quot;&gt;-of at least 588 million XRP.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-144.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+of at least 588 million XRP. Larsen negotiated the arrangement with Option Investor A on Rippleâ€™s&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+behalf and ultimately signed the final agreement with Option Investor A.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+153.&lt;/span&gt;
 
 Separately, in 2016, Ripple entered into an agreement with an enterprise software
 
 firm (â€œOption Investor Bâ€) based in Manhattan that gave the firm an option to buy up to 5 billion
 XRP at a discounted price in exchange for efforts to help Ripple develop a â€œuseâ€ for XRP. The
 amount of XRP available for purchase under the option was later reduced, and Option Investor B
&lt;span style=&quot;color: #cd0000;&quot;&gt;-purchased at least 1.04 billion XRP in 2019.3&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+purchased at least 1.04 billion XRP in 2019. 3 Larsen signed the Memorandum of Understanding&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+with Option Investor B in May 2016.&lt;/span&gt;
 5.
 
 Payments to Digital Asset Trading Platforms to Support XRPâ€™s Trading Market
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-145.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+154.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Starting in 2016 at the latest, while he was Rippleâ€™s COO, Garlinghouse began to&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+oversee, direct, and lead Rippleâ€™s efforts to make XRP available for purchasers to buy and sell on&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+digital asset trading platforms incorporated in the United States and abroad.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+To pressure Option Investor B to sell back the option grant (which covered approximately&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+5% of the XRP in existence at a reduced price), Ripple Agent-3 suggested to Ripple Agent-2 in an&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+email on February 26, 2017 that Ripple make the option public. Ripple Agent-2 responded that it&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+â€œwould cause us some headaches . . . Better to keep it private.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+3&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+27&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 28 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+155.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Ripple and Garlinghouse engaged in these efforts because they believed that making&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+XRP available on digital asset trading platforms was critical to their ability to sell XRP into the&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+market at higher pricesâ€”or, as internal Ripple documents explained it, increased trading volume for&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+XRP on digital asset trading platforms would create â€œmomentumâ€ for XRP.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+156.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+In a May 27, 2016 email, Garlinghouse asked Ripple employees for an â€œupdate on&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+the status of . . . listing XRPâ€ on global digital asset trading platforms.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+157.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+In August 2016, Garlinghouse sought to persuade the president of a digital asset&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+trading platform whose principal place of business is in California (â€œPlatform Aâ€) to permit buying&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+and selling of XRP on Platform A. In an August 19, 2016 email, Garlinghouse stated he had â€œjoined&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Chris Larsen about a year ago in leading the Ripple teamâ€ and that Ripple was â€œlooking for credible&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+exchanges to list XRP where we can send market makers and trading desks.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+158.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+To support Rippleâ€™s efforts to â€œlistâ€ XRP on digital asset platforms, Garlinghouse&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+simultaneously negotiated deals as to XRP with other entities in the digital asset space. For example,&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+in an October 11, 2016 email to the CEO of a California-based custodial services provider,&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Garlinghouse spoke of Rippleâ€™s â€œkey milestone of listing XRP on two digital asset exchanges by the&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+end of Q4,â€ asked the provider to â€œimplement[ ] custody [or wallet] services for XRPâ€ by October&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+17, 2016, and promised to â€œprovide whatever resources [were] neededâ€ for that purpose.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+159.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+In December 2016, Garlinghouse again sought to get XRP listed on Platform A. In&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+a December 1, 2016 email, he stated that Rippleâ€™s 2017 â€œincentive programâ€ for exchanges, along&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+with Rippleâ€™s efforts to increase institutional adoption of XRP for settlement, would â€œenhance the&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+opportunity for [Platform Aâ€™s] tradersâ€ and that Ripple was â€œhappy to offer minimum monthly&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+guarantees in 2017 to get this onto your near term priorities list.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+160.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Garlinghouse and Larsen continued to participate in Rippleâ€™s effort to make XRP&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-In 2017 and 2018, Ripple also entered into agreements with at least ten digital asset&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+available to buy and sell on Platform A in 2017 and 2018. In an internal Ripple email of July 2018,&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+28&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 29 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Ripple Agent-2 updated Garlinghouse on â€œtwo paths in parallelâ€ Ripple was taking to achieve listing&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+on Platform A, with Garlinghouse directing Ripple Agent-2 to make any document outlining these&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+paths â€œshareableâ€ and â€œreadable.â€ Larsen then weighed in, directing Garlinghouse to â€œwork on a&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+fact based detailed doc that showsâ€ what he viewed as important differences between the XRP&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Ledger and the ledger for other digital assets.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+161.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+In 2017 and 2018, Ripple entered into agreements with at least ten digital asset&lt;/span&gt;
 
 trading platformsâ€”none of which were registered with the SEC in any capacity, and at least two of
&lt;span style=&quot;color: #cd0000;&quot;&gt;-which have principal places of business in the United Statesâ€”providing for listing and trading&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+which have principal places of business in the United Statesâ€”providing for â€œlistingâ€ and trading&lt;/span&gt;
 incentives with respect to XRP. Ripple paid these platforms a fee, typically in XRP, to permit the
 buying and selling of XRP on their systems and sometimes incentives for achieving volume metrics.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-146.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+162.&lt;/span&gt;
 
 As just one example of these arrangements, in May 2017, Ripple gave a digital asset
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-trading platform, based in the United States, 17 million XRP in exchange for the platformâ€™s&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-agreement to make XRP available to buy and sell on its platform, as well as rebates on trading fees&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-of up to $60,000 per month for three months, and up to $150,000 in incentive payments per month&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-for three months to the top three traders of XRP for other assets on the platform.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-147.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+trading platform based in the United States (â€œPlatform Bâ€) 17 million XRP in exchange for the&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+platformâ€™s agreement to make XRP available to buy and sell on its platform, as well as rebates on&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+trading fees of up to $60,000 per month for three months. Ripple also promised Platform B up to&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+$150,000 in incentive payments per month for three months to the top three traders of XRP for&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+other assets on Platform B.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+163.&lt;/span&gt;
 
 Between October 2016 and October 2017, Ripple distributed approximately 28
 
 million XRP to these platforms, with a then-current market value of $6.8 million.
&lt;span style=&quot;color: #00cd00;&quot;&gt;+164.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-3&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Ripple viewed these efforts as critical to its ability to sell XRP at favorable prices to&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-To pressure Option Investor B to sell back the option grant (which covered approximately&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-5% of the XRP in existence at a reduced price), Ripple Agent-3 suggested to Ripple Agent-2 in an&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-email on February 26, 2017 that Ripple make the option public. Ripple Agent-2 responded that it&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-â€œwould cause us some headaches . . . Better to keep it private.â€&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-25&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+fund its operations. For example, as Ripple Agent-3 instructed a Ripple employee and an XRP&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+investor in June 2017, Ripple had to â€œload[ ] with ultimatumsâ€ any conversation with one particular&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Manhattan-based digital asset trading platform (â€œPlatform Câ€), because it was a â€œHIGH VALUE&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+targetâ€ for Ripple.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+165.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 26 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Ripple tried repeatedly and unsuccessfully to persuade Platform C to â€œlist XRP on&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-148.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+29&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-As reflected in internal documents, Ripple made these efforts because it believed that&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 30 of 79&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-increased trading volume for XRP on digital asset trading platforms would create â€œmomentumâ€ for&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-XRP. For example, as Ripple Agent-3 instructed a Ripple employee and an XRP investor in June&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-2017, Ripple had to â€œload[ ] with ultimatumsâ€ any conversation with one particular Manhattan-based&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-digital asset trading platform, because it was a â€œHIGH VALUE targetâ€ for Ripple.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-149.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+[its] exchangeâ€ by offering to â€œcover implementation costs, paying rebates, [and] brokering intros to&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+large XRP holders for custody.â€ Undaunted by these initial failures, Ripple Agent-3 emailed the two&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+owners of the firm directly in July 2017, copying Garlinghouse, and asked: â€œDoes a $1M cash&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+payment move the needle for a Q3 listing?â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+166.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Ripple tried repeatedly and unsuccessfully to persuade that digital asset trading firm&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Garlinghouse, like Ripple, also viewed these types of efforts as critical components&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-to â€œlist XRP on [its] exchangeâ€ by offering to â€œcover implementation costs, paying rebates, [and]&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-brokering intros to large XRP holders for custody.â€ Undaunted by these initial failures, Ripple&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Agent-3 emailed the two owners of the firm directly in July 2017, copying Garlinghouse, and asked:&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-â€œDoes a $1M cash payment move the needle for a Q3 listing?â€&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-150.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+of Rippleâ€™s efforts as to XRP. In an internal March 29, 2018 email, he described Rippleâ€™s efforts as&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+to Platform C as an example of Ripple â€œdo[ing] whatever we can to invest in the success of the XRP&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+ecosystem,â€ which he viewed as â€œtotally consistent with what [he had] also proactively saidâ€ to the&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+public about Rippleâ€™s intended efforts.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+167.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Garlinghouse also understood that, while making XRP available on digital asset&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+trading platforms could help XRPâ€™s price, a platformâ€™s refusal to â€œlist XRPâ€â€”particularly out of&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+concerns that XRP was a securityâ€”could, in the words of an April 10, 2018 Garlinghouse email to&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Platform A, â€œhurt[] Ripple.â€ Accordingly, when news suggested that Platform A had refused to&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+make XRP available to the public, Garlinghouse, working with Rippleâ€™s internal and external public&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+relations teams, prepared â€œtalking pointsâ€ intended to dispel the notion that XRP was a security or&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+that Platform A had refused to make XRP available to the public out of concerns that XRP was a&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+security.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+168.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Larsen was involved in efforts to promote XRP on various platforms, even after he&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+was no longer CEO. On August 30, 2018, he emailed Ripple Agent-1 asking if a certain futures and&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+options exchange â€œstill plan[ned] to release [an XRP denominated] index today?â€ Ripple believed&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+this would further their goal of getting an XRP derivative product listed on that exchange. Ripple&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Agent-1 responded that the platform was not, due to concerns raised by its lawyers. Larsen&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+forwarded this response, noting: â€œWhat a pain these guys are.â€ Garlinghouse, in turn, replied by&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+asking Ripple Agent-1 to keep both him and Larsen â€œupdated on this topic.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+30&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 31 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+169.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+At all relevant times, Garlinghouse and Larsen knew or recklessly disregarded that&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+XRP purchasers had a reasonable expectation of deriving profits by buying and selling XRP on these&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+digital asset trading platforms.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+170.&lt;/span&gt;
 
 Table 3, below, summarizes the Other XRP Distributions.
 Type of Other
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1335,9 +1540,6 @@&lt;/span&gt;
 Digital Asset Trading Oct. 2016 to
 Platforms Oct. 2017
 Total
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Table 3: Other XRP Distributions&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-26&lt;/span&gt;
 
 597,000,000
 324,000,000
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1347,8 +1549,7 @@&lt;/span&gt;
 28,400,000
 4,055,400,000
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 27 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Table 3: Other XRP Distributions&lt;/span&gt;
 F.
 
 Larsenâ€™s and Garlinghouseâ€™s Sales of XRP
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1357,25 +1558,30 @@&lt;/span&gt;
 
 Larsenâ€™s Sales
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-151.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+171.&lt;/span&gt;
 
 At all relevant times, Larsen was either the CEO or chairman of the Board of
 
 Directors of Ripple and thus part of the control group of XRPâ€™s issuer.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-152.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+172.&lt;/span&gt;
 
 While CEO, Larsen had the power to appoint six out of eight seats on Rippleâ€™s
 
 Board of Directors, and, as Rippleâ€™s largest equity shareholder, had 68% of its voting power.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-153.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+173.&lt;/span&gt;
 
 The following sales of XRP took place with Larsen working in coordination with
 
 Ripple to develop and maintain a liquid market for XRP through which Defendants could monetize
&lt;span style=&quot;color: #cd0000;&quot;&gt;-their holdings. Email between Larsen and the Market Maker, from at least 2017 through at least&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+their holdings. Emails between Larsen and the Market Maker, from at least 2017 through at least&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+31&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 32 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 2019, show that, like Ripple and Garlinghouse, Larsen also attempted to strike a delicate balance
 between maximizing profits from his XRP sales while not depressing the price of XRP.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-154.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+174.&lt;/span&gt;
 
 Larsen at times paid the Market Maker to make offers and sales of his XRP on digital
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1383,15 +1589,31 @@&lt;/span&gt;
 to investors all over the world, including in the United States, without marketing or restricting offers
 or sales to persons who had a â€œuseâ€ for XRP and without restricting purchasers from reselling their
 XRP to other investors, including to investors in the United States or elsewhere.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-155.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+175.&lt;/span&gt;
 
 Larsen and his wife netted approximately $450 million from these sales.
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-156.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+176.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Larsen directed his offers and sales of XRP from within the United States.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Continuing into at least 2020, Larsen directed his offers and sales of XRP from&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-157.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+within the United States.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+177.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Larsenâ€™s offers and sales of XRP occurred on various digital asset trading platforms,&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+including Platforms A and B and at least two others incorporated in the United States, and on one&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+incorporated abroad but with a principal place of business in New York. Though Larsen also made&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+offers and sales of XRP through certain digital asset trading platforms whose parent corporations&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+are located outside the United States, Larsen opened his account with at least one of those&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+platformsâ€™ United States-based wholly owned subsidiary. Moreover, at least one of the digital asset&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+trading platforms with a foreign parent through which Larsen offered and sold his XRP used&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+resources located in the United States to execute Larsenâ€™s trades in XRP.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+178.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Larsen made offers and sales of XRP to persons in the United States.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+179.&lt;/span&gt;
 
 Larsen intends to continue selling his XRP, as shown in an email he sent an investor
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1399,108 +1621,130 @@&lt;/span&gt;
 XRP, to which Larsen described the â€œwidely held view that over time, its [sic] better to have widely
 held assets, so continued reduction of Ripple and founder holdings is likely constructive.â€ On
 September 22, 2020, Larsen also publicly confirmed from his Twitter account that he had
&lt;span style=&quot;color: #cd0000;&quot;&gt;-transferred half a billion of his XRP, then worth approximately $115 million, to accounts he&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-27&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+32&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 28 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 33 of 79&lt;/span&gt;
 
&lt;span style=&quot;color: #00cd00;&quot;&gt;+transferred half a billion of his XRP, then worth approximately $115 million, to accounts he&lt;/span&gt;
 established with a digital asset firm incorporated in New York, and recently did in fact make such
 transfers, further evidencing his present intention to continue his unregistered sales of XRP.
 2.
 
 Garlinghouseâ€™s Sales
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-158.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+180.&lt;/span&gt;
 
 From April 2015 to the present, Garlinghouse was either the COO or the CEO of
 
 Ripple and thus part of the control group of XRPâ€™s issuer.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-159.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+181.&lt;/span&gt;
 
 After Garlinghouse joined Ripple in 2015, Garlinghouse was awarded XRP from
 
 Ripple, aligning his financial incentives with Rippleâ€™s. Garlinghouse later resold significant quantities
 of XRP to amass profits well over one hundred million dollars.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-160.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+182.&lt;/span&gt;
 
 The following sales took place with Garlinghouse working in coordination with
 
 Ripple to develop and maintain a liquid XRP market that the Defendants could monetize.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-161.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+183.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-From April 2017 through December 2019, Garlinghouse sold over 321 million of his&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+From April 2017 through at least October 2020, Garlinghouse sold over 357 million&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-XRP, for approximately $150 million, to the public through digital asset trading platforms or other&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-intermediaries. Beginning in December 2017, Garlinghouse used the Market Maker, who deployed&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-trading bots on multiple, worldwide digital asset trading platforms, to sell his XRP to the public.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-162.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+of his XRP, for approximately $159 million, to the public through digital asset trading platforms or&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+other intermediaries. Beginning in December 2017, Garlinghouse used the Market Maker to sell his&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+XRP to the public. The Market Maker deployed trading bots on multiple, worldwide digital asset&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+trading platforms and, in the second half of 2020 alone, sold at least another $9 million of&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Garlinghouseâ€™s XRP on Garlinghouseâ€™s behalf.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+184.&lt;/span&gt;
 
 Garlinghouse offered and sold XRP to investors all over the world, including in the
 
 United States, without marketing or restricting offers or sales to persons who had a â€œuseâ€ for XRP
 and without restricting purchasers from reselling their XRP to other investors, including to investors
 in the United States or elsewhere.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-163.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+185.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Garlinghouse directed his offers and sales of XRP from within the United States.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Continuing into at least 2020, Garlinghouse directed his offers and sales of XRP&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-164.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+from within the United States.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+33&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 34 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+186.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Garlinghouseâ€™s offers and sales occurred on various digital asset trading platforms,&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+including Platforms A and B and at least two others incorporated in the United States, and one&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+incorporated abroad but with a principal place of business in New York. Though Garlinghouse also&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+made offers and sales of XRP through certain digital asset trading platforms whose parent&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+corporations are located outside the United States, Garlinghouse opened his account with at least&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+one of those platformsâ€™ United States-based wholly owned subsidiary. Moreover, at least one of the&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+digital asset trading platforms with a foreign parent through which Garlinghouse offered and sold&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+his XRP used resources located in the United States to execute Garlinghouseâ€™s trades in XRP.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+187.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Garlinghouse made offers and sales of XRP to persons in the United States.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+188.&lt;/span&gt;
 
 At various times between April 2017 and at least December 2019, Garlinghouse also
 
 paused his XRP sales at the Market Makerâ€™s recommendation because XRPâ€™s market price was
&lt;span style=&quot;color: #cd0000;&quot;&gt;-falling, seeking to avoid having the latterâ€™s own XRP sales further drive down XRPâ€™s market price.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-165.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+falling, seeking to avoid having the formerâ€™s own XRP sales further drive down XRPâ€™s market price.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+189.&lt;/span&gt;
 
 Recently, Garlinghouse transferred some of his XRP into accounts he opened with
 
 digital asset trading platforms, evidencing his intention to continue his unregistered sales of XRP.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-28&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 29 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
 III.
 
 Defendants Created and Control the XRP Trading Markets While Selectively
 Disclosing Information about Their Activities
&lt;span style=&quot;color: #cd0000;&quot;&gt;-166.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+190.&lt;/span&gt;
 
 Defendantsâ€™ offers and sales of XRP in the Offering occurred into a market that they
 
 had largely created and whichâ€”consistent with their dual purposes of raising funds from their XRP
 sales and managing the liquidity of the XRP marketâ€”they played a significant role overseeing.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-167.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+191.&lt;/span&gt;
 
 Defendantsâ€™ efforts in this regard principally involved monitoring the timing and
 
 amount of their XRP sales and purchases, sometimes to coincide with strategic announcements
 about Ripple or XRP, and establishing an escrow for Rippleâ€™s own XRP holdings.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-168.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+192.&lt;/span&gt;
 
 The ability to sell investments in liquid markets is an important consideration for
 
 investors when determining whether to buy securities because it represents one way in which they
 can realize profits from their investments.
&lt;span style=&quot;color: #00cd00;&quot;&gt;+34&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 35 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 A.
 
 Ripple Managed the Price and Liquidity in the XRP Market
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-169.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+193.&lt;/span&gt;
 
 Throughout the Offering, Rippleâ€”as Garlinghouse and Larsen directed at various
 
 timesâ€”undertook significant efforts to monitor, manage, and impact the XRP trading markets,
 including the trading price and volume of XRP.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-170.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+194.&lt;/span&gt;
 
 As described in Section II, these efforts included: (1) using algorithms to time the
 
 amount and price of Defendantsâ€™ XRP sales into the market; (2) paying incentives to certain market
 makersâ€”some of which Ripple engaged to effect the Market Salesâ€”if the sales reached certain
 trading volume levels on XRP; and (3) paying digital asset trading platforms to permit XRP trading.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-171.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+195.&lt;/span&gt;
 
 These efforts also included timing the prices and amounts of XRP sales to achieve
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1508,127 +1752,134 @@&lt;/span&gt;
 Ripple sought to maximize the amount it could earn from the XRP Market Sales while minimizing
 volatility and any downward pressure on XRPâ€™s market price caused by Rippleâ€™s constant injections
 of new XRP into the market to raise operating funds.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-29&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 30 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-172.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+196.&lt;/span&gt;
 
 Ripple internally described these strategies as aimed at maximizing the amount of
 
 money Ripple could raise in the Offering or at achieving â€œmore speculative [XRP] volume.â€ At
 times, Ripple publicly described its efforts as meant to protect the publicâ€™s investments in XRP.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-173.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+197.&lt;/span&gt;
 
 Starting in late 2015, Ripple directed the Market Maker to buy or sell XRP (on
 
 occasion strategically timed around Ripple announcements), to account for the volume impact of
 XRP trading, as a Ripple executive told the Market Maker by email on September 20, 2016.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-174.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+198.&lt;/span&gt;
 
 To accomplish this, Ripple had an internal â€œXRP Markets Teamâ€ that monitored
 
 XRPâ€™s price and volume daily and regularly communicated with Rippleâ€™s XRP market makers about
 Rippleâ€™s XRP sales strategy, which relied on selling XRP in amounts no greater than a certain
 percentage of XRPâ€™s daily volume, generally between 10 and 25 basis points.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-175.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+35&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 36 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+199.&lt;/span&gt;
 
 Starting in 2017 at the latest, Larsen and Garlinghouse participated in meetings with,
 
 or were apprised of discussions by, the XRP Markets Team, in which they discussed adjustments to
 Rippleâ€™s sales strategy and recommendations regarding the amount of Rippleâ€™s XRP to sell, decisions
 over which Larsen and Garlinghouse had final authority as Rippleâ€™s CEOs.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-176.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+200.&lt;/span&gt;
 
 On April 11, 2016, Ripple also directed the Market Maker to buy XRP in the open
 
 market with the goal of â€œ[t]arget[ing] $0.008 incrementally over the course of 2 daysâ€ while
 â€œ[c]ap[ping] activity at 5% of daily trading volume[,]â€ among other things.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-177.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+201.&lt;/span&gt;
 
 A few months later, on August 16, 2016, a Ripple employee reported to others at
 
 Ripple the â€œrobust discussion activity [he had seen] on the XRPchat threadâ€ (which included
 â€œ[p]ositive feedbackâ€ with respect to â€œ[u]nderstanding that Ripple has a long-term strategy, in which
 XRP is one of a few big betsâ€) and the â€œnotable market activityâ€ for XRP in recent days. (â€œXRP
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Chat is an online forum that describes itself as â€œ[t]he Largest XRP and Ripple Community Forumâ€.)&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-178.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Chat is an online forum that describes itself as â€œ[t]he Largest XRP and Ripple Community Forum.â€)&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+202.&lt;/span&gt;
 
 A Ripple vice president of finance (the â€œVP of Financeâ€) then asked Garlinghouse
 
 and Ripple Agent-3 â€œif [they] discussed whether we should turn off the buying now with this news
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-30&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 31 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
 and the higher volume?â€ Ripple Agent-3 responded: â€œThe thesis . . . is to show a period of
 consistent buying from an account that is known to be a consistent seller. The intended impact of
 the buying is not to move the price but rather to provide confidence in the market, which in turn
 will move the price.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-179.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+203.&lt;/span&gt;
 
 Following this exchange, Ripple did not â€œturn off the buyingâ€ of XRP.
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-180.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+204.&lt;/span&gt;
 
 The following month, September 2016, Ripple directed the Market Maker to place
 
 XRP buy and sell orders around the time of announcements Ripple made that month referring to
 Rippleâ€™s achievements, though neither announcement concerned XRP.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-181.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+205.&lt;/span&gt;
 
 On September 20, 2016, the VP of Finance emailed the Market Maker and said that,
 
 after consultation with Garlinghouse and Larsen, Ripple wanted to â€œbetter understand[ ] the impact
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+36&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 37 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 of our purchases [of XRP] over the past weekâ€ and that Rippleâ€™s â€œ[c]urrent thinking [was] that we
 should use our full $300k [designated for XRP purchases] in the first 24 hours post announcement.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-182.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+206.&lt;/span&gt;
 
 The next day, the Market Maker provided the VP of Finance and Ripple Agent-3
 
 with data showing â€œthe positive relationship between hourly price changes of XRP and the hourly
 Net XRP purchases,â€ while noting the lack of data to provide a â€œstatistically significant result.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-183.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+207.&lt;/span&gt;
 
 On Friday, September 23, 2016, the VP of Finance, after consulting with
 
 Garlinghouse and Larsen and obtaining Garlinghouseâ€™s â€œgo ahead,â€ directed the Market Maker to
 â€œkeep the buying light [the day after the announcement] and then do the bigger slug starting
 Sunday.â€ The Market Maker agreed.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-184.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+208.&lt;/span&gt;
 
 On Monday, September 26, 2016, the Market Maker reported to Ripple that it had
 
 â€œspent approximately $200K of the second trancheâ€ and recommended a strategy â€œto make
 aggressive marketsâ€ going forward, to which the VP of Finance agreed.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-185.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+209.&lt;/span&gt;
 
 On October 15, 2016, the VP of Finance informed the Market Maker that, after an
 
 upcoming announcement, Ripple â€œwould like to go to sales at 1%â€ of trading volume and asked the
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-31&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 32 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
 Market Maker to â€œbe thoughtful / opportunistic around the timing of implementing 1%â€ because
 Ripple did not â€œwant to depress the rally but rather capitalize on the additional volume.â€ He further
 instructed the Marker Maker â€œto take more money off the table,â€ if there was a chance to do so.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-186.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+210.&lt;/span&gt;
 
 Internally, Ripple executives frequently expressed concern over XRPâ€™s price and
 
 planned proactive steps to protect the market.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-187.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+211.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-For example, in an August 12, 2017 e-mail to Ripple Agent-2 and Ripple Agent-3,&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+For example, in 2016 while he was COO, Garlinghouse ensured that Ripple placed&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Garlinghouse raised concerns about XRP being â€œsquarely left outâ€ of a recent market â€œrallyâ€ and&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-asked whether Rippleâ€™s recent XRP sales were â€œimpacting the market?â€ He instructed certain Ripple&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-employees to â€œproactivelyâ€ attempt to increase speculative trading value with positive XRP news.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-188.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+restrictions on sales of XRP by Rippleâ€™s Co-Founder in order to quell concerns that these sales&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+would negatively impact XRPâ€™s market trading.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+212.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+As another example, in an August 12, 2017 e-mail to Ripple Agent-2 and Ripple&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Agent-3, Garlinghouse raised concerns about XRP being â€œsquarely left outâ€ of a recent market&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+37&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 38 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+â€œrallyâ€ and asked whether Rippleâ€™s recent XRP sales were â€œimpacting the market?â€ He instructed&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+certain Ripple employees to â€œproactivelyâ€ attempt to increase speculative trading value with positive&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+XRP news.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+213.&lt;/span&gt;
 
 Similarly, in September 2019, Rippleâ€™s â€œHead of Global Institutional Marketsâ€
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1637,45 +1888,44 @@&lt;/span&gt;
 recommended â€œbuy[ing] [XRP] backâ€ because she was very â€œworried about xrp at 0.20â€ and was
 â€œDREAD[ING]â€ an upcoming reportâ€”referring to quarterly reports Ripple began publishing in
 January 2017 (the â€œMarkets Reportsâ€)â€”if Ripple didnâ€™t â€œtake swift, creative action now (!)â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-189.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+214.&lt;/span&gt;
 
 Defendants did not disclose publicly this XRP buying and selling strategy.
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-190.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+215.&lt;/span&gt;
 
 But Ripple did publicly tout other actions it was taking to support XRPâ€™s market
 
 price, including to limit XRP supply or to create scarcity through XRP buybacks.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-191.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+216.&lt;/span&gt;
 
 For example, on January 4, 2017, in an effort to assuage XRP investor concerns,
 
 Ripple told Institutional Investor C that Ripple â€œonly sells or transfers XRP to financial institutions
 and accredited investors who bring payment volume and/or FX liquidity to Ripple.â€ Ripple made
 similar statements publicly, such as on its website, the â€œXRP Chat,â€ and certain Markets Reports.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-32&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 33 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-192.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+217.&lt;/span&gt;
 
 Similarly, in its Markets Report for the fourth quarter of 2017, Ripple told investors
 
 that it placed sales volume â€œrestrictionsâ€ on the XRP it sold directly to financial institutions to
 â€œmitigate the risk of market instability due to potential subsequent large sales.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-193.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+218.&lt;/span&gt;
 
 Later, in approximately June 2020, Ripple employees prepared and delivered an
 
 internal presentation for Garlinghouse and Larsen in which the employees highlighted that â€œXRP
 began underperforming [Bitcoin]â€ since early May 2020, partly because of Rippleâ€™s sales of XRP.
 The employees proposed â€œsupply limiting tactics,â€ such as Rippleâ€™s buying back XRP.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-194.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+219.&lt;/span&gt;
 
 Garlinghouse approved the â€œbuy backâ€ option.
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-195.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+38&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 39 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+220.&lt;/span&gt;
 
 Following Garlinghouseâ€™s decision, Ripple disclosed on November 5, 2020, in its
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1685,58 +1935,58 @@&lt;/span&gt;
 
 Defendants Established an XRP Escrow
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-196.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+221.&lt;/span&gt;
 
 XRP investors became concerned that Rippleâ€™s sales could cause XRPâ€™s price to
 
 crash. As Garlinghouse explained in an internal email on May 16, 2017, XRP investors were
 concerned that Ripple could â€œsell its [then] 61.68[ ]B[illion] XRP in the market at any time.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-197.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+222.&lt;/span&gt;
 
 If Ripple had filed a registration statement and quarterly and annual reportsâ€”as it
 
 would have been required to doâ€”Rippleâ€™s sales would have been publicly disclosed. They were not.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-198.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+223.&lt;/span&gt;
 
 To assuage investor concerns, on May 16, 2017, Ripple announced that it would
 
 place 55 billion XRP (most of its current holdings) into a cryptographically-secured escrow that
 would restrict Ripple to accessing only one billion XRP every month (the â€œXRP Escrowâ€).
&lt;span style=&quot;color: #cd0000;&quot;&gt;-199.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+224.&lt;/span&gt;
 
 Both Larsen and Garlinghouse were instrumental to the formation of the XRP
 
 Escrow by developing and, ultimately, approving the idea.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-200.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+225.&lt;/span&gt;
 
 An internal Ripple memo prepared by Ripple Agent-3 around April or May 2017 (the
 
 â€œProposal to Escrow Rippleâ€™s XRPâ€) explained that one purpose of the escrow was to â€œsecur[e]
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-33&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 34 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
 speculative liquidityâ€ in XRP and to â€œdrive a material increase in XRP trading volume/liquidityâ€ by
 removing uncertainty about when Ripple might dispose of its XRP holdings.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-201.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+226.&lt;/span&gt;
 
 The Proposal to Escrow Rippleâ€™s XRP noted that Ripple wanted â€œmore XRP
 
 liquidity and [that its] efforts are helping, [but] things are not moving as fast as [Ripple] want[s].â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-202.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+227.&lt;/span&gt;
 
 The Proposal to Escrow Rippleâ€™s XRP concluded that the XRP Escrow would be
 
 successful if it resulted in â€œimmediate increase in volume and price appreciationâ€ for XRP as one of
 the â€œ[r]ewardsâ€ to counter-balance the increased â€œ[r]iskâ€ of â€œCash flow shortfallâ€ for Ripple.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-203.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+39&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 40 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+228.&lt;/span&gt;
 
 Ripple and Garlinghouse publicly touted the formation of the XRP Escrow as proof
 
 that Ripple and XRP holders shared a common interest in the success of Rippleâ€™s efforts as to XRP
 and as one of Rippleâ€™s many efforts to manage the trading market for XRP.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-204.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+229.&lt;/span&gt;
 
 In other words, by announcing the XRP Escrow, Defendants sought to encourage
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1747,29 +1997,24 @@&lt;/span&gt;
 IV.
 
 XRP Was a Security Throughout the Offering
&lt;span style=&quot;color: #cd0000;&quot;&gt;-205.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+230.&lt;/span&gt;
 
 As noted, the Supreme Court made clear in its Howey decision of 1946 that the
 
 definition of whether an instrument is an investment contract and therefore a security is a â€œflexible
 rather than a static principle, one that is capable of adaptation to meet the countless and variable
 schemes devised by those who seek the use of the money of others on the promise of profits.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-206.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+231.&lt;/span&gt;
 
 At all relevant times during the Offering, XRP was an investment contract and
 
 therefore a security subject to the registration requirements of the federal securities laws.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-207.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+232.&lt;/span&gt;
 
 Defendants understood and acknowledged in non-public communications that the
 
 principal reason for anyone to buy XRP was to speculate on it as an investment.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-34&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 35 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-208.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+233.&lt;/span&gt;
 
 For example, Ripple Agent-3 stated in an internal document called the â€œXRP
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1778,57 +2023,62 @@&lt;/span&gt;
 you are holding xrp you should want [Ripple Labs] to retain xrp for business development.â€ Ripple
 acknowledged not only that XRP holders were speculating on Rippleâ€™s ability to deploy XRP to
 develop its business, but also that Rippleâ€™s interests aligned with other XRP holdersâ€™ interests.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-209.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Similarly, on December 7, 2015, Ripple requested that the issuer of a fund created to&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+40&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-generate investor exposure to XRP (through XRP Ripple sold to the fund), disclose the risk that&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-XRP could be deemed a security under the federal securities laws. Specifically, Ripple requested that&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-the following language be added to the risk disclosures for the fund:&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 41 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+234.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Similarly, on December 7, 2015, Ripple requested that the issuer of XRP Fund A&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+(which would generate investor exposure to XRP through XRP Ripple sold to the fund), disclose&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+the risk that XRP could be deemed a security under the federal securities laws. Specifically, Ripple&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+requested that the following language be added to the risk disclosures for XRP Fund A:&lt;/span&gt;
 The Ripple ecosystemâ€™s reliance on the efforts of Ripple Labs â€“ the single largest
 holder of XRP â€“ to promote and expand the ecosystem, creates greater risk that
 XRP might be deemed a security as compared to other virtual currencies and
 Ripple Labs might be deemed to be operating as an unregistered securities
 exchange, broker, or dealer under federal and State securities laws.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-210.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+235.&lt;/span&gt;
 
 Similarly, in its official application to the NYDFS for XRP II in 2016, Ripple
 
 acknowledged that buyers were â€œpurchasing XRP for speculative purposes.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-211.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+236.&lt;/span&gt;
 
 Later, in July 2019, a Ripple senior vice president emailed the CEO of the United
 
 States branch of a digital asset trading firm with which Ripple sought to make XRP available for
 trading. In his email, the Ripple executive explained: â€œThe primary use case for XRP today is
 speculative and the exchanges . . . are the main enabler of this use case.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-212.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+237.&lt;/span&gt;
 
 Sophisticated investors agreed. For example, a hedge fund, to which Ripple sold
 
 XRP, explained to the fundâ€™s investors this economic reality in offering materials from March 2015:
 â€œThe increase in XRP value is heavily dependent on the success of Ripple.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-213.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+238.&lt;/span&gt;
 
 Consistent with its privately-stated understanding, Ripple publicly offered and sold
 
 XRP as an investment into a common enterprise that included Rippleâ€™s promises to undertake
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-35&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 36 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
 significant entrepreneurial and managerial efforts, including to create a liquid market for XRP, which
 would in turn increase demand for XRP and therefore its price.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-214.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+239.&lt;/span&gt;
 
 Starting in at least 2013 and through the Offering, Defendants made statements
 
 promoting XRP as described in the preceding paragraph in a variety of publicly available media,
 including Twitter, YouTube, major financial news networks, industry conferences, the XRP Chat, an
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+41&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 42 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 online discussion forum and an informational posting about Ripple that it hosted on its website (but
 since deleted) called â€œRipple Forumâ€ and â€œRipple Wiki,â€ respectively, and the Markets Reports.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-215.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+240.&lt;/span&gt;
 
 In fact, throughout the Offering, Ripple held itself out as the primary source of
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1838,60 +2088,65 @@&lt;/span&gt;
 misinformationâ€ about Rippleâ€™s alleged â€œdumpingâ€ of XRP and to address the â€œfear, uncertainty,
 and doubtâ€ about investing in XRP spread by others. Ripple thus held itself out as the legitimate
 source of information essential for investors, inviting them to rely on what Ripple chose to disclose.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-216.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+241.&lt;/span&gt;
 
 Based on these representations, Rippleâ€™s actions, and the economic reality, XRP
 
 investors in the Offering had a reasonable expectation of profiting from Rippleâ€™s efforts to deploy
 investor funds to create a use for XRP and bring demand and value to their common enterprise.
&lt;span style=&quot;color: #00cd00;&quot;&gt;+242.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+At all relevant times, Garlinghouse and Larsen knew or recklessly disregarded that&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+XRP investors had a reasonable expectation of profiting from Rippleâ€™s efforts with respect to XRP.&lt;/span&gt;
 A.
 
 Ripple Led Investors to Reasonably Expect that Rippleâ€™s and Its Agentsâ€™
 Entrepreneurial and Managerial Efforts Would Drive the Success or Failure of
 Rippleâ€™s XRP Projects
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-217.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+243.&lt;/span&gt;
 
 Defendants repeatedly stated publicly that they would undertake significant efforts to
 
 develop and foster â€œusesâ€ for XRP, so that banks, financial intermediaries, or other specialized
&lt;span style=&quot;color: #cd0000;&quot;&gt;-money transmitting businesses would want to buy it, including as alleged above in Section II. (The&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-identity of the â€œusersâ€ to whom it would position XRP varied over the years as Ripple explored&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-different strategies.)&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-36&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 37 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-218.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+money transmitting businesses would want to buy it, including as alleged above in Sections II and&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+III. (The identity of the â€œusersâ€ to whom it would position XRP varied over the years as Ripple&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+explored different strategies.)&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+244.&lt;/span&gt;
 
 Defendants also persistently stated publicly thatâ€”partly to achieve the goal of
 
 widespread XRP tradingâ€”they would take steps to create, promote, and protect the market for
 trading in XRP, such as managing the manner in which Ripple bought and sold XRP, and by
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+42&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 43 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 persuading digital asset trading platforms to permit investors to buy and sell XRP. These statements
 led reasonable investors to expect to profit from Rippleâ€™s efforts on behalf of XRP.
 1.
 
 Defendants Promised to Undertake Significant Efforts to Build Value for XRP
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-219.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+245.&lt;/span&gt;
 
 From the outset of the Offering, Defendants publicly promised significant,
 
 meaningful entrepreneurial efforts with respect to XRP.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-220.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+246.&lt;/span&gt;
 
 In an April 14, 2014 interview published online, Larsen explained that Ripple was
 
 â€œhelping to build in the Ripple protocol . . . the idea of an Internet-for-value exchange,â€ and that
 Ripple saw â€œthis as a SWIFT 2.0,â€ referring to the established inter-bank payment network.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-221.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+247.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-In approximately April 2014, Ripple created â€œThe Ripple Protocol: A Deep Dive for&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+In approximately April 2014, Ripple created the 2014 Promotional Document, which&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Financial Professionalsâ€ (the â€œ2014 Promotional Documentâ€), which Ripple distributed publicly.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-222.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Ripple distributed publicly.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+248.&lt;/span&gt;
 
 In the 2014 Promotional Document, Ripple purported to examine the â€œSources of
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1901,25 +2156,24 @@&lt;/span&gt;
 unknown,â€ but predicted â€œincreased speculative interest, which may have significant impacts on
 price,â€ if the Ripple network became more well-known or used, in which case Ripple concluded that
 it â€œexpect[ed] the demand for XRP to be considerable.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-223.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+249.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-In the 2014 Promotional Document, Ripple held itself out the key party who would&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+In the 2014 Promotional Document, Ripple held itself out as the key party who&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-make these efforts with respect to XRP and the Ripple protocol, including by promising to&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+would make these efforts with respect to XRP and the Ripple protocol, including by promising to&lt;/span&gt;
 â€œdistribute [certain XRP] to incent the participation of market makers, gateways and consumers to
 utilize the protocol,â€ and highlighting Rippleâ€™s past â€œbusiness development efforts.â€ Ripple also
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-37&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 38 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
 noted that it had recruited a â€œdiverse set of talented individuals with experience in relevant
 technology and financial services companiesâ€ for these efforts and would enlist others to assist.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-224.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+250.&lt;/span&gt;
 
 Ripple repeated these types of promotional statements throughout the Offering.
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-225.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+43&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 44 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+251.&lt;/span&gt;
 
 On June 3, 2016, Cryptographer-1 explained in the XRP Chat, in response to the
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1927,7 +2181,7 @@&lt;/span&gt;
 us, though itâ€™s possible.â€ But, he continued, while â€œthere are significant technical obstacles to using
 XRP as a bridge or vehicle currency[,] . . . [o]ur XRP strategy is based on promoting it as a bridging
 currency . . . through various strategies including paying traders an incentive.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-226.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+252.&lt;/span&gt;
 
 On January 21, 2017, Cryptographer-1 represented in the XRP Chat that Ripple was
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1935,7 +2189,7 @@&lt;/span&gt;
 â€œseveral strategiesâ€ to do so. Months later, on September 12, 2017, he posted on Reddit that Ripple
 had previously explained that it â€œwill work to get XRP adopted for th[e] purposeâ€ of serving as a
 â€œnew intermediary assetâ€ and noted â€œwhy that would be expected to create demand for XRP.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-227.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+253.&lt;/span&gt;
 
 In an email to Rippleâ€™s equity shareholders, advisors, and others on June 5, 2017,
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1955,25 +2209,25 @@&lt;/span&gt;
 approximately 500 percent in the last 30 days and over 5,000 percent from
 the beginning of 2017! . . . In fact, factoring in the approx. $18 billion of XRP
 we own, Ripple is worth more than all but four US start-ups.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-38&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 39 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-228.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+254.&lt;/span&gt;
 
 In the same email, Garlinghouse reminded Rippleâ€™s equity investors and advisors that
 
 Ripple remained â€œcommitted to making XRP the best digital asset for paymentsâ€ and that XRP had
 â€œtechnical superiority compared to other digital assets.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-229.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+44&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 45 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+255.&lt;/span&gt;
 
 Garlinghouse had made statements similar to these in an article posted on Rippleâ€™s
 
 website on May 16, 2017. A few months later, in a December 7, 2017 post on its website, Ripple,
 confirming the formation of the XRP Escrow, once more reiterated Garlinghouseâ€™s statements in
 the May 16, 2017 article and the June 5, 2017 email, described above.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-230.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+256.&lt;/span&gt;
 
 In a December 14, 2017 public interview, Garlinghouse explained Rippleâ€™s market
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1981,7 +2235,7 @@&lt;/span&gt;
 say, is XRP liquidity. Making sure . . . we are doing everything we can to make the XRP ecosystem
 successful on a liquidity basis. Priority three which admittedly is kind of a newer priority and
 something weâ€™ll work on more in 2018, is investing in other use cases for the XRP Ledger.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-231.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+257.&lt;/span&gt;
 
 In the Markets Report for the fourth quarter of 2017, Ripple stated that â€œitâ€™s clear
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -1989,40 +2243,40 @@&lt;/span&gt;
 continues to seriously consider [XRP] as an alternate liquidity solution.â€ A Ripple executive
 similarly explained his view in a Yahoo! Finance interview on approximately March 15, 2018, that
 â€œthe activities of the software company create value in . . . [XRP].â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-232.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+258.&lt;/span&gt;
 
 Also in the Markets Report for the fourth quarter of 2017, Ripple announced its
 
 upcoming intended efforts to â€œwork towards the launch of institutional hedging instruments and
 custody solutions,â€ which â€œare important to institutional adoption [i.e., key forces in achieving
 liquidity and price increases] and thus are important components of our 2018 roadmap.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-233.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+259.&lt;/span&gt;
 
 On September 11, 2017, Cryptographer-1 told public markets via a post on Reddit
 
 that, because â€œRipple holds more than half the XRP in existence[,] . . . Ripple can justify spending
 $100 million dollars on something if it would be expected to increase the long term price of XRP by
&lt;span style=&quot;color: #00cd00;&quot;&gt;+a penny.â€ Then, on November 17, 2017, he posted on Reddit about why Ripple had an incentive to&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+continue these efforts and why it would continue these efforts: â€œ[T]here is no rational reason why&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-39&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+45&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 40 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 46 of 79&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-a penny.â€ Then, on November 17, 2017, he posted on Reddit about why Ripple had an incentive to&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-continue these efforts and why it would continue these efforts: â€œ[T]here is no rational reason why&lt;/span&gt;
 [Ripple] would not continue to execute [its] publicly announced strategy and do everything we can to
 maximize the price of XRP over at least the time it takes us to sell the XRP we have.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-234.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+260.&lt;/span&gt;
 
 On January 17, 2018, Garlinghouse tweeted an article he said was â€œ[a] good read on
 
 why fostering a healthy $XRP ecosystem is a top priority at @Ripple.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-235.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+261.&lt;/span&gt;
 
 On February 17, 2020, Garlinghouse tied Rippleâ€™s efforts to create â€œuseâ€-driven
 
 demand for XRP to a potential for an increase in XRP price, in an interview on the floor of the New
 York Stock Exchange in Manhattan (the â€œNYSE Interviewâ€).
&lt;span style=&quot;color: #cd0000;&quot;&gt;-236.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+262.&lt;/span&gt;
 
 In the NYSE Interview, Garlinghouse answered questions about the price of digital
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2037,12 +2291,12 @@&lt;/span&gt;
 Defendants Promised to Undertake Significant Efforts to Develop and Maintain a Public Market
 for XRP Investors to Resell XRP
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-237.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+263.&lt;/span&gt;
 
 Starting in at least 2014, Ripple also promised that it would undertake efforts to
 
 create, maintain, and protect secondary resale markets for XRP.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-238.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+264.&lt;/span&gt;
 
 For example, starting in 2014, Ripple stated on its website: â€œ[W]e will engage in
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2050,19 +2304,19 @@&lt;/span&gt;
 against other currencies.â€ Years later, in announcing the XRP Escrow, Ripple reminded investors
 that it â€œengaged in distribution strategies that we expect will result in a strengthening XRP exchange
 rate against other currencies,â€ touting its â€œproven [four-year] track record of doing just that.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-40&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 41 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-239.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+265.&lt;/span&gt;
 
 In a February 19, 2014 public interview, Larsen explained that one of Rippleâ€™s â€œkey
 
 roles is making sure that we distribute [XRP] as broadly in a way that adds as much utility and
&lt;span style=&quot;color: #00cd00;&quot;&gt;+46&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 47 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 liquidity as we possibly can.â€ He stated that he thought â€œour incentives are very well aligned . . . that
 for Ripple Labs to do well we have to do a very good job in protecting the value of XRP and the
 value of the network, and that really is the guiding principle here in our distribution of XRP.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-240.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+266.&lt;/span&gt;
 
 In a May 16, 2017 article on Rippleâ€™s website, Garlinghouse reminded investors that,
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2070,46 +2324,46 @@&lt;/span&gt;
 goal in distributing XRP is to incentivize actions that build trust, utility and liquidity.â€ He concluded
 that, to incentivize financial institutions, payment providers, and banks to â€œuseâ€ XRP (though none
 had up to that point), Ripple â€œremain[ed] committed to increasing XRP liquidity.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-241.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+267.&lt;/span&gt;
 
 In the Markets Report for the second quarter of 2019, Ripple promised to â€œfocus
 
 institutional sales on markets where the on-exchange liquidity for XRP is insufficient to meet
 institutional demand,â€ which the report said was similar to what the company had done in 2017,
 purportedly leading to increased liquidity and â€œlistingsâ€ on digital asset trading platforms in general.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-242.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+268.&lt;/span&gt;
 
 In the Markets Report for the second quarter of 2020, Ripple explained that, as part
 
 of its â€œresponsible role in the [XRP] liquidity process,â€ it had begun purchasing XRP in the
 secondary market to ensure a â€œhealthy, orderly XRP market.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-243.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+269.&lt;/span&gt;
 
 Defendants engaged in many of these publicly-promised efforts with respect to XRP
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-markets, as alleged in Section III, above.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+markets, as alleged in Sections II and III, above.&lt;/span&gt;
 3.
 
 Ripple Touted the Ability of Its Team to Succeed in Its Promised Efforts
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-244.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+270.&lt;/span&gt;
 
 In connection with the efforts Defendants promised the markets they would
 
 undertake, Ripple at times highlighted the experience, expertise, and abilities of the â€œteamâ€ it had
 assembled, which included Ripple employees, business partners, and other agents.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-41&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 42 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-245.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+271.&lt;/span&gt;
 
 In 2013, Ripple Agent-1 explained in the Ripple Forum that Rippleâ€™s fundraising
 
 efforts through selling XRP â€œallows Ripple Labs to have a spectacularly skilled team to develop and
 promote the Ripple protocol and network.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-246.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+47&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 48 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+272.&lt;/span&gt;
 
 In a Reddit post in 2017, Cryptographer-1 was asked to explain if there was a risk
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2121,13 +2375,13 @@&lt;/span&gt;
 
 Ripple Publicly Touted the Efforts That It Did Actually Undertake
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-247.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+273.&lt;/span&gt;
 
 During the Offering, not only did Ripple promise efforts that could lead to the
 
 increase in value of XRP, it actually made and touted extensive entrepreneurial and managerial
 effortsâ€”made with proceeds from the Offeringâ€”to the market.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-248.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+274.&lt;/span&gt;
 
 In its 2016 â€œYear In Reviewâ€ summary, posted on its website on December 28,
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2137,32 +2391,32 @@&lt;/span&gt;
 had not sold a single XRP to any â€œuser,â€ Ripple commented that â€œ[g]ood news for XRP kept
 coming later in the springâ€ with the announcement of a partnership with a facility to trade in XRP
 derivatives.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-249.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+275.&lt;/span&gt;
 
 In the first Markets Report, published on January 24, 2017, Ripple touted its
 
 announcement of XRP investorsâ€™ ability to buy and sell XRP on a new digital asset trading platform
 as â€œpart of a continued effort to expand the XRP ecosystem.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-250.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+276.&lt;/span&gt;
 
 On February 15, 2017, Ripple Agent-2 tweeted a link to an article, posted on a digital
 
 asset discussion blog, about Rippleâ€™s efforts to enlist companies to assist in its managerial efforts as
&lt;span style=&quot;color: #00cd00;&quot;&gt;+to XRP. The article discussed Rippleâ€™s efforts to select a partner to help it build â€œfunctionality for&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+XRPâ€ and directed readers to Rippleâ€™s website on â€œHow to Buy XRP.â€&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-42&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+48&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 43 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 49 of 79&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-to XRP. The article discussed Rippleâ€™s efforts to select a partner to help it build â€œfunctionality for&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-XRPâ€ and directed readers to Rippleâ€™s website on â€œHow to Buy XRP.â€&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-251.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+277.&lt;/span&gt;
 
 As alleged above in Sections III and IV.A.1, Ripple and Garlinghouse made many
 
 statements in connection with the announcement of the XRP Escrow, reminding investors that
 Ripple had been a good â€œstewardâ€ of XRP, purportedly based on the ways Ripple had chosen to
 make its own market sales of XRP.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-252.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+278.&lt;/span&gt;
 
 In an interview on Bloomberg News Network (â€œBloomberg Newsâ€) in
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2176,7 +2430,7 @@&lt;/span&gt;
 really reduce the friction, and weâ€™re talking about a multi-trillion dollar problem
 . . . yes, thereâ€™s going to be demand for that, when you have fixed supply . . .
 and you see increase in demand, prices go up.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-253.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+279.&lt;/span&gt;
 
 In a CNBC interview on March 7, 2018, Garlinghouse reminded investors that
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2184,7 +2438,7 @@&lt;/span&gt;
 own a lot of XRP.â€ Thus, he continued, Ripple had â€œinvested in venture funds . . . in hedge funds
 . . . in companies, [and] . . . partnered with payment providers [and] . . . market makers, in order to
 make sure that XRP is the most useful asset out there for solving a cross border payment problem.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-254.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+280.&lt;/span&gt;
 
 On April 11, 2018, Ripple tweeted from the handle @Ripple that it â€œhad invested
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2192,11 +2446,12 @@&lt;/span&gt;
 use cases beyond payments.â€ Ripple Agent-3 similarly tweeted: â€œRippleâ€™s $25 million investment in
 @blockchaincapâ€™s new fund is the first and not the last contribution to ventures that further develop
 the #blockchain and $XRP ecosystems.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-43&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 44 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+49&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-255.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 50 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+281.&lt;/span&gt;
 
 At various times, Ripple publicly touted that it was making certain of the XRP
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2207,7 +2462,7 @@&lt;/span&gt;
 Economic Reality Dictates that XRP Purchasers Have No Choice But to Rely on Rippleâ€™s Efforts
 for the Success or Failure of Their Investment
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-256.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+282.&lt;/span&gt;
 
 Economic reality has also led reasonable investors to expect that Ripple and its
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2215,25 +2470,26 @@&lt;/span&gt;
 accordingly understanding that Ripple has the economic incentive and capacity to undertake efforts
 to promote XRP and the XRP Ledger, which would serve Rippleâ€™s economic interest and that of all
 XRP owners equally.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-257.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+283.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Indeed, the XRP market capitalization as of last week (approximately $58 billion) and&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Indeed, the XRP market capitalization as of December 2020 (approximately $58&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-the value of Rippleâ€™s XRP holdings (approximately $28 billion) each far exceed the value of the one&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-productâ€”ODLâ€”that â€œusesâ€ XRP (which â€œuseâ€ is not market-driven, but subsidized by Ripple).&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-258.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+billion) and the value of Rippleâ€™s XRP then holdings (approximately $28 billion) each far exceeded&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+the value of the one productâ€”ODLâ€”that â€œusesâ€ XRP (which â€œuseâ€ is not market-driven, but&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+subsidized by Ripple).&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+284.&lt;/span&gt;
 
 The economic reality is that reasonable investors are speculating that Ripple has the
 
 incentive and potential to create demand for XRP. XRP investors are betting that Ripple may yet
 solve Garlinghouseâ€™s â€œtrillion-dollar problem,â€ and they will profit as a result.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-259.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+285.&lt;/span&gt;
 
 In contrast to Ripple, investors in XRP cannot take most or any of the steps that
 
 Ripple has taken to grow the XRP ecosystem and increase demand for XRP. Most, if not all, XRP
 investors simply lack the technical expertise and the resources to do so.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-260.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+286.&lt;/span&gt;
 
 XRP investors are not in any position to, for example, undertake various, complex,
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2241,25 +2497,24 @@&lt;/span&gt;
 protect XRPâ€™s price, volume, and liquidityâ€”as Ripple has done in a purported attempt to foster
 adoption of XRP. Nor are XRP investors in any position to increase significantly â€œdemandâ€ or
 â€œvalueâ€ for XRP by developing a â€œuseâ€ for the token through entrepreneurial effortsâ€”at least not
&lt;span style=&quot;color: #00cd00;&quot;&gt;+50&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-44&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 45 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 51 of 79&lt;/span&gt;
 
 without Rippleâ€™s support. In other words, not only are Rippleâ€™s touted efforts with respect to XRP
 significant, they are essential to the success or failure of the enterprise.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-261.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+287.&lt;/span&gt;
 
 Investors in XRP do not exercise any control or authority over how Offering
 
 proceeds have been or will be spent. Ripple possesses sole discretion to decide how to do so.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-262.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+288.&lt;/span&gt;
 
 Because certain Ripple executives publicize that they hold XRP, and some (including
 
 Garlinghouse) state that they hold it as an investment, it is reasonable for a holder of XRP to expect
 these individuals to undertake efforts to increase the value and price of XRP.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-263.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+289.&lt;/span&gt;
 
 Defendantsâ€™ statements and actions and the economic reality of Rippleâ€™s relationship
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2270,96 +2525,97 @@&lt;/span&gt;
 
 Purchasers of XRP Invested into a Common Enterprise
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-264.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+290.&lt;/span&gt;
 
 Investors who purchased XRP in the Offering invested into a common enterprise
 
 with other XRP purchasers, as well as with Ripple.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-265.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+291.&lt;/span&gt;
 
 Because XRP is fungible, the fortunes of XRP purchasers were and are tied to one
 
 another, and each depend on the success of Rippleâ€™s XRP Strategy. In other words, Rippleâ€™s success
 or failure in propelling trading of XRP drives demand for XRP, which will dictate investorsâ€™ profits
 (recognized in increased prices at which they could sell XRP) or losses.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-266.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+292.&lt;/span&gt;
 
 XRP investors stand to profit equally if XRPâ€™s popularity and price increase, and no
 
 investor will be entitled to a higher proportion of price increases. In other words, the price of XRP
 rises and falls for XRP investors together and equally for all investors.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-267.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+293.&lt;/span&gt;
 
 Moreover, Ripple pooled the funds it raised in the Offering and used them to fund
 
 its operations, including to finance building out potential â€œuseâ€ cases for XRP, paying others to
 assist it in developing a â€œuseâ€ case, constructing the digital platform it promoted, and compensating
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-45&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+51&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 46 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 52 of 79&lt;/span&gt;
 
 executives recruited for these purposes. Ripple did not segregate or separately manage proceeds
&lt;span style=&quot;color: #cd0000;&quot;&gt;-from different XRP purchasers in the Offering. The nature of XRP itself made it the common&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-thread among Ripple, its management, and all other XRP holders.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-268.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+from different XRP purchasers in the Offering, which Garlinghouse and Larsen knew or recklessly&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+disregarded at all relevant times. The nature of XRP itself made it the common thread among&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Ripple, its management, and all other XRP holders.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+294.&lt;/span&gt;
 
 Defendants recognized and repeatedly emphasized these common interests to
 
 prospective investors, including by explaining to the market that Ripple used proceeds from XRP
 sales to fund its operations and that Ripple wanted XRP to succeed.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-269.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+295.&lt;/span&gt;
 
 For example, from the outset of Rippleâ€™s operations, Ripple Agent-1 and
 
 Cryptographer-1 made publicly clear that Ripple would sell XRP to raise funds for one common
 enterprise: to fund its operations, as described below.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-270.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+296.&lt;/span&gt;
 
 On March 10, 2013, Cryptographer-1 explained in the Ripple Forum on Rippleâ€™s
 
 website that Rippleâ€™s â€œsource of revenue is the sale of XRP.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-271.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+297.&lt;/span&gt;
 
 A few months later, on August 28, 2013, Ripple Agent-1 echoed that sentiment,
 
 stating that Ripple â€œwholesales XRP to fund operations.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-272.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+298.&lt;/span&gt;
 
 On September 2, 2013, Ripple Agent-1 again noted on the Ripple Forum that Ripple
 
 â€œis funded by investments and the sale of XRP.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-273.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+299.&lt;/span&gt;
 
 Similarly, the next year, in its 2014 Promotional Document, Ripple explained its
 
 â€œplans to retain 25% of all XRP issued to fund operations (and hopefully turn a profit).â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-274.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+300.&lt;/span&gt;
 
 This public disclosure echoed Larsenâ€™s explanation, in an online interview dated
 
 April 14, 2014, that Ripple was â€œkeeping 25% of . . . XRP . . . to cover the bills.â€ When asked about
 Rippleâ€™s business model, Larsen reminded readers that Ripple was â€œkeeping 25% of those XRP, and
 using the rest of it to incent market makers, gateways, consumers to come onto the protocol.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-275.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-From at least 2014 through at least 2017, Ripple made a similar representation in the&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+52&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Ripple Wiki: â€œRipple Labs sells XRP to fund its operations and promote the network. This allows&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Ripple Labs to have a spectacularly skilled team to develope [sic] and promote the Ripple protocol.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 53 of 79&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-46&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+301.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 47 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+From at least 2014 through at least 2017, Ripple made a similar representation in the&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-276.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Ripple Wiki: â€œRipple Labs sells XRP to fund its operations and promote the network. This allows&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Ripple Labs to have a spectacularly skilled team to develope [sic] and promote the Ripple protocol.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+302.&lt;/span&gt;
 
 Ripple also made clear that the common interest was not just any interest, but a
 
 specific interest in XRPâ€™s price increasing, as Rippleâ€™s (significant) XRP holdings were essentially its
 only asset. For example, in his Ripple Forum post from September 2013, Ripple Agent-1 stated that
 Rippleâ€™s â€œbusiness model is to hold XRP in the hope that it will have value.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-277.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+303.&lt;/span&gt;
 
 At times, Ripple used the terms â€œvalueâ€ and â€œpriceâ€ interchangeably. In one early
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2370,55 +2626,55 @@&lt;/span&gt;
 or something you care about as a primary driver of business.â€ Garlinghouse said: â€œ[A] healthy
 $XRP market and healthy $XRP ecosystem is CRITICALLY important to me. And it is indeed a
 primary driver. Long-term price will reflect success driving institutional use of $XRP.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-278.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+304.&lt;/span&gt;
 
 In 2014, the Promotional Document explained Rippleâ€™s view that, â€œas demand for
 
 XRP grows, the value of XRP should appreciateâ€ and that, therefore, â€œRipple Labs believes that its
 incentives are aligned with those of protocolâ€™s users.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-279.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+305.&lt;/span&gt;
 
 Cryptographer-1 has repeatedly and publicly expressed that Rippleâ€™s incentives are
 
 aligned with other XRP holdersâ€™â€”specifically, as to increasing Rippleâ€™s priceâ€”because Ripple
 â€œholds a huge pile of XRP,â€ including in a statement he made on XRP Chat on May 25, 2017.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-280.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+306.&lt;/span&gt;
 
 Garlinghouse in particular frequently encouraged investors to view their economic
 
 interests as aligned with Rippleâ€™s.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-281.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+53&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 54 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+307.&lt;/span&gt;
 
 As alleged above, on January 17, 2018, Garlinghouse tweeted an article discussing
 
 Rippleâ€™s remaining supply of XRP. Garlinghouseâ€™s tweet noted that Ripple was not selling all of its
 remaining XRP supply, and that the article was â€œ[a] good read on why fostering a healthy $XRP
 ecosystem is a top priority at @Ripple.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-47&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 48 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-282.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+308.&lt;/span&gt;
 
 The following month, in an interview on February 11, 2018, Garlinghouse
 
 acknowledged: â€œRipple the company, as the owner of 61% of the tokens today, is the most
 interested party in the success of the XRP ecosystem.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-283.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+309.&lt;/span&gt;
 
 Similarly, on March 7, 2018 in a CNBC interview, Garlinghouse stated: â€œThereâ€™s no
 
 party more interested in the success of the XRP ecosystem than Ripple. We want that to be
 massively successful because we own a lot of XRP.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-284.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+310.&lt;/span&gt;
 
 Garlinghouse publicly reiterated sentiments similar to these on March 7, 2018 in an
 
 interview with the Financial Times and again on August 13, 2020 in an interview with a major
 financial publication, where he said: â€œWe are a capitalist, we own a lot of XRP. So do I care about
 the overall XRP market? 100 per cent.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-285.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+311.&lt;/span&gt;
 
 On October 8, 2019 in a speech at the Economic Club of New York in Manhattan
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2426,29 +2682,29 @@&lt;/span&gt;
 XRP. So clearly weâ€™re very interested in the health and success of that [XRP] ecosystem.â€ Asked
 about Rippleâ€™s â€œrevenue model,â€ he explained that while Ripple has software it sells, â€œit owns a lot
 of this digital assetâ€ and that â€œ[a]nything we do that is good for that digital asset is good for us.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-286.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+312.&lt;/span&gt;
 
 Currently, Ripple continues to make clear on its website that it holds at least 54
 
 billion XRP, making it by far the largest single holder of the asset.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-287.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+313.&lt;/span&gt;
 
 The Legal Memos focused on this very factâ€”the existence of an identifiable actor
 
 who held itself out as responsible for making efforts with respect to XRPâ€”in distinguishing XRP
 from bitcoin for purposes of the federal securities laws. The Legal Memos noted that, unlike with
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+54&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 55 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 bitcoin, there was â€œa specific entity,â€ Ripple, â€œwhich is responsible for the distribution of [XRP] and
 the promotion and marketing functions of the Ripple Network.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-288.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+314.&lt;/span&gt;
 
 At least one Ripple equity shareholder (â€œEquity Investor Aâ€), a sophisticated
 
 investor, understood this distinction. In an internal email on April 26, 2018, an Equity Investor A
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-48&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 49 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
 employee wondered whether the XRP Ledger was subject to a â€œ51% attackâ€ (a threat to the status
 of the digital ledger), as he perceived the bitcoin blockchain to be. He concluded that it was â€œmore
 of a longer-term question given the current incentives of the stake holders,â€ meaning that Ripple
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2459,7 +2715,7 @@&lt;/span&gt;
 Ripple Led Investors to Reasonably Expect a Profit from Their Investment
 Derived from Defendantsâ€™ Efforts
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-289.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+315.&lt;/span&gt;
 
 Ripple also led investors to reasonably expect that they could reap a profit from their
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2468,7 +2724,7 @@&lt;/span&gt;
 XRP; assuring investors that Ripple would take steps to protect the market for XRP, including by
 fostering a readily available XRP trading market; highlighting XRP price increases and at times tying
 them to Rippleâ€™s efforts; and selling XRP to certain institutional investors at discounted prices.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-290.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+316.&lt;/span&gt;
 
 Ripple made many of these statements in the Markets Reports, which typically
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2479,31 +2735,31 @@&lt;/span&gt;
 Defendantsâ€™ Publicly Stated Goal Was to Increase â€œDemandâ€ for XRP Through Their
 Entrepreneurial and Managerial Efforts
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-291.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+317.&lt;/span&gt;
 
 Throughout the Offering, as alleged in Section IV.A.1, above, Defendants repeatedly
 
 told investors that Rippleâ€™s XRP-related efforts were meant to spur â€œdemandâ€ for XRP. Ripple at
 times even explicitly tied the hope for an increase in demand to what any reasonable investor would
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+55&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 56 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 understand an increase in demand to entail: an increase in XRPâ€™s market price.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-292.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+318.&lt;/span&gt;
 
 Ripple made other such statements encouraging investors to expect to profit from
 
 Rippleâ€™s efforts to create institutional demand for XRP. For example, in response to questions
 about XRPâ€™s declining market price during a March 14, 2018 interview, Garlinghouse explained that,
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-49&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 50 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
 if Ripple was â€œsuccessful in building out the project of xCurrent and expanding the number of users
 around xRapid, the price of XRP will take care of itself over a 3 to 5 year period.â€
 2.
 
 Ripple and Garlinghouse Assured Investors Ripple Would Protect the Trading Markets for XRP
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-293.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+319.&lt;/span&gt;
 
 Ripple executives confirmed in internal emails that one of Rippleâ€™s goals in
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2511,7 +2767,7 @@&lt;/span&gt;
 Markets Updateâ€ to certain Ripple executives, Ripple Agent-2 noted that â€œXRP activity in the last
 few days has been impressive, to say the least,â€ and that this activity â€œseems to be driven by
 speculation around the lockupâ€; and highlighted the 50% â€œrall[y]â€ in XRPâ€™s price after Ripple Agent2 publicly mentioned the possibility of the XRP Escrow for the first time.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-294.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+320.&lt;/span&gt;
 
 Ripple sought to assure investors that they could trust Ripple to protect the XRP
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2525,34 +2781,34 @@&lt;/span&gt;
 
 Ripple and Garlinghouse Touted Investorsâ€™ Ability to Easily Buy and Sell XRP
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-295.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+321.&lt;/span&gt;
 
 Related to Rippleâ€™s touting of its efforts to protect the trading markets for XRP,
 
 Ripple touted the ability of investors to buy and sell XRP on digital asset trading platforms (none of
 which had anything to do with â€œusingâ€ XRP in any way other than as a speculative vehicle).
&lt;span style=&quot;color: #cd0000;&quot;&gt;-296.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Ripple undertook extensive effortsâ€”starting in at least late 2015â€”to persuade digital&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+56&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-asset trading companies to permit investors to buy and sell XRP on their platforms, especially those&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-that would make XRP tradable against the USD, as alleged in Section III.B.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 57 of 79&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-50&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+322.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 51 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Ripple undertook extensive effortsâ€”starting in at least late 2015â€”to persuade digital&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-297.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+asset trading companies to permit investors to buy and sell XRP on their platforms, especially those&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+that would make XRP tradable against the USD, as alleged in Section II.E.5 above.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+323.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-On May 18, 2017, Ripple Agent-3 tweeted: â€œKraken [a digital asset trading platform]&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+On May 18, 2017, Ripple Agent-3 tweeted that â€œ[Platform B] [i]ntroduces New Fiat&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Introduces New Fiat Pairs for XRP Trading! USD, JPY, CAD, EUR @Ripple.â€&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-298.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Pairs for XRP Trading! USD, JPY, CAD, EUR @Ripple.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+324.&lt;/span&gt;
 
 In the Markets Report for the first quarter of 2017 Ripple touted another platformâ€™s
 
 â€œsuccessful launch of XRP for USD, EUR, and BTC currency pairsâ€ as a â€œbright spotâ€ for XRP.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-299.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+325.&lt;/span&gt;
 
 In a follow-up to his June 5, 2017 email described above, Garlinghouse
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2562,7 +2818,7 @@&lt;/span&gt;
 Garlinghouse responded, among other things, that â€œfor XRP more specifically,â€ Ripple
 â€œannouncements about new exchanges listing XRP . . . continues to create tailwinds,â€ and that
 Ripple would continue making these efforts, â€œwhich should hopefully drive some tailwinds.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-300.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+326.&lt;/span&gt;
 
 On December 14, 2017, Garlinghouse stated on Rippleâ€™s YouTube Channel: â€œToday
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2570,60 +2826,60 @@&lt;/span&gt;
 exchanges that are reputable and regulated in those appropriate markets. So it is a very high priority
 for us to be listed more broadly but you know weâ€™re going to continue working on that with
 partners around the globe.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-301.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+327.&lt;/span&gt;
 
 Ripple itself publicly noted the importance of XRP being traded on digital asset
 
 trading platforms. In articles published on its website on December 21, 2017 and January 18, 2018,
 Ripple noted: â€œ[I]tâ€™s a top priority for Ripple to have XRP listed on top digital asset exchanges. . . .
 Ripple has dedicated resources to the initiatives so you can expect ongoing progress.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-302.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+328.&lt;/span&gt;
 
 That day, Ripple also tweeted about â€œXRP Available on 50+ Exchanges.â€
 
&lt;span style=&quot;color: #00cd00;&quot;&gt;+57&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 58 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 4.
 
 Ripple and Garlinghouse Touted XRP as an Investment, Including by Highlighting XRP Price
 Increases
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-303.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+329.&lt;/span&gt;
 
 Ripple and Garlinghouse also encouraged reasonable investors to view the purchase
 
 of XRP as something from which they could profit by persistently touting increases in XRPâ€™s price.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-51&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 52 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-304.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+330.&lt;/span&gt;
 
 In a January 18, 2017 email, Garlinghouse told an XRP investor that â€œXRP had a
 
 good year in 2016â€”with significant increases in price and volumeâ€”which in turn has increased
 investor interest.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-305.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+331.&lt;/span&gt;
 
 On March 24, 2017, Ripple tweeted: â€œThe price of #XRP continues to surge
 
 showing that people are looking for #bitcoin alternatives.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-306.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+332.&lt;/span&gt;
 
 On May 3, 2017, Ripple tweeted: â€œ#Ripple adoption is sparking interest in XRP
 
 â€˜which has had an impressive rally in the last two monthsâ€™ via @Nasdaq.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-307.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+333.&lt;/span&gt;
 
 Two days later, on May 5, 2017, Cryptographer-1 tweeted, along with a picture of
 
 champagne, that he â€œfinally got to drink the champagne [he was] reserving for #XRP at $0.10.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-308.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+334.&lt;/span&gt;
 
 On June 29, 2017, Ripple tweeted a clip of an interview Garlinghouse gave on
 
 CNBC with the caption: â€œ#XRP â€“ up 4000% this year â€“ has shown the market favors a real use
 case for #digitalassets.â€ Garlinghouse also predicted that â€œdigital assets broadly are in a position to
 be more useful than gold as a value transferâ€ and described XRP as â€œsolving a real-world use case.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-309.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+335.&lt;/span&gt;
 
 In the Markets Report for the third quarter of 2017, published October 19, 2017,
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2631,43 +2887,42 @@&lt;/span&gt;
 meaningful spike in XRPâ€ and that this rise in price lacked any â€œcorresponding rally in [bitcoin] and
 [the digital asset referred to as ETH],â€ noting that XRPâ€™s price was â€œat times overwhelmingly
 independentâ€ from that of bitcoin and ETH.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-310.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+336.&lt;/span&gt;
 
 On December 7, 2017, when the XRP Escrow began, Ripple tweeted: â€œ55B $XRP is
 
 now in escrow. Interested in what this means for $XRP markets?â€ Garlinghouse similarly tweeted:
 â€œBoom! 55B $XRP now in escrow. Good for supply predictability and trusted, healthy $XRP
&lt;span style=&quot;color: #00cd00;&quot;&gt;+58&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 59 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 markets. Glad to finally let this #cryptokitty out of the bag!â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-311.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+337.&lt;/span&gt;
 
 A week later, on December 12, 2017, Garlinghouse retweeted Institutional Investor
 
 Câ€™s tweet: â€œWow, XRP at all time high! Forget bitcoin, weâ€™re all in on XRP!â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-52&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 53 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-312.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+338.&lt;/span&gt;
 
 Later that month, on December 22, 2017, Garlinghouse tweeted an article discussing
 
 how â€œRipple Soars at Year End,â€ with the caption â€œIâ€™ll let the headline speak for itself. $xrp.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-313.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+339.&lt;/span&gt;
 
 Ripple did not limit its touting of XRP purchases as a potential means for investors
 
 to profit only to increases in XRP prices in the abstract. Frequently, Ripple explicitly tied actual or
 potential XRP investment returns to Rippleâ€™s completed or upcoming effortsâ€”both with respect to
 developing demand for XRP and to protecting the XRP markets themselves.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-314.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+340.&lt;/span&gt;
 
 In connection with a significant rise in the price of XRP on March 23, 2017, Ripple
 
 explained in the Markets Report for the first quarter of 2017 that â€œkey [Ripple] developments may
 have had an impact[,]â€ including statements by Ripple â€œabout its commitment to XRP and the
 Ripple Consensus Ledger (RCL) as part of its long-term strategy.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-315.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+341.&lt;/span&gt;
 
 In the Markets Report for the second quarter of 2017, Ripple noted that various
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2676,7 +2931,7 @@&lt;/span&gt;
 in the following quarter. Ripple also stated that â€œ[t]here were a number of significant
 announcements and events which clearly contributed to XRPâ€™s incredible second quarter,â€ reflected
 by a â€œstunning QoQ [price] increase of 1[,]159%â€ and â€œYTD [year to date] growth of 3[,]977%.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-316.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+342.&lt;/span&gt;
 
 Garlinghouse himself was a particularly persistent spokesperson for Rippleâ€™s efforts
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2684,19 +2939,19 @@&lt;/span&gt;
 millions of XRP, Garlinghouse frequently told investors that he was invested in XRP, and that he
 was bullish on the investment. Throughout the Offering and as XRPâ€™s price fluctuated, he also
 encouraged investors to be patient and look at the price of XRP on a longer time horizon.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-317.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-For example, in the June 5, 2017 email described above, Garlinghouse noted that&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+59&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Rippleâ€™s efforts to develop uses for XRP and the XRP Escrow had â€œtranslated into significant&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 60 of 79&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-53&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+343.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 54 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+For example, in the June 5, 2017 email described above, Garlinghouse noted that&lt;/span&gt;
 
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Rippleâ€™s efforts to develop uses for XRP and the XRP Escrow had â€œtranslated into significant&lt;/span&gt;
 improvements in both the liquidity (trading volume) and price of XRP,â€ which was â€œup
 approximately 500 percent in the last 30 days and over 5,000 percent from the beginning of 2017!â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-318.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+344.&lt;/span&gt;
 
 In a follow-up to that email, an individual asked Garlinghouse to explain â€œwhat
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2705,12 +2960,12 @@&lt;/span&gt;
 . . . as Ripple has done well in announcing customers â€“ that has driven market interest in buying
 XRP as a speculative investment.â€ He then gave examples of such Ripple announcements that were
 â€œcatalysts to this market rallyâ€ or that â€œfurthered the rally.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-319.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+345.&lt;/span&gt;
 
 Later, in a September 11, 2017 interview on CNBC, Garlinghouse noted Rippleâ€™s
 
 supposed success as a company and stated: â€œI think thatâ€™s increased the value of XRP.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-320.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+346.&lt;/span&gt;
 
 The following month, during an October 18, 2017, question-and-answer session at a
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2720,7 +2975,7 @@&lt;/span&gt;
 stated, in response to a question about XRPâ€™s price, that he had â€œno qualms saying definitively if we
 continue to drive the success weâ€™re driving, weâ€™re going to drive a massive amount of demand for
 XRP, because weâ€™re solving a multi-trillion dollar problem.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-321.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+347.&lt;/span&gt;
 
 Similarly, in a November 2017 interview with CNBC, Garlinghouse noted: â€œOn a
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2728,14 +2983,14 @@&lt;/span&gt;
 XRP.â€ He repeated the sentiment the following month, in a December 14, 2017 interview with
 Bloomberg News. When asked if he invested in XRP, he said: â€œIâ€™m long XRP, Iâ€™m very, very long
 XRP as a percentage of my personal . . . balance sheetâ€ (though he had already sold at least 67
&lt;span style=&quot;color: #cd0000;&quot;&gt;-million XRP). Later, he reiterated, â€œI remain very, very, very long XRP, . . . Iâ€™m on the HODL&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-side,â€ referring to a digital asset industry term meaning to be long on an asset for long-term gains.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-54&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+60&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 55 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 61 of 79&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-322.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+million XRP). Later, he reiterated, â€œI remain very, very, very long XRP, . . . Iâ€™m on the HODL&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+side,â€ referring to a digital asset industry term meaning to be long on an asset for long-term gains.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+348.&lt;/span&gt;
 
 In a March 12, 2018 interview with Bloomberg News, Garlinghouse, noting the
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2745,7 +3000,7 @@&lt;/span&gt;
 trillions of dollars, then there is a lot of opportunity to create value in XRP.â€ Garlinghouse also
 speculated in the December 14, 2017 interview that, if a company created â€œutilityâ€ for a digital asset
 like XRP, â€œthen there will be demand for the tokens, [and] the price of the tokens will go up.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-323.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+349.&lt;/span&gt;
 
 In the NYSE Interview, when the interviewer asked, â€œ[s]o, XRP, is that a good
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2756,70 +3011,75 @@&lt;/span&gt;
 
 Rippleâ€™s Privately-Stated Goal Was to Increase Speculation on the Price of XRP
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-324.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+350.&lt;/span&gt;
 
 As these public statements show, speculative investment in XRP was precisely what
 
 Ripple wanted and promotedâ€”it needed speculative investment for its own stated strategy to be
 successful and to increase the value of and monetize its XRP holdings.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-325.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+351.&lt;/span&gt;
 
 Ripple explicitly stated these goals internally, including in documents describing one
 
 of the reasons to establish the XRP Escrow as securing speculative liquidity, with the hopes that it
 would lead to â€œimmediate increase in volume and price appreciation.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-326.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+352.&lt;/span&gt;
 
 Ripple Agent-3â€™s March 31, 2017 â€œQ2 [second quarter] XRP Plan Updateâ€ email to
 
 Garlinghouse acknowledged that Ripple was taking most of the steps described above to encourage
 speculative investment in XRP. He also told Garlinghouse that â€œ[t]he goal [was] to drive XRP
 speculative trading volumeâ€ and that the â€œtacticsâ€ Ripple planned to undertake to do so included
&lt;span style=&quot;color: #cd0000;&quot;&gt;-â€œescrow announcement,â€ â€œ[s]ign[ing] exchanges,â€ putting out information into the market to â€œtak[e]&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-on skeptics,â€ and announcing business deals to â€œ[s]park speculation about potential partnerships.â€&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-55&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+61&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 56 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 62 of 79&lt;/span&gt;
 
&lt;span style=&quot;color: #00cd00;&quot;&gt;+â€œescrow announcement,â€ â€œ[s]ign[ing] exchanges,â€ putting out information into the market to â€œtak[e]&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+on skeptics,â€ and announcing business deals to â€œ[s]park speculation about potential partnerships.â€&lt;/span&gt;
 6.
 
 XRPâ€™s Characteristicsâ€”as Constructed by Rippleâ€”Reasonably Fueled Purchasersâ€™ Expectations
 of Profiting
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-327.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+353.&lt;/span&gt;
 
 The very nature of XRP in the marketâ€”as constructed and promoted by Rippleâ€”
 
 compels reasonable XRP purchasers to view XRP as an investment.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-328.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+354.&lt;/span&gt;
 
 Except for certain trading volume limitations, XRP is freely transferable or tradeable
 
 without restrictions the moment it is purchased, and it was offered broadly and widely to all
 potential purchasers, not just those who might be reasonably expected to â€œuseâ€ XRP.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-329.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+355.&lt;/span&gt;
 
 Ripple made certain Institutional Sales of XRP at discounted priced, leading
 
 purchasers to reasonably expect to profit on their resale of XRP into the public markets.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-330.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+356.&lt;/span&gt;
 
 Moreover, the value of Rippleâ€™s current holdings of XRP (approximately $28 billion
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-as of last week) and of XRPâ€™s total market capitalization of approximately $58 billionâ€”given that, as&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Garlinghouse has publicly stated, Ripple â€œwould not be profitable or cash flow positiveâ€ without&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-selling XRPâ€”demonstrates that XRP investors are speculating that Ripple will achieve its stated&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-goals with respect to XRP. In other words, market participants, when they buy XRP, are speculating&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-that Rippleâ€™s economic incentives and its promises with respect to XRP will lead it to successfully&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-solve the â€œtrillion-dollar problemâ€ that will increase demand for XRP.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-331.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+as of December 2020) and of XRPâ€™s then total market capitalization of approximately $58 billionâ€”&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+given that, as Garlinghouse has publicly stated, Ripple â€œwould not be profitable or cash flow&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+positiveâ€ without selling XRPâ€”demonstrates that XRP investors are speculating that Ripple will&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+achieve its stated goals with respect to XRP. In other words, market participants, when they buy&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+XRP, are speculating that Rippleâ€™s economic incentives and its promises with respect to XRP will&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+lead it to successfully solve the â€œtrillion-dollar problemâ€ that will increase demand for XRP.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+357.&lt;/span&gt;
 
 As Garlinghouse summed it up in a December 29, 2017 interview with Bloomberg
 
 News, XRPâ€™s current market value and Rippleâ€™s holdings of XRP â€œgives [them] a huge strategic asset
 to go invest in and accelerate the vision we see for an internet of value. . . . For me this is all . . .
 about an opportunity to participate and accelerate a vision weâ€™ve had for some time.â€
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+62&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 63 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 V.
 
 In the Offering, Ripple Did Not Sell XRP for â€œUseâ€ or as â€œCurrencyâ€
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2828,23 +3088,18 @@&lt;/span&gt;
 No Significant Non-Investment â€œUseâ€ for XRP Exists, and Ripple Did Not
 Sell XRP in the Offering for â€œUseâ€
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-332.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+358.&lt;/span&gt;
 
 The first potential use that Defendants touted for XRPâ€”to serve as a â€œuniversal
 
 digital assetâ€ and/or for banks to transfer moneyâ€”never materialized.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-56&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 57 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-333.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+359.&lt;/span&gt;
 
 Not until approximately mid-2018 did Ripple first begin earnestly testing ODLâ€”to
 
 date its only product that permits XRP use for any purpose. The potential â€œusersâ€ of ODL that
 Ripple is targeting are money transmitters.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-334.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+360.&lt;/span&gt;
 
 ODL involves a transaction in which a money transmitter in a senderâ€™s jurisdiction
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2852,128 +3107,133 @@&lt;/span&gt;
 XRP into the fiat currency of that locale. Typically, instead of holding XRP directly, money
 transmitters who may use ODL would rely on market makers in the senderâ€™s and recipientâ€™s
 jurisdictions to trade in and out of XRP in about ninety seconds or less.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-335.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+361.&lt;/span&gt;
 
 ODL is an enterprise-grade software product intended for managing a financial
 
 institutionâ€™s daily and long-term treasury operationsâ€”it is not intended for individual use.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-336.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+362.&lt;/span&gt;
 
 On June 21, 2018, Garlinghouse explained in a public speech that nobody was using
 
 XRP to effect cross-border transactions as of that date. Instead, he said that Ripple â€œexpect[ed] this
 year for at least one bank to use XRP in their payment flows, to use xRapid [ODL].â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-337.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+363.&lt;/span&gt;
 
 Ripple did not commercially launch ODL until October 2018.
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-338.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+364.&lt;/span&gt;
 
 Since its launch, ODL has gained very little traction, in part due to certain costs of
 
 using the platform. From October 2018 through July 26, 2020, only fifteen money transmitters
 (none of which are banks) signed on to potentially use ODL, and ODL transactions comprised no
 more than 1.6% of XRPâ€™s trading volume during any one quarter (and often substantially less).
&lt;span style=&quot;color: #cd0000;&quot;&gt;-339.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+365.&lt;/span&gt;
 
 Much of the onboarding onto ODL was not organic or market-driven. Rather, it
 
 was subsidized by Ripple. Though Ripple touts ODL as a cheaper alternative to traditional payment
&lt;span style=&quot;color: #00cd00;&quot;&gt;+63&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 64 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 rails, at least one money transmitter (the â€œMoney Transmitterâ€) found it to be much more expensive
 and therefore not a product it wished to use without significant compensation from Ripple.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-340.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+366.&lt;/span&gt;
 
 Between early 2019 and July 2020, the â€œMoney Transmitterâ€ conducted the
 
 overwhelming majority of XRP trading volume in connection with ODL. Ripple had to pay the
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-57&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 58 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
 Money Transmitter significant financial compensationâ€”often paid in XRPâ€”in exchange for the
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Money Transmitterâ€™s agreement to help Ripple increase volume on ODL.4&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-341.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Money Transmitterâ€™s agreement to help Ripple increase volume on ODL. 4&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+367.&lt;/span&gt;
 
 Specifically, from 2019 through June 2020, Ripple paid the Money Transmitter 200
 
 million XRP, which the Money Transmitter immediately monetized by selling XRP into the public
 market, typically on the very days it received XRP from Ripple. The Money Transmitter publicly
 disclosed earning over $52 million in fees and incentives from Ripple through September 2020.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-342.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+368.&lt;/span&gt;
 
 The Money Transmitter became yet another conduit for Rippleâ€™s unregistered XRP
 
 sales into the market, with Ripple receiving the added benefit that it could tout its inorganic XRP
 â€œuseâ€ and trading volume for XRP. The Money Transmitter has served that principal purpose for
 Ripple in exchange for significant financial compensation.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-343.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+369.&lt;/span&gt;
 
 Ripple and Garlinghouse did not disclose to XRP investors or the public the full
 
 extent of incentives that Ripple provided to the Money Transmitter in return for its assistance in
 increasing XRP trading volume.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-344.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+370.&lt;/span&gt;
 
 For example, in a September 12, 2019 interview on CNN, Garlinghouse refuted
 
 speculation that Ripple was manufacturing demand for ODL and claimed: â€œWhen [the Money
 Transmitter] is moving money from U.S. dollar to Mexican peso, theyâ€™re buying [XRP] at market.
 Thereâ€™s no special sweetheart deal there.â€ While the Money Transmitter was buying XRP in the
&lt;span style=&quot;color: #cd0000;&quot;&gt;-market at current market prices (not from Ripple), Garlinghouse did not disclose that Ripple was&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-paying the Money Transmitter significant financial incentives to do so.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-345.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Even after ODLâ€™s launch, Ripple publicly acknowledged in July 2019 that XRP has&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-no significant use beyond investment, as alleged in paragraph 211 above.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-4&lt;/span&gt;
 
 In June and November 2019, Ripple also made equity investments in the Money Transmitter
 totaling $50 million in exchange for its stock and a seat on its Board of Directors. Ripple currently
 holds approximately 9% of the Money Transmitterâ€™s publicly-traded stock.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-58&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 59 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+4&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-346.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+64&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 65 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+market at current market prices (not from Ripple), Garlinghouse did not disclose that Ripple was&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+paying the Money Transmitter significant financial incentives to do so.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+371.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Even after ODLâ€™s launch, Ripple publicly acknowledged in July 2019 that XRP has&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+no significant use beyond investment, as alleged in paragraph 236 above.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+372.&lt;/span&gt;
 
 Though it had started selling XRP to public investors in 2013, Ripple announced, for
 
 the first time in its history in 2020, that it began selling XRP directly to money transmitters
 specifically for effecting money transfers through ODL.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-347.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+373.&lt;/span&gt;
 
 From May through mid-August 2020, Ripple sold XRP to two other money
 
 transmitters for use in ODL for total proceeds of approximately $70 million dollars. In order to
 effectuate the ODL transaction, the money transmitters then immediately resold those XRP into the
 public markets, to individuals and entities that had no â€œuseâ€ for XRP.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-348.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+374.&lt;/span&gt;
 
 Ripple earns only de minimis fees from the ODL platform. Instead, Garlinghouse
 
 views â€œthe value creation of xRapid [ODL] as driving the liquidity in the XRP markets.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-349.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+375.&lt;/span&gt;
 
 Throughout the Offering, Defendants did not target sales of XRP to people to
 
 whom XRPâ€™s undeveloped, potential future â€œusesâ€ could reasonably be expected to appeal. For
 example, Defendants did not market XRP in the Offering to entities that might â€œuseâ€ XRP as a
 bridge currency or even to individuals who had a need for an alternative to fiat currency.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-350.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+376.&lt;/span&gt;
 
 Throughout the Offering, Defendants did not restrict sales of XRP to purchasers
 
 who would actually â€œuseâ€ XRP as a medium to execute cross-border transactions. Defendants
 offered, sold, and distributed XRP to investors worldwide, in any quantities and at various prices.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-351.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+377.&lt;/span&gt;
 
 Throughout the Offering, Defendants offered, sold, and distributed XRP in amounts
 
 that far exceeded any potential â€œuseâ€ of XRP as a medium to transfer value.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-352.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+65&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 66 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+378.&lt;/span&gt;
 
 Defendants did not restrict the XRP they sold to money transmitters for use in ODL
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -2983,66 +3243,61 @@&lt;/span&gt;
 
 XRP Are Not â€œCurrencyâ€ Under the Federal Securities Laws
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-353.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+379.&lt;/span&gt;
 
 In May 2015, Ripple and XRP II agreed (i) to settle charges brought by the United
 
 States Department of Justice and FinCEN for failing to register as a â€œMoney Services Businessâ€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-59&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 60 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
 under the Bank Secrecy Act and (ii) to comply with other regulatory requirements with respect to
 Rippleâ€™s XRP sales, which the settlement called â€œvirtual currency.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-354.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+380.&lt;/span&gt;
 
 Consequently, Ripple has at times suggested that XRP are not securities, but instead
 
 exempt from the Securities Act altogether as â€œcurrencies.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-355.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+381.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-XRP is not â€œcurrencyâ€ under the federal securities laws.5&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+XRP is not â€œcurrencyâ€ under the federal securities laws. 5&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-356.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+382.&lt;/span&gt;
 
 XRP has not been designated as legal tender in any jurisdiction. XRP is not issued
 
 by, nor is backed by the full faith and credit of, any country, national government, central bank, or
 other central monetary authority. A â€œnative currencyâ€ that operates, for example, on Rippleâ€™s
&lt;span style=&quot;color: #cd0000;&quot;&gt;-decentralized network of blockchain technology is a specialized instrument for a particular computer&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-network, not legal tender. Similarly, using XRP as a â€œbridgeâ€ between two real, fiat currencies does&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-not bestow legal tender status on XRP.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-357.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+decentralized network of blockchain technology, is a specialized instrument for a particular&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+computer network, not legal tender. Similarly, using XRP as a â€œbridgeâ€ between two real, fiat&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+currencies does not bestow legal tender status on XRP.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+383.&lt;/span&gt;
 
 Moreover, Ripple has never offered or sold XRP as â€œcurrency,â€ as that term is used
 
 in the federal securities laws. Throughout the Offering, Ripple never restricted offers or sales of
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+FinCEN has repeatedly reiterated its view that â€œvirtual currencyâ€ that may be converted for&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+traditional fiat currencies may still be subject to the federal securities laws â€œregardless of other&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+intended purposesâ€ for the convertible virtual currency. See, e.g., FinCEN Guidance, Application of&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+FinCENâ€™s Regulations to Certain Business Models Involving Convertible Virtual Currencies, FIN2019-G001 (May 9, 2019) available at https://www.fincen.gov/sites/default/files/201905/FinCEN%20Guidance%20CVC%20FINAL%20508.pdf.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+5&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+66&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 67 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 XRP solely to purchasers who had a need for alternatives to traditional, fiat currencies, nor did
 Ripple promote XRP as an instrument for consumers to purchase goods or services.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-358.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+384.&lt;/span&gt;
 
 Instead, Ripple and its executives repeatedly publicly disclaimed that XRP was
 
 â€œcurrencyâ€ and tried to dissuade investors from thinking about XRP as â€œcurrency.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-359.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+385.&lt;/span&gt;
 
 For example, in June 2016, Cryptographer-1 explained in a public XRP Chat post:
 
 â€œWe do not plan to encourage use of XRP as an alternative to Bitcoin or as a direct payment
 method at this time.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-5&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-FinCEN has repeatedly reiterated its view that â€œvirtual currencyâ€ that may be converted for&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-traditional fiat currencies may still be subject to the federal securities laws â€œregardless of other&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-intended purposesâ€ for the convertible virtual currency. See, e.g., FinCEN Guidance, Application of&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-FinCENâ€™s Regulations to Certain Business Models Involving Convertible Virtual Currencies, FIN2019-G001 (May 9, 2019) available at https://www.fincen.gov/sites/default/files/201905/FinCEN%20Guidance%20CVC%20FINAL%20508.pdf.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-60&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 61 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-360.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+386.&lt;/span&gt;
 
 Two years later, in a press conference on March 14, 2018, Garlinghouse stated:
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -3052,7 +3307,7 @@&lt;/span&gt;
 something you can use to transact efficiently and broadly. Very few people,
 even in the crypto community have used the, you know, Bitcoin or XRP to
 buy something.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-361.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+387.&lt;/span&gt;
 
 Similarly, in Garlinghouseâ€™s Economic Club Speech in October 2019, a moderator
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -3061,11 +3316,11 @@&lt;/span&gt;
 use case today. . . . [W]hen people talk about using crypto for consumer use case I go to the â€˜well
 what problem are we trying to solve?â€™ . . . [I]n first world countries like the United States . . . I donâ€™t
 see the consumer use for crypto any time soon,â€ or even for â€œ95% of global GDP.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-362.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+388.&lt;/span&gt;
 
 Rippleâ€™s own current internal policies treat XRP as securitiesâ€”not currency.
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-363.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+389.&lt;/span&gt;
 
 Since at least 2015, Rippleâ€™s internal â€œCode of Conductâ€ has directed Ripple
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -3073,41 +3328,42 @@&lt;/span&gt;
 or the Ripple protocol that has not been publicly announced, and which might reasonably affect the
 decision to buy or sell XRPâ€â€”effectively, a prohibition against insider trading, applicable to
 securities under the federal securities laws.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-364.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+67&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 68 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+390.&lt;/span&gt;
 
 Similarly, since at least July 2019, Ripple has banned certain members of its
 
 â€œleadership teamâ€ from entering into a â€œtrading planâ€ for XRP â€œon the basis of information a
 reasonable person would consider important in making his or her decision to purchase, hold or sell
 XRPâ€â€”another implicit reference to rules governing insider trading.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-365.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+391.&lt;/span&gt;
 
 Even if some country were to recognize XRP as fiat â€œcurrencyâ€ at some point in the
 
 future, that would result from Defendantsâ€™ significant entrepreneurial and managerial efforts to date
 (and likely in the future), on which public investors expecting profit relied when making an
 investment of money into Defendantsâ€™ common enterprise.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-61&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 62 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
 VI.
 
 Defendants Failed to Register the Offering with the SEC
&lt;span style=&quot;color: #cd0000;&quot;&gt;-366.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+392.&lt;/span&gt;
 
 Defendants used interstate commerce for the Offering by, among other things,
 
 promoting investments in XRP in emails, interviews disseminated to the public through television
 and the Internet, and publicly available social media applications; and by effecting transfers of XRP
 and of the Offering proceeds through global digital asset trading platforms.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-367.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+393.&lt;/span&gt;
 
 Defendants have never filed a registration statement with the SEC with respect to
 
 any XRP they have offered or sold or intend to offer or sell, and no registration statement has ever
 been in effect with respect to any offers or sales of XRP.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-368.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+394.&lt;/span&gt;
 
 Rippleâ€™s public disclosures contained selective or no information about Rippleâ€™s
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -3118,6 +3374,11 @@&lt;/span&gt;
 operations, financial condition, or other factors relevant in considering whether to invest in XRP.
 XRP investors have also been deprived of information about how Rippleâ€™s executives are being
 compensated as a result of the Offering or about Rippleâ€™s use of funds derived from the sale of
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+68&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 69 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 XRP. Nor have investors received complete information about any steps Ripple is taking to
 incentivize financial institutions to adopt XRP for use in a payment system, including the extent and
 nature of incentive payments made to businesses Ripple touts as market-driven â€œusersâ€ of its
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -3125,11 +3386,6 @@&lt;/span&gt;
 XRP purchasers and the market lack information that issuers provide under the Securities Act and
 the Exchange Act when they solicit public investment and foster a secondary market when their
 securities are publicly traded.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-62&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 63 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
 VII.
 
 Larsen and Garlinghouse Knowingly or Recklessly Provided Substantial Assistance
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -3139,16 +3395,16 @@&lt;/span&gt;
 Larsen Assumed the Risk that XRP Could Be a Security and Pushed the
 Offering Forward
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-369.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+395.&lt;/span&gt;
 
 Ripple and Larsen knew that XRP may be a security from the onset of the Offering
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-and simply ignored legal requirements regarding registration and required periodic and current&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-public disclosures. As described above in Section I.B, above, the Legal Memos Ripple&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-commissioned in February and October 2012 warned that there was some risk that XRP would be&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-considered an â€œinvestment contractâ€ (and thus a security under the federal securities laws)&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-depending on various factors.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-370.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+but disregarded legal requirements regarding registration and required periodic and current public&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+disclosures. As described above in Section I.B, above, the Legal Memos Ripple commissioned in&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+February and October 2012 warned that there was some risk that XRP would be considered an&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+â€œinvestment contractâ€ (and thus a security under the federal securities laws) depending on various&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+factors.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+396.&lt;/span&gt;
 
 Although both the February 2012 and the October 2012 Legal Memos warned that,
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -3158,13 +3414,18 @@&lt;/span&gt;
 stewardship, Ripple promoted XRP as a speculative investment when either no use case existed or,
 with the eventual development of the ODL product, only a small fraction of XRP arguably was
 being â€œusedâ€ for a few moments for non-investment purposes before being sold to investors.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-371.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+69&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 70 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+397.&lt;/span&gt;
 
 Larsen understood that investors were purchasing XRP as an investmentâ€”precisely
 
 the situation that both the February 2012 and the October 2012 Legal Memos had warned could
 lead to a determination that XRP was a security.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-372.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+398.&lt;/span&gt;
 
 For example, on February 6, 2017, â€œan early investor in XRPâ€ wrote Larsen to
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -3172,22 +3433,42 @@&lt;/span&gt;
 connecting banks serves . . . emerging trendsâ€ such that â€œthe more banks that connect thru Ripple
 . . . the more demand we should see for XRP as an asset to reduce liquidity costs.â€ Acknowledging
 the investorsâ€™ â€œconcerns around the current state of volume flowsâ€ for XRP, Larsen concluded:
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-63&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 64 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
 â€œFrankly, the entire industry is really in the earliest stages of developments. Most volume in the
 space is speculation in advance of enterprise and eventually consumer flows.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-373.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+399.&lt;/span&gt;
 
 Larsen also received additional warnings that XRP could be subject to the federal
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-securities laws. On January 5, 2015, the head of an entity establishing a fund to invest in XRP&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+securities laws, including because XRP was not a â€œcurrencyâ€ and because, even if it was, it could still&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+be a security under the federal securities laws.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+400.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+On November 11, 2013, Rippleâ€™s accountants sent Larsen a draft memo regarding&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+certain United States taxation considerations for Ripple and XRP. The memo explained that XRP&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+was likely not currency under federal income tax laws, principally because XRP â€œis not considered&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+legal tender in the U.S.â€ The memo also explained to Larsen that â€œâ€˜virtualâ€™ currencyâ€ like XRP was&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+not traditional currency under FinCEN guidance issued on March 18, 2013 for the same reasonâ€”&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+namely, that XRP was not legal tender in any jurisdiction.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+401.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+On January 5, 2015, the head of the entity looking to establish XRP Fund A&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 forwarded to Larsen an email from the fundâ€™s attorney, who worked at a prominent global law firm.
 The attorneyâ€™s email advised that, while the attorney did not know â€œwhether a virtual currency is
 itself a security[,] . . . one certainly can create a security by packaging virtual currency.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-374.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+70&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 71 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+402.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+On March 9, 2016, while Larsen was CEO, Rippleâ€™s attorneys wrote to the NYDFS&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+stating that â€œXRP II and Ripple consider XRP a digital asset, not a currencyâ€ and that â€œXRP is not&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+intended to be used as a currency.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+403.&lt;/span&gt;
 
 Including as described above in this Complaint, Larsen provided substantial
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -3200,130 +3481,200 @@&lt;/span&gt;
 Garlinghouse Was Warned and Understood That XRP Had â€œSecurities-Typeâ€
 Characteristics
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-375.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+404.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-By at least June 2017, Garlinghouse knew or recklessly disregarded that Rippleâ€™s&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+By at least June 2015, Garlinghouse knew or recklessly disregarded that Rippleâ€™s&lt;/span&gt;
 
 offers and sales of XRP were part of the offer and sale of an investment contract and thus a security.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-376.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+405.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-For example, in an email conversation between Garlinghouse and Ripple Agent-1 on&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+From the outset of his employment at Ripple, Garlinghouse was involved in&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-June 2015, Ripple Agent-1 expressed a desire to maintain a Ripple trading platform to specifically&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-and uniquely target â€œnon-consumer[s].â€ In response, Garlinghouse told Ripple Agent-1 it was â€œnot&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-clear to [him] . . . how one would reasonably discern (through an online process) between a&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-speculator and a consumer.â€ In essence, Garlinghouse conveyed that Ripple was then already&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-unable to distinguish between sales it made to speculators and to â€œconsumers.â€&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-377.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+decisions regarding offers and sales of XRP and understood, at all relevant times, that sales of XRP&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+drove Rippleâ€™s revenues and that, as reflected in his numerous public statements, the digital asset&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+space entails risks relating to the application of the federal securities laws.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+406.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Moreover, in an email conversation between Garlinghouse and Ripple Agent-1 on&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+June 2015, Ripple Agent-1 conveyed to Garlinghouse Larsenâ€™s desire to maintain a Ripple trading&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+platform to specifically and uniquely target â€œnon-consumer[s].â€ In response, Garlinghouse told&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Ripple Agent-1 it was â€œnot clear to [him] . . . how one would reasonably discern (through an online&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+process) between a speculator and a consumer.â€ In essence, Garlinghouse conveyed that Ripple was&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+then already unable to distinguish between sales it made to speculators and to â€œconsumers.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+407.&lt;/span&gt;
 
 On March 11, 2017, Rippleâ€™s then-chief compliance officer explained to
 
 Garlinghouse in an email that â€œXRP certainly has some â€˜securities-typeâ€™ characteristics and we do
 need to hone our playbook/messaging.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-64&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+71&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 65 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 72 of 79&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-378.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+408.&lt;/span&gt;
 
 On April 16, 2017, Garlinghouse was similarly advised by e-mail that the same chief
 
 compliance officer â€œwant[ed] to make sure the verbiage [in employee offer letters regarding XRP
 notional value] doesnâ€™t put us at risk of XRP sounding like a security.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-379.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+409.&lt;/span&gt;
 
 Garlinghouse, demonstrating a keen interest in the regulatory status of digital assets,
 
 also commented on Rippleâ€™s website immediately after the SEC issued the DAO Report in July 2017:
 â€œI say, if it looks like a duck and quacks like a duck then letâ€™s regulate it like a duck.â€
&lt;span style=&quot;color: #cd0000;&quot;&gt;-380.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+410.&lt;/span&gt;
 
 Garlinghouse nevertheless continued to make XRP sound like a security, including in
 
 interviews later in 2017 boasting about being â€œvery longâ€ XRP and in comments in connection with
 the XRP Escrow about how Rippleâ€™s efforts were meant to stabilize XRPâ€™s price.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-381.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+411.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+On December 11, 2017, Rippleâ€™s public relations firm emailed Garlinghouse to&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+notify him that they wanted to â€œcall . . . outâ€ a recent statement by the then-SEC Chairman that&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+â€œ[m]erely calling a token a â€˜utilityâ€™ token or structuring it to provide some utility does not prevent the&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+tokenâ€ from being a security, given that it â€œhad been a concern to have XRP considered a security.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+412.&lt;/span&gt;
 
 The following year, in January 2018, Garlinghouse again demonstrated he
 
 understood at least certain factors that could determine whether XRP could be deemed a security.
 Only weeks after he touted being â€œvery longâ€ XRP in interviews, he commented, on an internal
 Ripple draft document, that XRP should not be promoted as an investment.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-382.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+413.&lt;/span&gt;
 
 The following month, in a Yahoo! Finance interview he gave in February 2018,
 
 Garlinghouse acknowledged his understanding that â€œif there is not a real use case then itâ€™s really a
 securities offering. And if itâ€™s a securities offering thereâ€™s not regulatory uncertainty. It should be
 regulated as a securities offering.â€ At that time, Garlinghouse knew or recklessly disregarded that
&lt;span style=&quot;color: #cd0000;&quot;&gt;-none of Rippleâ€™s sales of XRP up to that point had been with respect to any â€œuseâ€ of XRP.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-383.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+none of Rippleâ€™s sales of XRP up to that point had been with respect to any â€œuseâ€ of XRP. In this&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+interview, Garlinghouse also characterized â€œpeople in the crypto space talking about â€˜regulatory&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Garlinghouse also admitted in a non-public setting that he is cognizant of the risk&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+72&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-that XRP could be â€œclassified as a security.â€ Specifically, as reflected in an Equity Investor A&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-employee email, dated July 23, 2018, Garlinghouse (accompanied by Larsen) met with Equity&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Investor A, â€œspoke for a while on the outstanding issue of whether XRP gets classified as a&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-security,â€ and noted that, while he was â€œoptimistic thatâ€ it would not, he could â€œ[]not guarantee&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-that.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 73 of 79&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-65&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+uncertaintyâ€™â€ by saying â€œmore often than not that means â€˜I disagree with the regulatory certainty so&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Iâ€™m going to call it regulatory uncertainty.â€™â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+414.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 66 of 71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+On January 11, 2018, Garlinghouse signed Rippleâ€™s application to seek Platform A to&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-384.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+make XRP available for trading. The application represented that â€œ[w]e understand that whether or&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+not a digital asset may be considered a security is an important consideration for many in the digital&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+asset ecosystemâ€ and stated that Ripple had â€œreceived a legal memorandum from a reputable law&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+firmâ€ regarding the status of XRP under the federal securities laws.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+415.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Platform A was one of at least four platforms incorporated in the United States that&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+asked Ripple for a legal opinion as to the status of XRP under the federal securities laws. At least&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+one such platform declined to make XRP available for trading due to Rippleâ€™s failure to provide&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+such an opinion, as Ripple Agent-2 informed Garlinghouse and Larsen in a July 14, 2018 email.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+416.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+As alleged in Section II.E.5 and herein, Garlinghouse actively participated in Rippleâ€™s&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+efforts to make XRP available on these platforms from the outset of his tenure at Ripple and was&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+therefore aware that the status of XRP under the federal securities laws was important to these&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+United States-based platforms. More specifically, Garlinghouseâ€™s participation in these processes&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+made him aware that, if there was a market or independent legal consensus that XRP is a security&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+under the federal securities laws, United States-based platforms would question whether to allow&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+XRP to be traded on their platforms.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+417.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+As also alleged in Section II.E.5, Garlinghouse understood that Rippleâ€™s ability to sell&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+XRP on these platforms was critical to its ability to capitalize its operations. Garlinghouse&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+understood that Ripple is not profitable and cannot operate without continued sales of XRP because&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+such sales are Rippleâ€™s â€œrevenue driver,â€ as he has publicly stated.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+418.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+For example, in an April 10, 2018 email, a Ripple employee told Garlinghouse that&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Platform A was â€œhesitant to list XRPâ€ precisely because of the â€œregulatory uncertaintyâ€ that XRP&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+73&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 74 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+could be deemed a security. The employee further informed Garlinghouse that, for that reason,&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Platform A had declined Rippleâ€™s request that Platform A tell the press that regulatory uncertainty&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+had not factored into Platform Aâ€™s decision not to make XRP available.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+419.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+In his April 11, 2018 response, Garlinghouse demonstrated his understanding that&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+â€œregulatory uncertaintyâ€ about the status of XRP could hurt Rippleâ€™s XRP trading strategy (including&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+making it available on digital asset trading platforms for speculators) and sought to dispel such&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+concerns. Garlinghouse stated that, while he was â€œnot exactly â€˜okâ€™ withâ€ Platform Aâ€™s proposed&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+response to the press, he thought it â€œachieve[d] our primary goal of dispelling the BS that&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Bloomberg put out there that [Platforms A and C] are hesitant to list XRP because of concerns&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+about it being a security.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+420.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Garlinghouse again admitted in a non-public setting that he is cognizant of the risk&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+that XRP could be â€œclassified as a securityâ€ to Equity Investor A. Specifically, as reflected in an&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Equity Investor A employee email, dated July 23, 2018, Garlinghouse (accompanied by Larsen) met&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+with Equity Investor A, â€œspoke for a while on the outstanding issue of whether XRP gets classified&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+as a security,â€ and noted that, while he was â€œoptimistic thatâ€ it would not, he could â€œ[]not guarantee&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+that.â€&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+421.&lt;/span&gt;
 
 In a speech he gave in Manhattan in October 2019, Garlinghouse further
 
 acknowledged that people are â€œspeculating on digital assetsâ€ and that â€œ99.9% of all crypto trading
 today is just speculation,â€ a factor he knew could lead to a determination that XRP was a security.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-385.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+422.&lt;/span&gt;
 
 Throughout the course of this conduct, Garlinghouse had an incentive to make
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-efforts to increase XRPâ€™s trading price and volume. Pursuant to an options grant of up to 500&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-million XRP dated December 13, 2016, Ripple would pay Garlinghouse in XRP, only if the volume&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-weighted average price of XRP was â€œat least $0.02/XRPâ€ for four consecutive weeks and the weekly&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-XRP trading volume was at least 1.4 billion for at least four consecutive weeks.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-386.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+efforts to increase XRPâ€™s trading price and volume, including to obtain more favorable prices for the&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+sale of his own XRP and Rippleâ€™s. Moreover, pursuant to an options grant of up to 500 million&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+XRP dated December 13, 2016, Ripple would pay Garlinghouse in XRP, only if the volume&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Garlinghouse understands that Ripple is not profitable and cannot operate without&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+74&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-continued sales of XRP, as he has publicly stated.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-387.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 75 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+weighted average price of XRP was â€œat least $0.02/XRPâ€ for four consecutive weeks and the weekly&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+XRP trading volume was at least 1.4 billion for at least four consecutive weeks.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+423.&lt;/span&gt;
 
 From April 2015 to the present, Garlinghouse provided substantial assistance to
 
 Ripple in conducting its Offering.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-388.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+424.&lt;/span&gt;
 
 In addition to making the various promotional statements and efforts described
 
 above in this Complaint, Garlinghouse, as both COO and later CEO, participated in weekly XRP
&lt;span style=&quot;color: #cd0000;&quot;&gt;-sales meetings where he exercised final decision-making authority over the timing and amount of&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Rippleâ€™s XRP sales, including whether to adjust Rippleâ€™s XRP sales based on factors such as market&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-conditions, volume, price, or the capital needs of the company.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-389.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+sales meetings where he exercised decision-making authority (including final decision-making&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+authority as CEO) over the timing and amount of Rippleâ€™s XRP sales. Garlinghouseâ€™s decisions&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+included whether to adjust Rippleâ€™s XRP sales based on factors such as market conditions, volume,&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+price, or the capital needs of the company.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+425.&lt;/span&gt;
 
 Garlinghouse similarly exercised final decision-making authority over how much
 
 XRP Ripple would offer and sell on a daily basis.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-390.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+426.&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Garlinghouse also made the decision to establish the XRP Escrow and approved&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Garlinghouse also made the decision to establish the XRP Escrow and, as alleged,&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-paying XRP as incentives to digital asset trading platforms for â€œlistingâ€ XRP or achieving certain&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-trading volume benchmarks.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-391.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+approved paying XRP as incentives to digital asset trading platforms for â€œlistingâ€ XRP or achieving&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+certain trading volume benchmarks.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+427.&lt;/span&gt;
 
 Garlinghouse acted at least recklessly while engaging in this conduct.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-66&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 67 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
 TOLLING AGREEMENTS
&lt;span style=&quot;color: #cd0000;&quot;&gt;-392.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+428.&lt;/span&gt;
 
 Ripple and the SEC entered into tolling agreements suspending the running of any
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -3331,20 +3682,25 @@&lt;/span&gt;
 September 7, 2019, from September 8, 2019 through December 8, 2019, from December 9, 2019
 through June 8, 2020, from June 9, 2020 through December 9, 2020, and from December 10, 2020
 through December 24, 2020.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-393.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+429.&lt;/span&gt;
 
 Larsen and the SEC entered into a tolling agreement suspending the running of any
 
 applicable statute of limitations from September 1, 2020, through December 31, 2020.
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+75&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 76 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 FIRST CLAIM FOR RELIEF
 Violations of Sections 5(a) and 5(c) of the Securities Act
 (All Defendants)
&lt;span style=&quot;color: #cd0000;&quot;&gt;-394.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+430.&lt;/span&gt;
 
 The Commission realleges and incorporates by reference here the allegations in
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-paragraphs 1 through 393.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-395.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+paragraphs 1 through 429.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+431.&lt;/span&gt;
 
 By virtue of the foregoing, (a) without a registration statement in effect as to that
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -3354,7 +3710,7 @@&lt;/span&gt;
 of transportation or communication in interstate commerce or of the mails to offer to sell through
 the use or medium of a prospectus or otherwise, securities as to which no registration statement had
 been filed.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-396.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+432.&lt;/span&gt;
 
 Ripple violated Sections 5(a) and 5(c) of the Securities Act by conducting the
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -3362,14 +3718,9 @@&lt;/span&gt;
 directly and indirectly making use of the means and instruments of transportation or
 communications in interstate commerce or of the mails to sell 14.6 billion XRP without a
 registration statement in effect as to XRP, and by making use of the means and instruments of
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-67&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 68 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
 transportation or communication in interstate commerce or of the mails to offer to sell XRP, which
 were offered and sold as securities, as to which no registration statement had been filed.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-397.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+433.&lt;/span&gt;
 
 Larsen violated Sections 5(a) and 5(c) of the Securities Act by, from 2013 through
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -3378,17 +3729,22 @@&lt;/span&gt;
 statement in effect as to XRP, and by making use of the means and instruments of transportation or
 communication in interstate commerce or of the mails to offer to sell XRP, which were offered and
 sold as securities, as to which no registration statement had been filed.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-398.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+76&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 77 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+434.&lt;/span&gt;
 
 Garlinghouse violated Sections 5(a) and 5(c) of the Securities Act by, from 2016
 
 through the present, directly and indirectly making use of the means and instruments of
&lt;span style=&quot;color: #cd0000;&quot;&gt;-transportation or communications in interstate commerce or of the mails to sell 321 million XRP&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+transportation or communications in interstate commerce or of the mails to sell 357 million XRP&lt;/span&gt;
 without a registration statement in effect as to XRP, and by making use of the means and
 instruments of transportation or communication in interstate commerce or of the mails to offer to
 sell XRP, which were offered and sold as securities, as to which no registration statement had been
 filed.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-399.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+435.&lt;/span&gt;
 
 By reason of the conduct described above, Defendants, directly or indirectly,
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -3397,36 +3753,36 @@&lt;/span&gt;
 SECOND CLAIM FOR RELIEF
 Aiding and Abetting Violations of Securities Act Sections 5(a) and 5(c)
 (Larsen and Garlinghouse)
&lt;span style=&quot;color: #cd0000;&quot;&gt;-400.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+436.&lt;/span&gt;
 
 The Commission realleges and incorporates by reference here the allegations in
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-paragraphs 1 through 393.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-401.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+paragraphs 1 through 429.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+437.&lt;/span&gt;
 
 By engaging in the acts and conduct described in this Complaint, Defendants Larsen
 
 and Garlinghouse, directly or indirectly, knowingly or recklessly provided substantial assistance to
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-68&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 69 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
 Ripple, who, from 2013 through the present, directly and indirectly have made and are making use
 of the means and instruments of transportation or communications in interstate commerce or of the
 mails to sell 14.6 billion XRP without a registration statement in effect as to XRP, and by making
 use of the means and instruments of transportation or communication in interstate commerce or of
 the mails to offer to sell XRP, which were offered and sold as securities, as to which no registration
 statement had been filed.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-402.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+438.&lt;/span&gt;
 
 Larsen knowingly or recklessly provided substantial assistance to Rippleâ€™s violations
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-of Sections 5(a) and 5(c) of the Securities Act including by: (i) from 2013 to 2016, deciding when and&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-how much XRP Ripple would sell, establishing the XRP Escrow, making promotional statements&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-with respect to XRP, and spearheading Rippleâ€™s efforts to attempt to increase demand for XRP; and&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-(ii) from 2015 to the present, making his own sales of XRP.&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-403.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+of Sections 5(a) and 5(c) of the Securities Act including by, from 2013 to the present, deciding when&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+77&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 78 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+and how much XRP Ripple would sell, establishing the XRP Escrow, making promotional&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+statements with respect to XRP, spearheading Rippleâ€™s efforts to attempt to increase demand for&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+XRP, and making his own sales of XRP.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+439.&lt;/span&gt;
 
 Garlinghouse knowingly or recklessly provided substantial assistance to Rippleâ€™s
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -3434,7 +3790,7 @@&lt;/span&gt;
 deciding when and how much XRP Ripple would sell, establishing the XRP Escrow, making
 promotional statements with respect to XRP, spearheading Rippleâ€™s efforts to attempt to increase
 demand for XRP, and making his own sales of XRP.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-404.&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+440.&lt;/span&gt;
 
 By reason of the foregoing, Larsen and Garlinghouse are liable pursuant to Section
 
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -3444,21 +3800,22 @@&lt;/span&gt;
 PRAYER FOR RELIEF
 WHEREFORE, the Commission respectfully requests that the Court enter a Final
 Judgment:
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-69&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 70 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
 I.
 Permanently enjoining Defendants, and each of their respective agents, servants, employees,
 attorneys and other persons in active concert or participation with any of them, from violating,
 directly or indirectly, Sections 5(a) and 5(c) of the Securities Act [15 U.S.C. Â§ 77e(a), 77e(c)],
 including by delivering XRP to any persons or taking any other steps to effect any unregistered offer
 or sale of XRP;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+78&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Case 1:20-cv-10832-AT Document 46 Filed 02/18/21 Page 79 of 79&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 II.
 Ordering Defendants to disgorge all ill-gotten gains obtained within the statute of
 limitations, with prejudgment interest thereon, pursuant to Section 21(d)(5) of the Exchange Act
&lt;span style=&quot;color: #cd0000;&quot;&gt;-[15 U.S.C. Â§ 78u(d)(5)];&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+[15 U.S.C. Â§ 78u(d)(5)] and Sections 6501(a) and (b) of the National Defense Authorization Act for&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Fiscal Year 2021, Pub. L. 116-283, 134 Stat. 3388 (Jan. 1, 2021);&lt;/span&gt;
 III.
 Prohibiting Defendants from participating in any offering of digital asset securities pursuant
 to Section 21(d)(5) of the Exchange Act [15 U.S.C. Â§ 78u(d)(5)];
&lt;span style=&quot;color: #00cdcd;&quot;&gt;@@ -3468,35 +3825,30 @@&lt;/span&gt;
 V.
 Granting any other and further relief this Court may deem just and proper for the benefit of
 investors.
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-70&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Case 1:20-cv-10832 Document 4 Filed 12/22/20 Page 71 of 71&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-&lt;/span&gt;
 JURY DEMAND
 The Commission demands a trial by jury.
 Dated: New York, New York
&lt;span style=&quot;color: #cd0000;&quot;&gt;-December 22, 2020&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+February 18, 2021&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+/s/ Richard Best&lt;/span&gt;
 ________________________________
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Richard R. Best&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Preethi Krishnamurthy&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Richard Best&lt;/span&gt;
 Jorge G. Tenreiro
 Dugan Bliss
 Attorneys for Plaintiff
 SECURITIES AND EXCHANGE
 COMMISSION
&lt;span style=&quot;color: #cd0000;&quot;&gt;-New York Regional Office&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Brookfield Place&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+New York Regional Office - Brookfield Place&lt;/span&gt;
 200 Vesey Street, Suite 400
 New York, New York 10281-1022
 (212) 336-9145 (Tenreiro)
 Email: TenreiroJ@sec.gov
&lt;span style=&quot;color: #00cd00;&quot;&gt;+&lt;/span&gt;
 Of Counsel
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Kristina Littman&lt;/span&gt;
&lt;span style=&quot;color: #cd0000;&quot;&gt;-John O. Enright&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Preethi Krishnamurthy&lt;/span&gt;
 Daphna A. Waxman
&lt;span style=&quot;color: #cd0000;&quot;&gt;-Jon Daniels&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+Jon A. Daniels&lt;/span&gt;
 
&lt;span style=&quot;color: #cd0000;&quot;&gt;-71&lt;/span&gt;
&lt;span style=&quot;color: #00cd00;&quot;&gt;+79&lt;/span&gt;
 
 
\ No newline at end of file&lt;/pre&gt;</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/7292165537985073084/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/7292165537985073084' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/7292165537985073084'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/7292165537985073084'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2021/02/the-diff-between-original-sec-complaint.html' title='The diff between the original SEC complaint against Ripple and the amended one'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-5035899929094255271</id><published>2020-02-10T21:27:00.002-08:00</published><updated>2020-09-17T22:08:27.002-07:00</updated><title type='text'>Has Tiffany Hayden been spreading FUD lately?</title><content type='html'>After a discussion with her, my conclusion is that there is a chance that she genuinely believes that she is not spreading FUD. But it&#39;s also not hard to see why many people see it that way.&lt;br /&gt;
&lt;br /&gt;
The discussion happened here:&lt;br /&gt;
&lt;blockquote class=&quot;twitter-tweet&quot;&gt;
&lt;div dir=&quot;ltr&quot; lang=&quot;en&quot;&gt;
Something has happened to &lt;a href=&quot;https://twitter.com/haydentiff?ref_src=twsrc%5Etfw&quot;&gt;@haydentiff&lt;/a&gt;. This is for sure. I don&#39;t know what it is though. If this is not fear-mongering, I don&#39;t know what fear-mongering is. First, why would Ripple abandon XRP. Second, no validator would do that because it won&#39;t work. &lt;a href=&quot;https://t.co/g6CDp1Gkiq&quot;&gt;https://t.co/g6CDp1Gkiq&lt;/a&gt;&lt;/div&gt;
— r0bertz (@r0bertz) &lt;a href=&quot;https://twitter.com/r0bertz/status/1226954736047247360?ref_src=twsrc%5Etfw&quot;&gt;February 10, 2020&lt;/a&gt;&lt;/blockquote&gt;
&lt;script async=&quot;&quot; charset=&quot;utf-8&quot; src=&quot;https://platform.twitter.com/widgets.js&quot;&gt;&lt;/script&gt;

The initial tweet reflected my thought at the time I was posting the tweet. I am not going to change it.&lt;br /&gt;
&lt;br /&gt;
So now let me summary how it went.&lt;br /&gt;
&lt;br /&gt;
In the so called &quot;FUD&quot; tweet, Tiffany described a scenario &quot;If Ripple abandoned XRP, the validators would vote to increase reserve to 25K XRP to freeze almost everyone else so we could cash out first&quot;.&lt;br /&gt;
&lt;br /&gt;
My response was:&lt;br /&gt;
&lt;h2&gt;
Ripple won&#39;t abandon XRP because it has every incentive to keep XRP but no incentive to abandon it.&lt;/h2&gt;
&lt;div&gt;
Below are our message exchanges about this. My thoughts are in parenthesis.&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;Tiffany:&lt;/b&gt;&amp;nbsp;It&#39;s incorrect to assume that Ripple would take care of things.&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;Robert:&lt;/b&gt;&amp;nbsp;It&#39;s not Ripple taking care of things, but taking care of itself.&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;Tiffany:&amp;nbsp;&lt;/b&gt;Ripple continues to remove validators from the network and has a goal to go down to one or even zero. (As if this is an example that Ripple doesn&#39;t take care of things and that Ripple is abandoning XRP)&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;Robert: &lt;/b&gt;This is a serious allegation (I mean the part that Ripple has a goal to go down to one or even zero). And if it&#39;s a goal, it should be either one or zero, not &quot;one or even zero&quot;.&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;Nik: &lt;/b&gt;Ripple has a goal to go down to one validator.&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;Robert: &lt;/b&gt;I am not worrying too much about this as long as Ripple keeps hiring an excellent team to work on rippled and it would be stupid for Ripple to give up this team.&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;Nik:&lt;/b&gt; Although Ripple has a large and highly skilled team dedicated to development of rippled, I’d prefer to see more external contributors. (I read this as Ripple is still committed to XRP.)&lt;/div&gt;
&lt;h2&gt;
Freezing everyone else by increasing reserve so that they could cash out first won&#39;t work.&lt;/h2&gt;
&lt;div&gt;
Things got heated up on this one. I will only give a high level summary.&lt;br /&gt;
&lt;br /&gt;
So in the beginning, I assumed that increasing reserve to any amount would always require an amendment and that someone must send a pull request for this amendment to &lt;a href=&quot;https://github.com/ripple/rippled&quot;&gt;https://github.com/ripple/rippled&lt;/a&gt;&amp;nbsp;to get it merged. If anyone does this, I would know because I follow what&#39;s happening there. If this pull request gets merged, people with less than 25k in their accounts would start moving their fund immediately. No one will be freezed.&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
To my surprise, it seemed that Tiffany didn&#39;t know how rippled development works, or rather how github projects work in general. It didn&#39;t take too long for me to realize that what she really meant may be that the validators can collude privately and thus don&#39;t need github.&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Then this still can be undone. Because it&#39;s easy to create a fork and getting it recognized by the world is going to be easy too, because the old UNL betrayed the world. See this article for technical details&amp;nbsp;&lt;a href=&quot;https://r0bertz.blogspot.com/2017/07/several-possible-attack-modes-on-xrp.html&quot;&gt;https://r0bertz.blogspot.com/2017/07/several-possible-attack-modes-on-xrp.html&lt;/a&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Later&amp;nbsp;&lt;a href=&quot;https://twitter.com/xrpscan&quot;&gt;XRP Scan&lt;/a&gt; pointed out that reserve can be increased to 4294 XRP without introducing an amendment. But 4294 is not a too big number. To increase it to 25k, an amendment is still required. Either way, it can be undone.&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/5035899929094255271/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/5035899929094255271' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/5035899929094255271'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/5035899929094255271'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2020/02/has-tiffany-hayden-been-spreading-fud.html' title='Has Tiffany Hayden been spreading FUD lately?'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-7618521592787682360</id><published>2020-02-04T20:19:00.002-08:00</published><updated>2020-02-07T01:14:30.844-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="ripple"/><category scheme="http://www.blogger.com/atom/ns#" term="ripple-client-desktop"/><category scheme="http://www.blogger.com/atom/ns#" term="xrp"/><title type='text'>ripple-client-desktop ported to RippleAPI</title><content type='html'>&lt;b&gt;Disclaimer: this work is provided &quot;as-is&quot; and is not endorsed by or affiliated with Ripple Inc. in anyway.&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
RippleAPI was one of the APIs (the other one is core API) in &lt;a href=&quot;https://github.com/ripple/ripple-lib&quot; target=&quot;_blank&quot;&gt;ripple-lib&lt;/a&gt;&amp;nbsp;before version 0.13.0 which was released in 2015 and has been the only API since 0.13.0.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://github.com/ripple/ripple-client-desktop&quot; target=&quot;_blank&quot;&gt;ripple-client-desktop&lt;/a&gt;&amp;nbsp;was abandoned by Ripple Inc. in 2015. By the time it was abandoned, it could only work with core API.&lt;br /&gt;
&lt;br /&gt;
I started porting it to RippleAPI in late 2018.&amp;nbsp; The progress was recorded in this twitter thread:&lt;br /&gt;
&lt;blockquote class=&quot;twitter-tweet&quot;&gt;
&lt;div dir=&quot;ltr&quot; lang=&quot;en&quot;&gt;
This weekend I tried to revive ripple-client-desktop. l I have reached a point at which I can run gulp without any warning on the command line. However, the app stuck at loading. Then I figured out that the client uses an ancient ripple-lib API.&lt;/div&gt;
— r0bertz (@r0bertz) &lt;a href=&quot;https://twitter.com/r0bertz/status/1074570561366323200?ref_src=twsrc%5Etfw&quot;&gt;December 17, 2018&lt;/a&gt;&lt;/blockquote&gt;
&lt;br /&gt;
&lt;script async=&quot;&quot; charset=&quot;utf-8&quot; src=&quot;https://platform.twitter.com/widgets.js&quot;&gt;&lt;/script&gt;
You can download the executable files at this link:&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://github.com/r0bertz/ripple-client-desktop/releases&quot;&gt;https://github.com/r0bertz/ripple-client-desktop/releases&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
If you want to try it, please try it with testnet account, account with small balances, small transaction size, in that order. Because even though there is no known bug to me, after all this is a one man job. There could be bugs that I haven&#39;t seen yet.&lt;br /&gt;
&lt;br /&gt;
To change server to testnet server, check &quot;Online mode&quot; under Network settings. Testnet server address can be found here&amp;nbsp;&lt;a href=&quot;https://xrpl.org/xrp-testnet-faucet.html&quot;&gt;https://xrpl.org/xrp-testnet-faucet.html&lt;/a&gt;.&amp;nbsp;After changing server, please restart the client because server reconnection is not handled very well in ripple-lib.&lt;br /&gt;
&lt;br /&gt;
Note that it may take a short while for it to connect for the very first time.&lt;br /&gt;
&lt;br /&gt;
Here&#39;s my tip bot account if anyone feel like chipping in &lt;a href=&quot;https://www.xrptipbot.com/u:r0bertz/n:twitter&quot;&gt;https://www.xrptipbot.com/u:r0bertz/n:twitter&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Thanks!</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/7618521592787682360/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/7618521592787682360' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/7618521592787682360'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/7618521592787682360'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2020/02/ripple-client-desktop-ported-to.html' title='ripple-client-desktop ported to RippleAPI'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-2010931630497387658</id><published>2019-04-21T10:18:00.002-07:00</published><updated>2019-04-21T12:52:11.442-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="crypto"/><category scheme="http://www.blogger.com/atom/ns#" term="tax"/><category scheme="http://www.blogger.com/atom/ns#" term="xrp"/><title type='text'>How to file crypto tax for free</title><content type='html'>I just published the scripts that I used to prepare tax for XRP sales. With no or minimal changes, it should work for any crypto, any exchange.&lt;br /&gt;
&lt;br /&gt;
The repo is at &lt;a href=&quot;https://github.com/r0bertz/node-xrp-tax&quot;&gt;https://github.com/r0bertz/node-xrp-tax&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Below is the contents of README.md:&lt;br /&gt;
&lt;br /&gt;
&lt;article class=&quot;markdown-body&quot;&gt;&lt;h1&gt;
XRP Tax&lt;/h1&gt;
This is a collection of scripts to prepare tax for crpyto (not necessarily XRP)
sales. A majority of this project deals with XRP Ledger, so it is called &quot;XRP
Tax&quot;.  The end product is a csv file that can be uploaded to
&lt;a href=&quot;http://www.easytxf.com/&quot;&gt;http://www.easytxf.com&lt;/a&gt;.&lt;br /&gt;

&lt;h3&gt;
Things to note&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Terminology:
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Symbol&lt;/strong&gt;: The currency being traded.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Currency&lt;/strong&gt;: The currency you paid/got when buying/selling Symbol.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;USDT is considered USD.&lt;/li&gt;
&lt;li&gt;The csv format (except that of the end product) is &lt;a href=&quot;http://bitcoin.tax/&quot;&gt;bitcoin.tax&lt;/a&gt; format&lt;sup id=&quot;a1&quot;&gt;&lt;a href=&quot;https://www.blogger.com/blogger.g?blogID=12574936#f1&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;.&lt;/li&gt;
&lt;li&gt;The Source column is overloaded. If Action is SEND, Source is actually
destination.&lt;/li&gt;
&lt;li&gt;Only LIFO (Last-In, First-Out) method is implemented.&lt;/li&gt;
&lt;li&gt;LIFO method is universally applied for a &lt;strong&gt;Symbol&lt;/strong&gt; no matter where the trade
actually happened.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.investopedia.com/terms/l/like-kind_exchange.asp&quot;&gt;Like-kind exchange&lt;/a&gt; is not supported.
If &lt;strong&gt;Currency&lt;/strong&gt; is not USD, it will be converted into USD price.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
Install dependencies&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;npm install -g bignumber.js csv dateformat fs lodash node-fetch ripple-lib yargs
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;
Example&lt;/h2&gt;
Suppose one guy has traded XRP on XRP Ledger,
&lt;a href=&quot;http://www.bitstamp.net/&quot;&gt;bitstamp&lt;/a&gt; and &lt;a href=&quot;http://www.poloniex.com/&quot;&gt;poloniex&lt;/a&gt;. He
has transferred XRP back and forth between these exchanges. He wants to get a
TXF file for the XRP trades he did in 2018 so that he can import it into
TurboTax.&lt;/article&gt;&lt;article class=&quot;markdown-body&quot;&gt;&lt;br /&gt;

He has an addresses.json file which looks like:&lt;br /&gt;

&lt;pre&gt;&lt;code class=&quot;language-json&quot;&gt;{
  &quot;&lt;span class=&quot;hljs-attribute&quot;&gt;rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B&lt;/span&gt;&quot;: &lt;span class=&quot;hljs-value&quot;&gt;&lt;span class=&quot;hljs-string&quot;&gt;&quot;~Bitstamp&quot;&lt;/span&gt;&lt;/span&gt;,
  &quot;&lt;span class=&quot;hljs-attribute&quot;&gt;rpdADzXQJrnHKDJV9p7A4UwHsjT3rhm2cx&lt;/span&gt;&quot;: &lt;span class=&quot;hljs-value&quot;&gt;&lt;span class=&quot;hljs-string&quot;&gt;&quot;~RippleTradeXRPBonus&quot;&lt;/span&gt;&lt;/span&gt;,
}
&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code class=&quot;language-json&quot;&gt;
&lt;/code&gt;&lt;/pre&gt;
A hint.json file which looks like:&lt;br /&gt;

&lt;pre&gt;&lt;code class=&quot;language-json&quot;&gt;{
  &quot;&lt;span class=&quot;hljs-attribute&quot;&gt;~RippleTradeXRPBonus&lt;/span&gt;&quot;: &lt;span class=&quot;hljs-value&quot;&gt;&lt;span class=&quot;hljs-string&quot;&gt;&quot;Gift&quot;&lt;/span&gt;&lt;/span&gt;,
}
&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code class=&quot;language-json&quot;&gt;
&lt;/code&gt;&lt;/pre&gt;
Bitstamp transaction history file:&lt;br /&gt;

&lt;pre&gt;&lt;code&gt;bitstamp/Transactions.csv
&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;
&lt;/code&gt;&lt;/pre&gt;
Poloniex history files:&lt;br /&gt;

&lt;pre&gt;&lt;code&gt;poloniex/depositHistory.csv
poloniex/tradeHistory.csv
poloniex/withdrawalHistory.csv
&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;
&lt;/code&gt;&lt;/pre&gt;
The following commands will generate a file that can uploaded to &lt;a href=&quot;http://easytxf.com/&quot;&gt;easytxf.com&lt;/a&gt;.&lt;br /&gt;

&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;node XRPL/getTransactions.js --account &lt;span class=&quot;hljs-variable&quot;&gt;$ACCOUNT&lt;/span&gt; --output transactions.json
node XRPL/&lt;span class=&quot;hljs-built_in&quot;&gt;export&lt;/span&gt;Trades.js --account &lt;span class=&quot;hljs-variable&quot;&gt;$ACCOUNT&lt;/span&gt; --input transactions.json --addresses addresses.json --cost_basis_hint hint.json  &amp;gt; xrpl.csv
&lt;span class=&quot;hljs-comment&quot;&gt;# Find out the timestamp for all trades if it is a Gift or if Currency is not USD.&lt;/span&gt;
node XRPL/extractPricePoint.js --input xrpl.csv &amp;gt; usd.json
&lt;span class=&quot;hljs-comment&quot;&gt;# Fill usd.json with XRP price in USD. Some requests may fail due to rate-limiting. Retry as needed.&lt;/span&gt;
node fillPricePoint.js --input usd.json
&lt;span class=&quot;hljs-comment&quot;&gt;# Replace price with price in USD if Currency is not USD.&lt;/span&gt;
node XRPL/replacePrice.js --input xrpl.csv --price_file usd.json &amp;gt; xrpl_usd.csv
node bitstamp.js --symbol XRP --input bitstamp/Transactions.csv &amp;gt; bitstamp.csv
node poloniex.js --type deposit --input poloniex/depositHistory.csv  &amp;gt; poloniex.csv
node poloniex.js --type trade --input poloniex/tradeHistory.csv  &amp;gt;&amp;gt; poloniex.csv
node poloniex.js --type withdraw --input poloniex/withdrawalHistory.csv  &amp;gt;&amp;gt; poloniex.csv
cat bitstamp.csv poloniex.csv xrpl_usd.csv &amp;gt; unsorted.csv
sort -t, -k1,&lt;span class=&quot;hljs-number&quot;&gt;1&lt;/span&gt; -k3,&lt;span class=&quot;hljs-number&quot;&gt;3&lt;/span&gt;r -k5,&lt;span class=&quot;hljs-number&quot;&gt;5&lt;/span&gt; unsorted.csv &amp;gt; sorted.csv
&lt;span class=&quot;hljs-comment&quot;&gt;# Merge a SEND with the immediate next RECEIVE if RECEIVE is equal to or slightly less than SEND.&lt;/span&gt;
node mergeSendReceive.js --input sorted.csv &amp;gt; xrp.csv
node profit.js --input xrp.csv --year &lt;span class=&quot;hljs-number&quot;&gt;2018&lt;/span&gt; --combine --easytxf &amp;gt; easytxf.csv
&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;
&lt;/code&gt;&lt;/pre&gt;
Upload the last file to &lt;a href=&quot;http://easytxf.com/&quot;&gt;easytxf.com&lt;/a&gt; to get a txf file &lt;code&gt;XRP.txf&lt;/code&gt;. &lt;a href=&quot;http://easytxf.com/&quot;&gt;easytxf.com&lt;/a&gt;
assumes the cost basis is either short-term covered or long-term covered. It
needs to be changed with:&lt;br /&gt;

&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;hljs-comment&quot;&gt;# Change short-term covered (321) to short-term not reported (712)&lt;/span&gt;
&lt;span class=&quot;hljs-comment&quot;&gt;# Change long-term covered (323) to long-term not reported (714)&lt;/span&gt;
sed -i &lt;span class=&quot;hljs-operator&quot;&gt;-e&lt;/span&gt; &lt;span class=&quot;hljs-string&quot;&gt;&#39;s/N321/N712/&#39;&lt;/span&gt; &lt;span class=&quot;hljs-operator&quot;&gt;-e&lt;/span&gt; &lt;span class=&quot;hljs-string&quot;&gt;&#39;s/N323/N714/&#39;&lt;/span&gt; XRP.txf
&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;b id=&quot;f1&quot;&gt;1&lt;/b&gt; The format doesn&#39;t really matter. I used to use &lt;a href=&quot;http://bitcoin.tax/&quot;&gt;bitcoin.tax&lt;/a&gt;, not anymore. &lt;a href=&quot;https://www.blogger.com/blogger.g?blogID=12574936#a1&quot;&gt;↩&lt;/a&gt;&lt;br /&gt;

&lt;/article&gt;</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/2010931630497387658/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/2010931630497387658' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/2010931630497387658'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/2010931630497387658'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2019/04/how-to-file-crypto-tax-for-free.html' title='How to file crypto tax for free'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-2142924720150835423</id><published>2019-03-10T11:28:00.001-07:00</published><updated>2019-03-20T12:23:09.638-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="angularjs"/><category scheme="http://www.blogger.com/atom/ns#" term="lighttpd"/><title type='text'>Announcing https://orderbook.xrp.ninja</title><content type='html'>I just made a website &lt;a href=&quot;https://orderbook.xrp.ninja/&quot;&gt;https://orderbook.xrp.ninja&lt;/a&gt;. I have explained why I did it in the front page.&lt;br /&gt;
I am going to record some of the problems that I had and how I solved them in this post.&lt;br /&gt;
&lt;h4 id=&quot;prodcodedoesntwork&quot;&gt;
Prod code doesn&#39;t work&lt;/h4&gt;
The code works in development mode. But it doesn&#39;t after minified. The error message was:&lt;br /&gt;
&lt;br /&gt;
&lt;code&gt;Uncaught Error: [$injector:modulerr] Failed to instantiate module rp due to: Error: [$injector:unpr] Unknown provider: e
&lt;/code&gt;&lt;br /&gt;
&lt;br /&gt;
I found a post on stackoverflow and fixed it like &lt;a href=&quot;https://github.com/r0bertz/ripple-client-desktop/commit/fe3ad6b3b0b77e41e8ecbd0b72de4ecec111bcdd&quot;&gt;this&lt;/a&gt;.&lt;br /&gt;
&lt;h4 id=&quot;adddomaintoanexistingletsencryptcert&quot;&gt;
Add domain to an existing Letsencrypt cert&lt;/h4&gt;
&lt;code&gt;$ certbot certonly --cert-name rippled.xrp.ninja -d rippled.xrp.ninja,ripple.xrp.ninja,www.xrp.ninja,xrp.ninja,orderbook.xrp.ninja
&lt;/code&gt;
&lt;br /&gt;
&lt;h4 id=&quot;redirecthttptraffictohttpsonlighttpd&quot;&gt;
Redirect http traffic to https on lighttpd&lt;/h4&gt;
Add this to lighttpd.con and also enable &lt;a href=&quot;https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModRedirect&quot;&gt;mod_redirect&lt;/a&gt;.&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;$HTTP[&quot;scheme&quot;] == &quot;http&quot; {
    # capture vhost name with regex conditiona -&amp;gt; %0 in redirect pattern
    # must be the most inner block to the redirect rule
    $HTTP[&quot;host&quot;] =~ &quot;.*&quot; {
        url.redirect = (&quot;.*&quot; =&amp;gt; &quot;https://%0$0&quot;)
    }
}
&lt;/code&gt;&lt;/pre&gt;
&lt;h4 id=&quot;addresponseheaders&quot;&gt;
Add response headers&lt;/h4&gt;
Use&amp;nbsp;&lt;a href=&quot;http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModSetenv&quot;&gt;http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModSetenv&lt;/a&gt;. Also there is a useful site to scan the header settings of a website:
&lt;a href=&quot;https://securityheaders.com/&quot;&gt;https://securityheaders.com/&lt;/a&gt;&lt;br /&gt;
&lt;h4 id=&quot;httpslinkiniframedowngradedtohttp&quot;&gt;
Https link in iframe downgraded to http&lt;/h4&gt;
The chart on the orderbook page is an https link to &lt;a href=&quot;https://xrpchats.ripple.com/&quot;&gt;xrpchats.ripple.com&lt;/a&gt;. However, inexplicably the https link was downgraded to http and it can&#39;t be displayed since mixing https and http contents is not allowed.&lt;br /&gt;
&lt;br /&gt;
I tried setting &lt;code&gt;upgrade-insecure-requests&lt;/code&gt; in &lt;code&gt;Content-Security-Policy&lt;/code&gt;. Then the problem was gone. But later it reappeared. I finally realized this is because ripple changed the link format. See this &lt;a href=&quot;https://github.com/r0bertz/xrpl-orderbook/commit/110b48e09d458ae1e0d8fc021a93710cbdd8780a&quot;&gt;commit&lt;/a&gt; for details.
&lt;br /&gt;
&lt;br /&gt;
&lt;h4&gt;
Javascript file size too large&lt;/h4&gt;
The vendor.js file is too large. I have removed lots of unnecessary code. But after minimization, it&#39;s still 1.04 MB. I got the following picture with&amp;nbsp;&lt;a href=&quot;https://github.com/webpack-contrib/webpack-bundle-analyzer&quot; target=&quot;_blank&quot;&gt;webpack-bundle-analyzer&lt;/a&gt;. The picture shows gzipped size. The gzipped size (320 KB) is acceptable.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjYNVCOwADFC8naeeoZOZB1iaeZQIns6w085mLegL_4eHLN7JgZRg6DxhcjwYZEzTy4O5hGbL2Mabve8g7a5vTDlGCUEwto4JC5MZSuP7yPd5vb4hedug5TIDxtwgzMeHam3lUJ/s1600/vendor.js.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;785&quot; data-original-width=&quot;1600&quot; height=&quot;313&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjYNVCOwADFC8naeeoZOZB1iaeZQIns6w085mLegL_4eHLN7JgZRg6DxhcjwYZEzTy4O5hGbL2Mabve8g7a5vTDlGCUEwto4JC5MZSuP7yPd5vb4hedug5TIDxtwgzMeHam3lUJ/s640/vendor.js.png&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
To enable compression in lighttpd, mod_compress must be enabled,&amp;nbsp;compress.cache-dir must be setup with proper permission and compress.filetype set to something like this:&lt;br /&gt;
&lt;br /&gt;
&lt;code&gt;compress.filetype          = (&quot;text/plain&quot;, &quot;text/html&quot;, &quot;text/css&quot;, &quot;text/javascript&quot;, &quot;application/x-javascript&quot;, &quot;application/javascript&quot;, &quot;application/font-woff&quot;)&lt;/code&gt;&lt;br /&gt;
&lt;br /&gt;
Note that I only had &lt;code&gt;&quot;text/javascript&quot;&lt;/code&gt; in this list which didn&#39;t work. Later I added the other two javascript types and it worked. I don&#39;t know how the type is determined though.&lt;br /&gt;
&lt;br /&gt;
I plan to shrink it further with the help of &lt;a href=&quot;https://formidable.com/blog/2018/finding-webpack-duplicates-with-inspectpack-plugin/&quot;&gt; inspectpack-plugin&lt;/a&gt;.
&lt;br /&gt;
&lt;h4&gt;
Orderbook doesn&#39;t update&lt;/h4&gt;
See this &lt;a href=&quot;https://github.com/r0bertz/ripple-client-desktop/commit/60c9258cb68dd835c7715dac617bd86bdaa85cb4&quot;&gt;commit&lt;/a&gt; for details.
&lt;br /&gt;
&lt;h4&gt;
Use &lt;code&gt;font-display: fallback&lt;/code&gt;&lt;/h4&gt;
See this &lt;a href=&quot;https://github.com/r0bertz/xrpl-orderbook/commit/f8ffd182929c1925fb9603e43f851ef7c17b0187&quot;&gt;commit&lt;/a&gt;.
&lt;br /&gt;
&lt;h4&gt;
Set “Cache Control&quot;&lt;/h4&gt;
First append hash to js and css file names. See this&amp;nbsp;&lt;a href=&quot;https://github.com/r0bertz/xrpl-orderbook/commit/4ac5d48359e39c0ad9bdf528cccdfabb4f13bdf1&quot;&gt;commit&lt;/a&gt;. This feature was originally there. But it renames index.html as well. To get things work ASAP, I removed this feature without investigating what this does and why it renames &lt;code&gt;index.html&lt;/code&gt; until now.
&lt;br /&gt;
&lt;br /&gt;
Then I added the following code to &lt;code&gt;lighttpd.conf&lt;/code&gt;:
&lt;code&gt;&lt;/code&gt;&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;$HTTP[&quot;url&quot;] =~ &quot;(^/$|\.html$)&quot; {
  setenv.add-response-header = ( &quot;Cache-Control&quot; =&amp;gt;; &quot;no-cache, public, must-revalidate&quot; )
}

$HTTP[&quot;url&quot;] =~ &quot;^/(js|css|img|fonts)/&quot; {
  setenv.add-response-header = ( &quot;Cache-Control&quot; =&amp;gt;; &quot;max-age=31536000, public, must-revalidate&quot; )
}
&lt;/code&gt;&lt;/pre&gt;
</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/2142924720150835423/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/2142924720150835423' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/2142924720150835423'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/2142924720150835423'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2019/03/announcing-httpsorderbookxrpninja.html' title='Announcing https://orderbook.xrp.ninja'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjYNVCOwADFC8naeeoZOZB1iaeZQIns6w085mLegL_4eHLN7JgZRg6DxhcjwYZEzTy4O5hGbL2Mabve8g7a5vTDlGCUEwto4JC5MZSuP7yPd5vb4hedug5TIDxtwgzMeHam3lUJ/s72-c/vendor.js.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-2677955399842555616</id><published>2019-03-09T16:25:00.001-08:00</published><updated>2019-03-09T16:28:06.635-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="bash-completion"/><category scheme="http://www.blogger.com/atom/ns#" term="gulp"/><title type='text'>Gulp bash completion</title><content type='html'>&lt;a href=&quot;https://www.npmjs.com/package/gulp-bash-completion&quot;&gt;https://www.npmjs.com/package/gulp-bash-completion&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
I tried this. I followed the instructions on the above page, but it didn&#39;t work.&lt;br /&gt;
&lt;br /&gt;
Then I did the following and it worked:&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Locate the &lt;b&gt;gulp-completion.bash&lt;/b&gt; file installed by the package.&lt;/li&gt;
&lt;li&gt;Change the &lt;b&gt;echo_gulp_tasks&lt;/b&gt; variable in &lt;b&gt;gulp-completion.bash&lt;/b&gt; file to &lt;b&gt;gulp --tasks-simple&lt;/b&gt;&lt;/li&gt;
&lt;li&gt;Copy &lt;b&gt;gulp-completion.bash&lt;/b&gt; to &lt;b&gt;/etc/bash_completion.d&lt;/b&gt; and source the file in current shell.&lt;/li&gt;
&lt;/ol&gt;
Now try type &lt;b&gt;gulp [space]&lt;/b&gt; and hit &lt;b&gt;[enter]&lt;/b&gt;, the completion should work.&lt;br /&gt;
&lt;br /&gt;
At this time, this npm package is no longer required. So you can uninstall it.

</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/2677955399842555616/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/2677955399842555616' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/2677955399842555616'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/2677955399842555616'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2019/03/gulp-bash-completion.html' title='Gulp bash completion'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-2928981335383517559</id><published>2019-01-04T12:22:00.000-08:00</published><updated>2019-01-22T23:17:32.967-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="ripple"/><category scheme="http://www.blogger.com/atom/ns#" term="ripple-client-desktop"/><category scheme="http://www.blogger.com/atom/ns#" term="ripple-lib"/><category scheme="http://www.blogger.com/atom/ns#" term="xrp"/><title type='text'>Revive ripple-client-desktop</title><content type='html'>&lt;i&gt;&lt;b&gt;Update: as of Jan 15, 2019, trading is working.&lt;/b&gt;&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://github.com/r0bertz/ripple-client-desktop&quot;&gt;https://github.com/r0bertz/ripple-client-desktop&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
The first goal is to make it fully functional with &lt;a href=&quot;https://developers.ripple.com/rippleapi-reference.html&quot; target=&quot;_blank&quot;&gt;RippleAPI&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Current status is most read only operations are working except order book.&lt;br /&gt;
&lt;br /&gt;
Please follow this twitter thread for the most recent updates:&lt;br /&gt;
&lt;blockquote class=&quot;twitter-tweet&quot; data-lang=&quot;en&quot;&gt;
&lt;div dir=&quot;ltr&quot; lang=&quot;en&quot;&gt;
This weekend I tried to revive ripple-client-desktop. l I have reached a point at which I can run gulp without any warning on the command line. However, the app stuck at loading. Then I figured out that the client uses an ancient ripple-lib API.&lt;/div&gt;
— r0bertz (@r0bertz) &lt;a href=&quot;https://twitter.com/r0bertz/status/1074570561366323200?ref_src=twsrc%5Etfw&quot;&gt;December 17, 2018&lt;/a&gt;&lt;/blockquote&gt;
&lt;script async=&quot;&quot; charset=&quot;utf-8&quot; src=&quot;https://platform.twitter.com/widgets.js&quot;&gt;&lt;/script&gt;
</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/2928981335383517559/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/2928981335383517559' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/2928981335383517559'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/2928981335383517559'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2019/01/revive-ripple-client-desktop.html' title='Revive ripple-client-desktop'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-750289848481785291</id><published>2018-11-13T23:15:00.000-08:00</published><updated>2018-11-13T23:15:33.308-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="monitoring"/><category scheme="http://www.blogger.com/atom/ns#" term="rippled"/><title type='text'>Custom monitoring graphs for xrp.ninja validator</title><content type='html'>As you may know, my rippled validator runs on GCE. So I use stackdriver to monitor it. I created two &lt;a href=&quot;https://cloud.google.com/monitoring/custom-metrics/&quot; target=&quot;_blank&quot;&gt;custom metrics&lt;/a&gt; for it.&lt;br /&gt;
&lt;br /&gt;
One metric is uptime with rippled version as a label. Here&#39;s a live graph for this metric. From this graph, you can easily tell what the current version is and when it was upgraded to that version. You can also correlate this with other graphs to see if new version may have caused certain changes in rippled behavior.
&lt;iframe height=&quot;400&quot; scrolling=&quot;no&quot; seamless=&quot;seamless&quot; src=&quot;https://public.google.stackdriver.com/public/chart/3013706091720629173?drawMode=color&amp;amp;showLegend=true&amp;amp;theme=light&quot; width=&quot;800&quot;&gt;&lt;/iframe&gt;
&lt;br /&gt;
The other metric is the percentage of current uptime that rippled has been in a certain state. Normally the curve for &quot;full&quot; state should asymptotically approach 100. If it is not, then rippled is in trouble.
&lt;iframe height=&quot;400&quot; scrolling=&quot;no&quot; seamless=&quot;seamless&quot; src=&quot;https://public.google.stackdriver.com/public/chart/4682804402955104661?drawMode=color&amp;amp;showLegend=true&amp;amp;theme=light&quot; width=&quot;800&quot;&gt;&lt;/iframe&gt;</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/750289848481785291/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/750289848481785291' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/750289848481785291'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/750289848481785291'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2018/11/custom-monitoring-graphs-for-xrpninja.html' title='Custom monitoring graphs for xrp.ninja validator'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-1568701973650526330</id><published>2018-11-12T13:28:00.000-08:00</published><updated>2018-11-12T13:32:06.717-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="coil"/><category scheme="http://www.blogger.com/atom/ns#" term="ilp"/><category scheme="http://www.blogger.com/atom/ns#" term="web-monetize"/><category scheme="http://www.blogger.com/atom/ns#" term="xrp"/><title type='text'>xrp.ninja is now web-monetized</title><content type='html'>I know I am have been too lazy. It&#39;s just a matter of copy and paste.&lt;br /&gt;
&lt;br /&gt;
So thanks to any future coil subscriber who visits this blog. Your support will be greatly appreciated.&lt;br /&gt;
&lt;br /&gt;
PS: here is a howto&amp;nbsp;&lt;a href=&quot;https://xrpcommunity.blog/how-to-monetize-your-content-with-coil/&quot;&gt;https://xrpcommunity.blog/how-to-monetize-your-content-with-coil/&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/1568701973650526330/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/1568701973650526330' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/1568701973650526330'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/1568701973650526330'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2018/11/xrpninja-is-now-web-monetized.html' title='xrp.ninja is now web-monetized'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-5180238940829884259</id><published>2018-04-21T23:48:00.000-07:00</published><updated>2018-04-21T23:56:30.280-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="api"/><category scheme="http://www.blogger.com/atom/ns#" term="rippled"/><title type='text'>A rippled API library in Go language</title><content type='html'>&lt;a href=&quot;https://github.com/r0bertz/ripple&quot;&gt;https://github.com/r0bertz/ripple&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
I have been working on this lately. It&#39;s a fork of its original one. I learned a lot since I started working on it.&lt;br /&gt;
&lt;br /&gt;
Specifically, I learned there are a lot of inconsistencies in the output of rippled API.&lt;br /&gt;
&lt;br /&gt;
See for yourself in&amp;nbsp;&lt;a href=&quot;https://github.com/rubblelabs/ripple/issues/36#issuecomment-383355198&quot;&gt;https://github.com/rubblelabs/ripple/issues/36#issuecomment-383355198&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/5180238940829884259/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/5180238940829884259' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/5180238940829884259'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/5180238940829884259'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2018/04/a-rippled-api-library-in-go-language.html' title='A rippled API library in Go language'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-4204286221868971944</id><published>2018-01-18T09:34:00.001-08:00</published><updated>2018-01-18T09:37:41.081-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="rippled"/><title type='text'>xrp.ninja Ripple validator returns normal since two day ago</title><content type='html'>There&#39;s been some problems with the validator ever since it crashed about a week ago. It doesn&#39;t crash any more since I added much more disk space. But it easily falls behind and needs to play catch up several hours after each restart. I learned this from state_accounting field in the output of &quot;rippled server_info&quot;. I created a metric and a chart from it. This is what the chart looks for the last week.&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgT11jbl6ysiy08LlvRWpMUZJU7YAISxwETd7MY2GOhapN6JFWYyeh_tHcQ_F0S1pxw_el3vv5j9tNuyz5keMW626yO-Sw6NWBCirhznb9zDh42kr4MAPSFqHwRwFfoX6aKIXMo/s1600/states.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;578&quot; data-original-width=&quot;484&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgT11jbl6ysiy08LlvRWpMUZJU7YAISxwETd7MY2GOhapN6JFWYyeh_tHcQ_F0S1pxw_el3vv5j9tNuyz5keMW626yO-Sw6NWBCirhznb9zDh42kr4MAPSFqHwRwFfoX6aKIXMo/s320/states.png&quot; width=&quot;267&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
The &quot;&lt;a href=&quot;https://github.com/ripple/rippled/blob/cca574c9a9bb6f7fa416cf540fcf952cff7a14ce/src/ripple/app/misc/NetworkOPs.h#L85&quot;&gt;Full&lt;/a&gt;&quot; mode state means it is fully synced and participating in consensus process. You can see it is now asymptotically approaching 100 now. The value means the percentage of uptime the validator stays in each mode.&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
I figured out why the disk was out of space. It was because the validator fell behind. When that happens, &lt;a href=&quot;https://wiki.ripple.com/Online_deletion&quot;&gt;online delete&lt;/a&gt; is disabled. See this code:&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;a href=&quot;https://github.com/ripple/rippled/blob/fc0d64f5eec4386db7146251ab1a7fe880bec17c/src/ripple/app/misc/SHAMapStoreImp.cpp#L751&quot;&gt;https://github.com/ripple/rippled/blob/fc0d64f5eec4386db7146251ab1a7fe880bec17c/src/ripple/app/misc/SHAMapStoreImp.cpp#L751&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
I saw some &quot;Not deleting&quot; messages in the log which led me to the above code.&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
I still can&#39;t determine the exact reason why it fell behind. I suspect it was caused by some &quot;insane&quot; testnet peer. So I blocked some peers with iptables. But now it&#39;s almost 100% full and it still has an insane testnet peer.&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
However I do know why it didn&#39;t recover after disk is enlarged. I believe it&#39;s because I changed the db to NuDB from RocksDB and still have online_delete set in the config. I changed it because I learned NuDB works better on SSD. But it doesn&#39;t support update or delete. It is meant to be used in full history validator. It appears that when it tries to do online_delete, it starts to fall behind. Now I have switched back to RocksDB and everything is fine.&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/4204286221868971944/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/4204286221868971944' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/4204286221868971944'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/4204286221868971944'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2018/01/xrpninja-ripple-validator-returns.html' title='xrp.ninja Ripple validator returns normal since two day ago'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgT11jbl6ysiy08LlvRWpMUZJU7YAISxwETd7MY2GOhapN6JFWYyeh_tHcQ_F0S1pxw_el3vv5j9tNuyz5keMW626yO-Sw6NWBCirhznb9zDh42kr4MAPSFqHwRwFfoX6aKIXMo/s72-c/states.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-3439611818972783544</id><published>2018-01-10T13:17:00.002-08:00</published><updated>2018-01-10T13:35:45.121-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="rippled"/><title type='text'>xrp.ninja Ripple validator crashed last night due to low free disk space</title><content type='html'>&lt;div class=&quot;separator tr_bq&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiRL6221yb4wyKjE7j12LljmJNmzQRw-Q8Ckw4JLE0HUk43q9Nv8bpfrYcWrssUQRFKACQyaZ1GY2hrhGL0VpqAZnYlAKe-FRZRtxyxkyCVnuUI4wtrWX0EScLDlkQDPWJi_mHA/s1600/crash.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;867&quot; data-original-width=&quot;1600&quot; height=&quot;346&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiRL6221yb4wyKjE7j12LljmJNmzQRw-Q8Ckw4JLE0HUk43q9Nv8bpfrYcWrssUQRFKACQyaZ1GY2hrhGL0VpqAZnYlAKe-FRZRtxyxkyCVnuUI4wtrWX0EScLDlkQDPWJi_mHA/s640/crash.png&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
The above graph shows what happened.&lt;br /&gt;
&lt;br /&gt;
I did get an alert from GCE that disk usage was high. I have an alert policy which says alert me if disk usage is over 80% for more than 5 minutes. However, it was too late, so I didn&#39;t get up and thought maybe it could resolve on its own. But it didn&#39;t. And GCE didn&#39;t keep alerting me, which surprises me.&lt;br /&gt;
&lt;br /&gt;
Rippled logged these two lines before it died:&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
2018-Jan-10 11:33:27 Application:FTL Remaining free disk space is less than 512MB&lt;br /&gt;
2018-Jan-10 11:33:27 Application:FTL Application::onStop took 23ms&lt;/blockquote&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
So rippled killed itself:&lt;/div&gt;
&lt;div&gt;
&lt;a href=&quot;https://github.com/ripple/rippled/search?utf8=%E2%9C%93&amp;amp;q=%22Remaining+free+disk+space+is+less+than+%22&amp;amp;type=&quot;&gt;https://github.com/ripple/rippled/search?utf8=%E2%9C%93&amp;amp;q=%22Remaining+free+disk+space+is+less+than+%22&amp;amp;type=&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Before that, log was flooded with the following messages for 5 hours:&lt;/div&gt;
&lt;blockquote&gt;
2018-Jan-10 10:55:08 LoadMonitor:WRN Job: recvGetLedger run: 1390ms wait: 0ms&lt;br /&gt;
2018-Jan-10 10:55:32 LoadMonitor:WRN Job: recvGetLedger run: 1250ms wait: 0ms&lt;br /&gt;
2018-Jan-10 10:55:32 LoadMonitor:WRN Job: recvGetLedger run: 1533ms wait: 0ms&lt;br /&gt;
2018-Jan-10 10:55:32 LoadMonitor:WRN Job: recvGetLedger run: 0ms wait: 1534ms&lt;br /&gt;
2018-Jan-10 10:55:33 LoadMonitor:WRN Job: recvGetLedger run: 712ms wait: 1230ms&lt;br /&gt;
2018-Jan-10 10:55:33 LoadMonitor:WRN Job: recvGetLedger run: 0ms wait: 1937ms&lt;br /&gt;
2018-Jan-10 10:55:33 LoadMonitor:WRN Job: recvGetLedger run: 0ms wait: 1927ms&lt;br /&gt;
2018-Jan-10 10:55:33 LoadMonitor:WRN Job: recvGetLedger run: 0ms wait: 1927ms&lt;br /&gt;
2018-Jan-10 10:55:33 LoadMonitor:WRN Job: recvGetLedger run: 0ms wait: 1927ms&lt;br /&gt;
2018-Jan-10 10:55:33 LoadMonitor:WRN Job: recvGetLedger run: 2ms wait: 1922ms&lt;br /&gt;
2018-Jan-10 10:55:33 LoadMonitor:WRN Job: recvGetLedger run: 0ms wait: 1924ms&lt;br /&gt;
2018-Jan-10 10:55:33 LoadMonitor:WRN Job: recvGetLedger run: 0ms wait: 1922ms&lt;br /&gt;
2018-Jan-10 10:55:33 LoadMonitor:WRN Job: recvGetLedger run: 0ms wait: 1918ms&lt;br /&gt;
2018-Jan-10 10:55:33 LoadMonitor:WRN Job: recvGetLedger run: 0ms wait: 1913ms&lt;br /&gt;
2018-Jan-10 10:55:33 LoadMonitor:WRN Job: recvGetLedger run: 0ms wait: 1909ms&lt;br /&gt;
2018-Jan-10 10:55:33 LoadMonitor:WRN Job: recvGetLedger run: 0ms wait: 1897ms&lt;br /&gt;
2018-Jan-10 10:55:33 LoadMonitor:WRN Job: recvGetLedger run: 0ms wait: 1897ms&lt;br /&gt;
2018-Jan-10 10:55:33 LoadMonitor:WRN Job: recvGetLedger run: 0ms wait: 1890ms&lt;br /&gt;
2018-Jan-10 10:55:33 LoadMonitor:WRN Job: recvGetLedger run: 0ms wait: 1890ms&lt;/blockquote&gt;
So it kept getting new ledgers and wrote to the db, till it filled the partition and killed itself.&lt;br /&gt;
&lt;br /&gt;
I have no idea why it got so many new ledgers, as of now.&lt;br /&gt;
&lt;br /&gt;
I fixed it by resizing the disk, partition and filesystem.&lt;br /&gt;
&lt;br /&gt;
I have also changed the db format from RocksDB to NuDB which I should&#39;ve done when I first started running it.</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/3439611818972783544/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/3439611818972783544' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/3439611818972783544'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/3439611818972783544'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2018/01/xrpninja-ripple-validator-crashed-last.html' title='xrp.ninja Ripple validator crashed last night due to low free disk space'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiRL6221yb4wyKjE7j12LljmJNmzQRw-Q8Ckw4JLE0HUk43q9Nv8bpfrYcWrssUQRFKACQyaZ1GY2hrhGL0VpqAZnYlAKe-FRZRtxyxkyCVnuUI4wtrWX0EScLDlkQDPWJi_mHA/s72-c/crash.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-5701233764240575618</id><published>2018-01-09T14:54:00.001-08:00</published><updated>2018-01-09T14:55:16.157-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="decentralization"/><category scheme="http://www.blogger.com/atom/ns#" term="ripple"/><title type='text'>Ripple&#39;s Decentralization Strategy</title><content type='html'>&lt;div style=&quot;background-color: white; box-sizing: border-box; color: #353c41; font-family: Roboto, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 14px;&quot;&gt;
Copied from the following link:&lt;/div&gt;
&lt;div style=&quot;background-color: white; box-sizing: border-box;&quot;&gt;
&lt;span style=&quot;color: #353c41; font-family: &amp;quot;roboto&amp;quot; , &amp;quot;helvetica neue&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 14px;&quot;&gt;&lt;a href=&quot;https://www.xrpchat.com/topic/16362-rippled-0810-released/?do=findComment&amp;amp;comment=191441&quot;&gt;https://www.xrpchat.com/topic/16362-rippled-0810-released/?do=findComment&amp;amp;comment=191441&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; box-sizing: border-box;&quot;&gt;
&lt;span style=&quot;color: #353c41; font-family: &amp;quot;roboto&amp;quot; , &amp;quot;helvetica neue&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 14px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; box-sizing: border-box;&quot;&gt;
&lt;span style=&quot;color: #353c41; font-family: &amp;quot;roboto&amp;quot; , &amp;quot;helvetica neue&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 14px;&quot;&gt;&lt;a href=&quot;https://www.xrpchat.com/profile/130-mduo13/&quot;&gt;mDuo13&lt;/a&gt; wrote this. Kudos to him.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; box-sizing: border-box; color: #353c41; font-family: Roboto, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 14px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; box-sizing: border-box; color: #353c41; font-family: Roboto, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 14px;&quot;&gt;
To recap the Decentralization Strategy, here&#39;s a summary:&lt;/div&gt;
&lt;ol style=&quot;background-color: white; box-sizing: border-box; color: #353c41; font-family: Roboto, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 14px;&quot;&gt;
&lt;li style=&quot;box-sizing: border-box;&quot;&gt;Switch to using a validator list site (vl.ripple.com). This is where we are now.&lt;ul style=&quot;box-sizing: border-box;&quot;&gt;
&lt;li style=&quot;box-sizing: border-box;&quot;&gt;All rippled instances configured to use the site can automatically follow Ripple&#39;s updates to the recommended set of validators, in lockstep.&lt;/li&gt;
&lt;li style=&quot;box-sizing: border-box;&quot;&gt;In case you&#39;re curious, the validator list site publishes cryptographically signed recommendations of validators, so it&#39;s not easy to impersonate. And rippled caches the data it gets from the site, so the XRP Ledger won&#39;t go down even if vl.ripple.com is down for a while. (It might be tough to bring new rippled servers online while vl.ripple.com is down, but I think there are some protections against that, too.)&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li style=&quot;box-sizing: border-box;&quot;&gt;Update the site and the existing validators to use validator tokens instead of master validator secret keys.&lt;ul style=&quot;box-sizing: border-box;&quot;&gt;
&lt;li style=&quot;box-sizing: border-box;&quot;&gt;This adds security to the existing validators. By using tokens, that Ripple can keep the master validator keys offline and periodically rotate the tokens, for example if an operations engineer who might&#39;ve had access to the config files leaves the company.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li style=&quot;box-sizing: border-box;&quot;&gt;Update the site to add 16 new Ripple-controlled validators to the existing 5.&lt;ul style=&quot;box-sizing: border-box;&quot;&gt;
&lt;li style=&quot;box-sizing: border-box;&quot;&gt;The main reason for this is so that any new individual validator isn&#39;t too large a slice of the pie.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li style=&quot;box-sizing: border-box;&quot;&gt;Add new third-party validators. For every two third-party validators, Ripple will remove a Ripple-controlled validator from the recommended list.&lt;ul style=&quot;box-sizing: border-box;&quot;&gt;
&lt;li style=&quot;box-sizing: border-box;&quot;&gt;This will probably occur gradually over the course of 2018 and beyond.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li style=&quot;box-sizing: border-box;&quot;&gt;Eventually, as the size of the network has grown, Ripple will encourage others to run validator list sites similar to vl.ripple.com. As long as the lists published on the different sites have sufficient overlap, servers using any list won&#39;t fork away from each other.&lt;/li&gt;
&lt;li style=&quot;box-sizing: border-box;&quot;&gt;The &quot;Secret Future Stuff&quot; I alluded to, which may also occur before or as part of step 5.&lt;/li&gt;
&lt;/ol&gt;
</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/5701233764240575618/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/5701233764240575618' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/5701233764240575618'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/5701233764240575618'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2018/01/ripples-decentralization-strategy.html' title='Ripple&#39;s Decentralization Strategy'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-1083965241266776519</id><published>2018-01-08T21:45:00.003-08:00</published><updated>2018-01-08T21:47:30.941-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="rippled"/><category scheme="http://www.blogger.com/atom/ns#" term="validator"/><title type='text'>xrp.ninja Ripple validator upgraded to 0.81.0</title><content type='html'>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
Information about this version can be found here&amp;nbsp;&lt;a href=&quot;https://ripple.com/dev-blog/rippled-version-0-81-0/&quot;&gt;https://ripple.com/dev-blog/rippled-version-0-81-0/&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
This happened at about 1:45pm local time.&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjEPxxEVn-9B3WF2Qc-9oLb-Yl60phbdIuOqbwKdEt9oVbjkfJV0IqBqFHtfGYTlFKwDCU3rVj0yt3R3h6t7i_mrtoIJX0_AaZ79tgU3N2aTHVR7JP4ckoA3TtvhFtL0VO_jkB3/s1600/0.80.0.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;598&quot; data-original-width=&quot;762&quot; height=&quot;500&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjEPxxEVn-9B3WF2Qc-9oLb-Yl60phbdIuOqbwKdEt9oVbjkfJV0IqBqFHtfGYTlFKwDCU3rVj0yt3R3h6t7i_mrtoIJX0_AaZ79tgU3N2aTHVR7JP4ckoA3TtvhFtL0VO_jkB3/s640/0.80.0.png&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
There were some behavior changes after the upgrade:&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg-UhO3k95E17IedrWNwj7gbclp1hE9mnHBselrddElyqLQUcMXjnWuhQ_o3ENJ1j-L15-wui-OAFGoGG0mxSrjdi416WRM1PB17O1DDP64ho2pw2wnJ-FiC-8PCNT13nDgPVBx/s1600/perf.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;727&quot; data-original-width=&quot;1497&quot; height=&quot;310&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg-UhO3k95E17IedrWNwj7gbclp1hE9mnHBselrddElyqLQUcMXjnWuhQ_o3ENJ1j-L15-wui-OAFGoGG0mxSrjdi416WRM1PB17O1DDP64ho2pw2wnJ-FiC-8PCNT13nDgPVBx/s640/perf.png&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/1083965241266776519/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/1083965241266776519' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/1083965241266776519'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/1083965241266776519'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2018/01/xrpninja-ripple-validator-upgraded-to.html' title='xrp.ninja Ripple validator upgraded to 0.81.0'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjEPxxEVn-9B3WF2Qc-9oLb-Yl60phbdIuOqbwKdEt9oVbjkfJV0IqBqFHtfGYTlFKwDCU3rVj0yt3R3h6t7i_mrtoIJX0_AaZ79tgU3N2aTHVR7JP4ckoA3TtvhFtL0VO_jkB3/s72-c/0.80.0.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-7565578815928238893</id><published>2018-01-01T23:33:00.003-08:00</published><updated>2018-01-01T23:36:08.585-08:00</updated><title type='text'>Monitoring ripple validator running in GCE</title><content type='html'>GCE provides various kinds of metrics from which one can create dashboard, alerting policies etc. However, there is no way to monitor performance of rippled unless we wrote something ourselves.&lt;br /&gt;
&lt;br /&gt;
Fortunately, GCE allows creating custom metrics. So as a starting point, I decided to create a metric for rippled build_version. This information is very useful. For example, you will be able to tell if the behavior of the server changes after version changes.&lt;br /&gt;
&lt;br /&gt;
However, I later learned that custom metric can&#39;t have &quot;STRING&quot; as its value type. So I created an uptime metric with build version as its label. It works just the same.&lt;br /&gt;
&lt;br /&gt;
Here is a screenshot of the chart created from this metric:&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEht_uaVhvmuDP6h20VrTc9reEs3QPKMBsQsSnMNrcCIV7Hda4VDqG7Lsj_ESWiRzNtD9ssf4bWEMACwsR1TYzv9QO99_bMovmb0aMMyx231FCP61yhLCkwxtjiW0QVSWT6vWwGG/s1600/Rippled+Dashboard.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;575&quot; data-original-width=&quot;1600&quot; height=&quot;228&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEht_uaVhvmuDP6h20VrTc9reEs3QPKMBsQsSnMNrcCIV7Hda4VDqG7Lsj_ESWiRzNtD9ssf4bWEMACwsR1TYzv9QO99_bMovmb0aMMyx231FCP61yhLCkwxtjiW0QVSWT6vWwGG/s640/Rippled+Dashboard.png&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
Unfortunately, it seems I can&#39;t share this chart publicly, unlike charts created from built-in metrics which can be shared publicly.</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/7565578815928238893/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/7565578815928238893' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/7565578815928238893'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/7565578815928238893'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2018/01/monitoring-ripple-validator-running-in.html' title='Monitoring ripple validator running in GCE'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEht_uaVhvmuDP6h20VrTc9reEs3QPKMBsQsSnMNrcCIV7Hda4VDqG7Lsj_ESWiRzNtD9ssf4bWEMACwsR1TYzv9QO99_bMovmb0aMMyx231FCP61yhLCkwxtjiW0QVSWT6vWwGG/s72-c/Rippled+Dashboard.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-5735638187002958149</id><published>2017-12-20T17:02:00.000-08:00</published><updated>2017-12-20T17:02:07.445-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="deflation"/><category scheme="http://www.blogger.com/atom/ns#" term="ripple"/><category scheme="http://www.blogger.com/atom/ns#" term="xrp"/><title type='text'>What a deflationary currency will bring to the world?</title><content type='html'>I have been wondering about this lately. Then I found this article:&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://eliasbizannes.com/blog/2017/10/why-bitcoin-or-another-deflationary-currency-will-lead-to-an-economic-revolution/&quot;&gt;http://eliasbizannes.com/blog/2017/10/why-bitcoin-or-another-deflationary-currency-will-lead-to-an-economic-revolution/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
TL;DR: as long as investment has higher return then hoarding the deflationary currency, people will invest instead of hoarding.&lt;br /&gt;
&lt;br /&gt;
Similarly, if market maker can make more than hoarding XRP, market maker will make market instead of hoarding.</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/5735638187002958149/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/5735638187002958149' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/5735638187002958149'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/5735638187002958149'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2017/12/what-deflationary-currency-will-bring.html' title='What a deflationary currency will bring to the world?'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-1679954387509418497</id><published>2017-10-21T19:43:00.004-07:00</published><updated>2017-10-21T19:52:57.124-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="ripple"/><category scheme="http://www.blogger.com/atom/ns#" term="xrp"/><title type='text'>How exactly is XRP going to work as a bridging digital asset?</title><content type='html'>Maybe this is obvious all along to some people. Anyway, I just figured this out. So I thought maybe it&#39;s worth sharing.&lt;br /&gt;
&lt;br /&gt;
Previously I thought the bridging consists of two transactions, both on XRP ledger. One from fiat currency A IOU to XRP, the other from XRP to fiat currency B IOU.&lt;br /&gt;
&lt;br /&gt;
Then I saw this:&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://www.xrpchat.com/topic/10981-xrapid-uses-crypto-exchanges-to-route-payments-in-real-time/&quot;&gt;https://www.xrpchat.com/topic/10981-xrapid-uses-crypto-exchanges-to-route-payments-in-real-time/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
So Miguel Vias said in the pilot they used liquidity on bitstamp and bitso. However it&#39;s seems the trading volume of XRP/bitso.MXN since the beginning of 2017 is so low that it&#39;s virtually no liquidity there. See this:&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://xrpcharts.ripple.com/#/markets/XRP/MXN:rG6FZ31hDHN1K5Dkbma3PSB5uVCuVVRzfn?interval=1d&amp;amp;range=1y&amp;amp;type=candlestick&quot;&gt;https://xrpcharts.ripple.com/#/markets/XRP/MXN:rG6FZ31hDHN1K5Dkbma3PSB5uVCuVVRzfn?interval=1d&amp;amp;range=1y&amp;amp;type=candlestick&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Then I realized, just like bitstamp, bitso has its own exchange and the liquidity there is much better.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://bitso.com/trade/market/xrp/mxn&quot;&gt;https://bitso.com/trade/market/xrp/mxn&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
So now it&#39;s clear to me there is another way for XRP to bridge cross-border payments. The originating party acquires XRP however it wants, buy XRP on XRP ledger using source fiat currency IOU or buy XRP on an exchange then withdraw to its ripple wallet on XRP ledger. Then it deposit the XRP to an exchange. This happens on XRP ledger. Then buy the destination fiat currency using XRP on that exchange. All of these can happen very quickly since transactions on exchanges are also fast.&lt;br /&gt;
&lt;br /&gt;
Does this make sense? Let me know your thoughts. Thanks!</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/1679954387509418497/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/1679954387509418497' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/1679954387509418497'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/1679954387509418497'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2017/10/how-exactly-is-xrp-going-to-work-as.html' title='How exactly is XRP going to work as a bridging digital asset?'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-9032687693328518616</id><published>2017-10-20T12:56:00.001-07:00</published><updated>2017-10-20T15:12:55.446-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="interledger"/><category scheme="http://www.blogger.com/atom/ns#" term="ripple"/><category scheme="http://www.blogger.com/atom/ns#" term="xrp"/><title type='text'>More ILP news</title><content type='html'>&lt;br /&gt;
An article about &lt;a href=&quot;https://interledger.org/&quot;&gt;ILP&lt;/a&gt; posted on American Express&#39;s website. It could mean nothing. But I won&#39;t be surprised if AE turned out to be using ILP for real since there&#39;s already &lt;a href=&quot;https://twitter.com/celio2202/status/919051498981679105&quot; target=&quot;_blank&quot;&gt;rumor&lt;/a&gt; about it.&lt;br /&gt;
&lt;a href=&quot;https://www.blogger.com/goog_609653558&quot;&gt;&lt;br /&gt;&lt;/a&gt;
&lt;a href=&quot;https://www.americanexpress.com/us/content/foreign-exchange/articles/international-payments-hyperledger-interledger/&quot;&gt;https://www.americanexpress.com/us/content/foreign-exchange/articles/international-payments-hyperledger-interledger/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
everis (NTT Data) confirm their adoption of ILP as the Hyperledger Quilt Project&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://insights.everis.co.uk/post/102eihg/everis-ntt-data-confirm-their-adoption-of-ilp-as-the-hyperledger-quilt-project&quot;&gt;http://insights.everis.co.uk/post/102eihg/everis-ntt-data-confirm-their-adoption-of-ilp-as-the-hyperledger-quilt-project&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
These news prove that Ripple&#39;s collaboration with Hyperledger to produce the Java implementation of ILP (Hyperledger Quilt Project) is a very brilliant move.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://interledger.org/rfcs/shared/graphs/interledger-model.svg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Interledger Model: Sender, Connectors, Ledgers, Receiver&quot; border=&quot;0&quot; class=&quot;img-responsive&quot; src=&quot;https://interledger.org/rfcs/shared/graphs/interledger-model.svg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
So what does that mean for XRP? If you are a long time XRP hodler, you probably have already known this. But if you don&#39;t: The more ledgers ILP connects, the more payment volume XRP will be able to bridge. See also&amp;nbsp;&lt;a href=&quot;https://www.quora.com/Even-if-the-XRP-transaction-is-4-seconds-what-is-the-real-world-use-of-it/answer/David-Schwartz-9?share=6938bd7d&quot;&gt;this&lt;/a&gt;.</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/9032687693328518616/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/9032687693328518616' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/9032687693328518616'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/9032687693328518616'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2017/10/more-ilp-news.html' title='More ILP news'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-159925609221755294</id><published>2017-10-19T12:23:00.002-07:00</published><updated>2017-10-20T19:48:01.518-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="ripple"/><category scheme="http://www.blogger.com/atom/ns#" term="xrp"/><title type='text'>Ripple released Q3 XRP market report</title><content type='html'>&lt;a href=&quot;https://ripple.com/insights/q3-2017-xrp-markets-report/&quot;&gt;https://ripple.com/insights/q3-2017-xrp-markets-report/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
The release caused the price to shot up vertically. Although it fell back a little shortly after.&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnePUF2Eh-W-dNJR1dwLPNWG7OSKybMrDttEibEcG0vCdOlXx1NZPXyoBHSFZBDMz_yAKfsCcoK1XW7mzIvVPW_heur8-juXJWiyuQqtLiNJHcu58cX4bz6QzxupY3eiLU_QB-/s1600/XRP+Charts.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;266&quot; data-original-width=&quot;388&quot; height=&quot;219&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnePUF2Eh-W-dNJR1dwLPNWG7OSKybMrDttEibEcG0vCdOlXx1NZPXyoBHSFZBDMz_yAKfsCcoK1XW7mzIvVPW_heur8-juXJWiyuQqtLiNJHcu58cX4bz6QzxupY3eiLU_QB-/s320/XRP+Charts.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
The highlights of the report in my opinion are:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;23 percent Q-o-Q volume increase&lt;/li&gt;
&lt;li&gt;More&amp;nbsp;&lt;a href=&quot;https://ripple.com/solutions/source-liquidity/&quot;&gt;xRapid&lt;/a&gt; partnerships to be announced in Q4&lt;/li&gt;
&lt;/ul&gt;
</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/159925609221755294/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/159925609221755294' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/159925609221755294'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/159925609221755294'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2017/10/ripple-released-q3-xrp-market-report.html' title='Ripple released Q3 XRP market report'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnePUF2Eh-W-dNJR1dwLPNWG7OSKybMrDttEibEcG0vCdOlXx1NZPXyoBHSFZBDMz_yAKfsCcoK1XW7mzIvVPW_heur8-juXJWiyuQqtLiNJHcu58cX4bz6QzxupY3eiLU_QB-/s72-c/XRP+Charts.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-5069894238364999855</id><published>2017-09-11T13:15:00.002-07:00</published><updated>2017-10-18T13:16:53.682-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="ripple"/><category scheme="http://www.blogger.com/atom/ns#" term="xrp"/><title type='text'>xrp.ninja ripple.txt</title><content type='html'>I have created ripple.txt for my validator, following this instruction:&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://wiki.ripple.com/Ripple.txt&quot;&gt;https://wiki.ripple.com/Ripple.txt&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Here is the link to my ripple.txt&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://xrp.ninja/ripple.txt&quot;&gt;https://xrp.ninja/ripple.txt&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Here is my validator:&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://xrpcharts.ripple.com/#/validators/nHBTqw7vwjqrSMruoQNYmSXcrBmQHDquG7jgvrsQpurGaVELqdNx&quot;&gt;https://xrpcharts.ripple.com/#/validators/nHBTqw7vwjqrSMruoQNYmSXcrBmQHDquG7jgvrsQpurGaVELqdNx&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
I am going to have ripple employee change the validated domain name from rippled.xrp.ninja to just xrp.ninja.&lt;br /&gt;
&lt;br /&gt;
The ripple.txt file can be validated here:&amp;nbsp;&lt;a href=&quot;https://ripple.com/build/ripple-txt-validator/&quot;&gt;https://ripple.com/build/ripple-txt-validator/&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/5069894238364999855/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/5069894238364999855' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/5069894238364999855'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/5069894238364999855'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2017/09/xrpninja-rippletxt.html' title='xrp.ninja ripple.txt'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-1233973656307671571</id><published>2017-07-13T16:12:00.001-07:00</published><updated>2017-07-14T10:41:08.249-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="ripple"/><category scheme="http://www.blogger.com/atom/ns#" term="xrp"/><title type='text'>Several possible attacking modes on XRP ledger </title><content type='html'>&lt;a href=&quot;https://www.xrpchat.com/topic/7229-a-question-about-validators/?do=findComment&amp;amp;comment=69555&quot;&gt;https://www.xrpchat.com/topic/7229-a-question-about-validators/?do=findComment&amp;amp;comment=69555&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
There are several degrees of damage, that trusted validators can do (if they decide to give up their hard-earned trust), in increasing difficulty order: &lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;If a set of them, each of which only trust others in the same set, with less than 20% of them trust validators not in that set, decide to collude, they can create fork.&lt;/li&gt;
&lt;li&gt;If more than 20% of them decide to collude, they can prevent transactions from being validated.&lt;/li&gt;
&lt;li&gt;If more than 80% of them decide to collude, they can rewrite history as they wish.&amp;nbsp;&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
However, as pointed out by mDuo13@, creating a fork is easy, but making people accept it is hard.</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/1233973656307671571/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/1233973656307671571' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/1233973656307671571'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/1233973656307671571'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2017/07/several-possible-attack-modes-on-xrp.html' title='Several possible attacking modes on XRP ledger '/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-4735490543457518488</id><published>2017-07-10T00:10:00.002-07:00</published><updated>2018-01-03T15:51:44.427-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="bitcoin"/><category scheme="http://www.blogger.com/atom/ns#" term="ripple"/><category scheme="http://www.blogger.com/atom/ns#" term="xrp"/><title type='text'>Ripple&#39;s XRP: Giving the Third-Largest Cryptocurrency a Second Look</title><content type='html'>&lt;a href=&quot;http://www.coindesk.com/ripples-xrp-giving-third-largest-cryptocurrency-second-look/&quot;&gt;http://www.coindesk.com/ripples-xrp-giving-third-largest-cryptocurrency-second-look/&lt;/a&gt;&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
It&#39;s not news that coindesk is very biased against Ripple. But publishing such an article is crossing the line. This author either really didn&#39;t know Ripple well, or he just wanted to mislead people. It&#39;s a shame for coindesk to publish such a garbage.&lt;br /&gt;
&lt;br /&gt;
I will refute some of the claims made in that article.&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;i&gt;&quot;Instead of using proof-of-work, it relied on a new, unproven consensus protocol.&quot;&lt;/i&gt;&lt;/blockquote&gt;
Calling ripple consensus protocol is unproven is a bold assertion. Yet it didn&#39;t even try to back it up. On the other hand, XRP ledger has been in use for years and there has been no reports that it doesn&#39;t work. And it has defended itself against Stellar&#39;s attack once.&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;i&gt;&quot;This protocol requires users to extend trust to validating servers that produce this consensus.&quot;&lt;/i&gt;&lt;/blockquote&gt;
False. Users only need to trust gateway. Users never need to trust validator. Validators need to trust validators. Each validator keeps its trusted peers in UNL. The consensus is achieved if 80% of the validators agree on a set of transactions. The UNL for each validator can be different.&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;i&gt;&quot;Relying on trust, rather than proof-of-work, kind of makes sense for Ripple, because you need similar trust relationships anyway for IOUs to work.&quot;&lt;/i&gt;&lt;/blockquote&gt;
It doesn&#39;t make sense to compare trust with proof-of-work. Because consensus in Ripple is not achieved through trust. I just discussed how consensus is achieve in the previous point. Whether or not a single trusted validator validates a transaction doesn&#39;t mean anything.&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;i&gt;&quot;Instead of needing to trust only the mathematics of proof-of-work, you can only trust the XRP token by setting up trust lines that almost inevitably end at Ripple.&quot;&lt;/i&gt;&lt;/blockquote&gt;
This is completely nonsense. XRP doesn&#39;t need trust. XRP is the native asset on XRP ledger. It doesn&#39;t need trust lines. And, trust (whatever he means by it) doesn&#39;t bear any resemblance to proof-of-work.&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;i&gt;&quot;And while in theory anyone can set up such a server, if Ripple does not include your server in their trust lines, then you&#39;re not part of the consensus-making process.&quot;&lt;/i&gt;&lt;/blockquote&gt;
This is nonsense too. There is no such thing as including a server in trust line. However, a validator does need to be trusted by other validators to participate in the consensus process. But Ripple, the company, doesn&#39;t decide whether a validator is trusted or not. Each validator choose their own trusted validators. Ripple, the company, currently does recommend a list of trusted validators. But that doesn&#39;t mean everyone must use it.&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;i&gt;&quot;So, Ripple is highly centralized and XRP is more akin to a PayPal account than a trustless system like bitcoin.&quot;&lt;/i&gt;&lt;/blockquote&gt;
The argument that Ripple is centralized only makes sense at this moment if you are referring to the fact that most validators currently trust the UNL that Ripple the company recommends. However, that will change. See &lt;a href=&quot;https://ripple.com/insights/how-we-are-further-decentralizing-the-ripple-consensus-ledger-rcl-to-bolster-robustness-for-enterprise-use/&quot;&gt;this&lt;/a&gt;.&amp;nbsp;It should be noted that it&#39;s actually much easier (you read it right, easier) to gain super power in bitcoin network than in ripple network, because in bitcoin network, all you need is the sheer computing power, but in ripple network, you need to make people trust you. It&#39;s much harder to gain people&#39;s trust.&lt;br /&gt;
&lt;br /&gt;
Also XRP is not like PayPal at all. Anyone can create a ripple wallet. And there are many ways to activate it. No one can control it but the owner of the wallet. On the other hand, a PayPal account can be terminated by PayPal at any time.&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&quot;why would liquidity providers not use any other common (reserve) currency like US dollars for that, especially considering the highly volatile price of XRP ?&quot;&lt;/blockquote&gt;
Market maker would use XRP instead of USD for bridging asset for the following reasons:&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;USD is inflationary, XRP is deflationary&lt;/li&gt;
&lt;li&gt;XRP has some features which make it a better bridging currency on ILP:&lt;/li&gt;
&lt;ol&gt;
&lt;li&gt;Autobridging &lt;a href=&quot;https://ripple.com/dev-blog/introducing-offer-autobridging/&quot;&gt;https://ripple.com/dev-blog/introducing-offer-autobridging/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Escrow &lt;a href=&quot;https://ripple.com/build/amendments/#escrow&quot;&gt;https://ripple.com/build/amendments/#escrow&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/ol&gt;
The high volatility is not an issue. This is already taken into consideration. See the following graph, using high volatility XRP, Ripple&#39;s customers (banks) just need to pay more for currency hedging, but still it&#39;s cheaper than not using XRP. If XRP market becomes stable, the customer will save even more money.&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh4PlbE58_SQ3J4bOAvnmyOZbYaA3zRseEQrHMyxDc-gcMWY74hB8ZlJntzc8Rb9uRSQZW4ACq78WS7ZGzuFpYn2Nrp4tauJ5qUfgtnSE213ccP0pkDCb9JkHn9Jj6DRKZfWept/s1600/ripple-cost.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;958&quot; data-original-width=&quot;1600&quot; height=&quot;191&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh4PlbE58_SQ3J4bOAvnmyOZbYaA3zRseEQrHMyxDc-gcMWY74hB8ZlJntzc8Rb9uRSQZW4ACq78WS7ZGzuFpYn2Nrp4tauJ5qUfgtnSE213ccP0pkDCb9JkHn9Jj6DRKZfWept/s320/ripple-cost.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;i&gt;&quot;In short, it&#39;s hard to come up with any rational reason why XRP exists in the Ripple protocol, other than as a means for Ripple to make money.&quot;&lt;/i&gt;&lt;/blockquote&gt;
It&#39;s just clueless for him to say XRP is just a means for Ripple to make money. Ripple, the company, doesn&#39;t make money by selling XRP, at least it won&#39;t be their long term revenue source. Their employees doesn&#39;t make money by selling XRP. They are not allowed to sell XRP while being employed.&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;i&gt;&quot;That&#39;s like ignoring the estimated 1 million bitcoin in [bitcoin creator] Satoshi Nakamoto&#39;s wallet just because they are not circulating at the moment, and may never circulate. &quot;&lt;/i&gt;&lt;/blockquote&gt;
That&#39;s totally different. XRP supports escrow. Bitcoin doesn&#39;t. If some XRP is put into escrow, it&#39;s just impossible for them to go into circulation. Just no way. There is no such guarantee for Satoshi&#39;s bitcoin.&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;i&gt;&quot;ILP was also developed by Ripple, and appears to be a fairly impressive piece of technology to bridge between various blockchains and systems. It&#39;s open source, hosted by the Linux Foundation and could become a part of the Hyperledger framework.&quot;&lt;/i&gt;&lt;/blockquote&gt;
ILP is not hosted by Linux Foundation. Hyperledger is hosted by Linux Foundation. The only connection between ILP and Linux Foundation is Hyperledger Quilt which is a Java implementation of ILP.&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;i&gt;&quot;But note that ILP itself has no native token; it doesn&#39;t depend on XRP and doesn&#39;t add value to it. Even if ILP finds wide adoption in the fintech industry, it will do precious little for XRP.&quot;&lt;/i&gt;&lt;/blockquote&gt;
ILP provides a level playground for bridging assets in which XRP by far seems to be the single player. Using bridging asset will have great benefits for banks because banks doesn&#39;t need to keep cash in nostro accounts any more.&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;i&gt;&quot;As for the moonshot of replacing Swift; first of all, I highly doubt a global consensus protocol is the right approach and could even scale to that level. But also, banks currently control Swift. How likely is it they would relinquish control to a small startup and allow themselves to become beholden to its private currency, that they have no need for? I just don&#39;t see that happening.&quot;&lt;/i&gt;&lt;/blockquote&gt;
It&#39;s not XRP ledger that will replace Swift. It&#39;s ILP which is not a global consensus protocol. Swift is testing Hyperledger Fabric which will allow Swift to have real-time settlement ability, just like ILP. However, Ripple&#39;s solution will still have advantage over Swift&#39;s Hyperledger Fabric solution. See &lt;a href=&quot;https://ripple.com/insights/empire-strikes-back/&quot;&gt;https://ripple.com/insights/empire-strikes-back/&lt;/a&gt;&amp;nbsp;The empire will be defeated. And the lethal weapon will just be XRP.</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/4735490543457518488/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/4735490543457518488' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/4735490543457518488'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/4735490543457518488'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2017/07/ripples-xrp-giving-third-largest.html' title='Ripple&#39;s XRP: Giving the Third-Largest Cryptocurrency a Second Look'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh4PlbE58_SQ3J4bOAvnmyOZbYaA3zRseEQrHMyxDc-gcMWY74hB8ZlJntzc8Rb9uRSQZW4ACq78WS7ZGzuFpYn2Nrp4tauJ5qUfgtnSE213ccP0pkDCb9JkHn9Jj6DRKZfWept/s72-c/ripple-cost.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12574936.post-5491217559511638741</id><published>2017-06-30T13:21:00.000-07:00</published><updated>2017-06-30T13:21:07.570-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="ripple"/><category scheme="http://www.blogger.com/atom/ns#" term="xrp"/><title type='text'>This article effectively pointed out ripple will be one of the final winners and yet it didn&#39;t know it</title><content type='html'>&lt;a href=&quot;http://www.zerohedge.com/news/2017-06-30/understanding-cryptocurrency-boom-and-its-volatility&quot;&gt;http://www.zerohedge.com/news/2017-06-30/understanding-cryptocurrency-boom-and-its-volatility&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
It says:&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;speculative booms eventually end and technologies mature into forms that solve real business problems in uniquely cheap and robust ways no other technology can match.&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
That said technology exists today. It is Ripple/XRP.</content><link rel='replies' type='application/atom+xml' href='https://r0bertz.blogspot.com/feeds/5491217559511638741/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/12574936/5491217559511638741' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/5491217559511638741'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/12574936/posts/default/5491217559511638741'/><link rel='alternate' type='text/html' href='https://r0bertz.blogspot.com/2017/06/this-article-effectively-pointed-out.html' title='This article effectively pointed out ripple will be one of the final winners and yet it didn&#39;t know it'/><author><name>r0bertz</name><uri>http://www.blogger.com/profile/10735554351217955776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>