@koehler8/cms-ext-compliance 1.0.0-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +68 -0
- package/components/CookieConsent.vue +264 -0
- package/components/Cookies.vue +497 -0
- package/components/Legal.vue +42 -0
- package/components/Privacy.vue +425 -0
- package/components/Terms.vue +852 -0
- package/components/index.js +15 -0
- package/extension.config.json +52 -0
- package/index.js +33 -0
- package/package.json +31 -0
|
@@ -0,0 +1,852 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<section class="legal-page section-shell" data-analytics-section="terms">
|
|
3
|
+
<div class="container legal-page__container">
|
|
4
|
+
<article class="legal-card">
|
|
5
|
+
<header class="legal-card__header">
|
|
6
|
+
<h2 class="legal-card__title">{{ headerTitle }}</h2>
|
|
7
|
+
<span class="legal-divider" aria-hidden="true"></span>
|
|
8
|
+
<p class="legal-card__meta">Last modified: {{ lastUpdated }}</p>
|
|
9
|
+
</header>
|
|
10
|
+
<div class="legal-content">
|
|
11
|
+
<template v-if="hasCustomContent">
|
|
12
|
+
<p v-if="customIntro">{{ customIntro }}</p>
|
|
13
|
+
<div
|
|
14
|
+
v-if="customBody"
|
|
15
|
+
class="legal-rich-text"
|
|
16
|
+
v-html="customBody"
|
|
17
|
+
/>
|
|
18
|
+
<section
|
|
19
|
+
v-for="(section, index) in customSections"
|
|
20
|
+
:key="section.id || index"
|
|
21
|
+
class="legal-section"
|
|
22
|
+
>
|
|
23
|
+
<h3 v-if="section.title">{{ section.title }}</h3>
|
|
24
|
+
<p v-if="section.summary">{{ section.summary }}</p>
|
|
25
|
+
<div
|
|
26
|
+
v-if="section.body"
|
|
27
|
+
class="legal-rich-text"
|
|
28
|
+
v-html="section.body"
|
|
29
|
+
/>
|
|
30
|
+
<p
|
|
31
|
+
v-for="(paragraph, paragraphIndex) in section.paragraphs"
|
|
32
|
+
:key="`paragraph-${paragraphIndex}`"
|
|
33
|
+
>
|
|
34
|
+
{{ paragraph }}
|
|
35
|
+
</p>
|
|
36
|
+
<ul v-if="section.list.length">
|
|
37
|
+
<li
|
|
38
|
+
v-for="(item, itemIndex) in section.list"
|
|
39
|
+
:key="`item-${itemIndex}`"
|
|
40
|
+
>
|
|
41
|
+
{{ item }}
|
|
42
|
+
</li>
|
|
43
|
+
</ul>
|
|
44
|
+
</section>
|
|
45
|
+
</template>
|
|
46
|
+
<template v-else>
|
|
47
|
+
<p>{{siteName}} and/or its affiliates (“we,” “our,” or “us”) provides its software services
|
|
48
|
+
through its website located at {{ siteUrl }} and related mobile applications and products
|
|
49
|
+
(collectively the “Services” or “{{siteName}}”). Before using our Services, please read the Terms of Service (the “Terms”) carefully, along with any other policies or notices on our
|
|
50
|
+
website or mobile applications.</p>
|
|
51
|
+
|
|
52
|
+
<p><strong>Agreement To Terms</strong></p>
|
|
53
|
+
<p>
|
|
54
|
+
These Terms of Service (the “Agreement”) explains the terms and conditions by which you
|
|
55
|
+
may access and use ‘{{ siteUrl }}’, the app ‘{{siteName}}’, and any associated
|
|
56
|
+
subdomains (referred to as the "Website").
|
|
57
|
+
This agreement carefully outlines the rules and conditions that apply to your use of the
|
|
58
|
+
website and app. By accessing or using either the Website or App, you indicate that you
|
|
59
|
+
have read, understood, and agreed to be bound by the terms of this Agreement in its
|
|
60
|
+
entirety. If you do not agree with these terms, you are not authorized to access or use any of
|
|
61
|
+
the {{siteName}} Services and should refrain from doing so.
|
|
62
|
+
This Agreement includes essential information that affects your rights, such as a provision
|
|
63
|
+
for binding arbitration and a waiver of class action. These provisions dictate how disputes
|
|
64
|
+
will be resolved. Therefore, you can only access and use the Website and App if you
|
|
65
|
+
completely agree to all the terms outlined in this Agreement.
|
|
66
|
+
WE DO NOT PROVIDE INVESTMENT OR FINANCIAL ADVICE OR CONSULTING
|
|
67
|
+
SERVICES. OUR ROLE IS SOLELY TO PROVIDE '{{siteName}},' AND WE DO NOT
|
|
68
|
+
ADVISE OR MAKE RECOMMENDATIONS ABOUT ENGAGING IN DIGITAL ASSET
|
|
69
|
+
TRANSACTIONS OR OPERATIONS. ANY DECISIONS MADE WHEN PARTICIPATING IN
|
|
70
|
+
TRANSACTIONS OR OPERATIONS INVOLVING DIGITAL ASSETS SHOULD BE BASED
|
|
71
|
+
ON THE USER'S OWN JUDGMENT AND DISCRETION.
|
|
72
|
+
</p>
|
|
73
|
+
|
|
74
|
+
<p><strong>Updates to Terms or Services</strong></p>
|
|
75
|
+
<p>
|
|
76
|
+
We reserve the right to modify these Terms at any time at our sole discretion. In the event of
|
|
77
|
+
any changes to the Policy, users will be notified via email In a timely fashion. While our
|
|
78
|
+
intention is to provide advance notice prior to implementing any changes, there may be
|
|
79
|
+
circumstances where immediate changes are necessary and advance notice may not be
|
|
80
|
+
feasible. Revised Terms as posted will take effect immediately, unless otherwise indicated.
|
|
81
|
+
</p>
|
|
82
|
+
|
|
83
|
+
<p><strong>Introduction</strong></p>
|
|
84
|
+
<p>
|
|
85
|
+
{{siteName}} (The Application) provides access to a decentralized protocol on various public
|
|
86
|
+
blockchains, including but not limited to Ethereum Chain, BNB, Polygon and SOL, allowing
|
|
87
|
+
users to trade certain compatible digital assets such as “{{siteToken}}” ({{siteName}} native Token),
|
|
88
|
+
among other services. The website is one, but not the exclusive, means of accessing the
|
|
89
|
+
exchange.
|
|
90
|
+
{{siteName}} (The App) is a fully decentralized crypto wallet, which addresses concerns
|
|
91
|
+
present in traditional custody solutions regarding security, privacy, and control over assets.
|
|
92
|
+
The application provides access to a decentralized protocol on various public blockchains,
|
|
93
|
+
including but not limited to Ethereum Chain, BNB, Polygon and SOL. {{siteName}} allows
|
|
94
|
+
users to securely store, send, and receive cryptocurrencies, tokens, and other digital assets
|
|
95
|
+
using either the {{siteName}} App or the {{siteName}} Browser extension.
|
|
96
|
+
We ({{siteName}}) do not possess custody or control over the contents of your wallet and are
|
|
97
|
+
unable to retrieve or transfer its contents. By using any of {{siteName}} Services you
|
|
98
|
+
explicitly agree to be bound by this Agreement, as well as all terms referenced and
|
|
99
|
+
incorporated herein.
|
|
100
|
+
</p>
|
|
101
|
+
|
|
102
|
+
<p><strong>Eligibility</strong></p>
|
|
103
|
+
<p>
|
|
104
|
+
To access and us the services provided by {{siteName}}, you must have the capacity to enter
|
|
105
|
+
into a legally binding agreement with us. This requires you to declare that you have attained
|
|
106
|
+
the legal age of majority as defined by the laws of your jurisdiction (e.g., 18 years old in the
|
|
107
|
+
United States) and possess the full right, authority, and power to enter into and comply with
|
|
108
|
+
the terms and conditions specified in this Agreement. Furthermore, to be eligible for these
|
|
109
|
+
terms: (i) you must not be a resident of sanctioned jurisdictions in accordance with trade
|
|
110
|
+
embargoes, UN Security Council Resolutions ("UNSCR"), or HM Treasury's financial
|
|
111
|
+
sanctions regime; and (ii) you must not currently be subject to economic sanctions, such as
|
|
112
|
+
inclusion on the United Nations Security Council Sanctions List, the list of specially
|
|
113
|
+
designated nationals maintained by OFAC, the denied persons or entity list of the U.S.
|
|
114
|
+
Department of Commerce, or any similar list maintained by any other relevant sanctions
|
|
115
|
+
authority.
|
|
116
|
+
If you are utilizing our services on behalf of a legal entity, you additionally affirm and
|
|
117
|
+
guarantee that: (iii) the legal entity has been duly organized and validly exists under the
|
|
118
|
+
applicable laws of its jurisdiction of organization; and (iv) you are duly authorized by such
|
|
119
|
+
legal entity to act on its behalf. Your usage of our services is permitted only if it complies with
|
|
120
|
+
the laws of your jurisdiction. To clarify, you may not employ our services if you are situated
|
|
121
|
+
in, or a citizen or resident of any state, country, territory, or other jurisdiction where such
|
|
122
|
+
usage would be illegal or contravene any applicable laws. It is your responsibility to ensure
|
|
123
|
+
that these terms adhere to all applicable laws, rules, and regulations that are applicable to
|
|
124
|
+
you.
|
|
125
|
+
By utilizing {{siteName}}, you affirm and warrant that you meet all the eligibility requirements
|
|
126
|
+
outlined in these terms. However, we retain the right to deny access or usage of {{siteName}}
|
|
127
|
+
to certain individuals, and we reserve the discretion to modify our eligibility criteria at any
|
|
128
|
+
time.
|
|
129
|
+
</p>
|
|
130
|
+
|
|
131
|
+
<p><strong>Services</strong></p>
|
|
132
|
+
<p>
|
|
133
|
+
{{siteName}} is a software application that operates as a non-custodial wallet for various
|
|
134
|
+
digital assets, including cryptocurrencies, virtual commodities, and NFTs ("Digital Assets").
|
|
135
|
+
As a non-custodial wallet, you retain complete control and responsibility for your Digital
|
|
136
|
+
Assets and private keys. This grants you the authority to authorize transactions from your
|
|
137
|
+
wallet address. It is important to acknowledge and agree that {{siteName}}'s non-custodial
|
|
138
|
+
nature places the full responsibility for your actions and the associated risk of loss squarely
|
|
139
|
+
on you.
|
|
140
|
+
{{siteName}} provides the following functionalities:
|
|
141
|
+
</p>
|
|
142
|
+
<p>1. Generation of wallet addresses and their associated private keys, enabling you to
|
|
143
|
+
send and receive digital assets.</p>
|
|
144
|
+
<p>2. Access to third-party decentralized applications ("DApps") and decentralized
|
|
145
|
+
exchanges ("DEX") through the web browser integrated into the mobile application.</p>
|
|
146
|
+
<p>3. Capability to swap or trade digital assets utilizing the DApp functionality offered by
|
|
147
|
+
third-party service providers.</p>
|
|
148
|
+
<p>4. Option to stake specific digital assets within third-party "proof of stake" networks
|
|
149
|
+
through Staking Services.</p>
|
|
150
|
+
<p>5. Access to digital asset price information provided by third-party service providers.</p>
|
|
151
|
+
<p>6. Ability to broadcast Digital Asset Transaction data to various blockchains supported
|
|
152
|
+
by {{siteName}} without the need to download or install the respective
|
|
153
|
+
blockchain-based software on your local device.</p>
|
|
154
|
+
|
|
155
|
+
<p><strong>Wallet Address, Private Key, and Backup Capabilities</strong></p>
|
|
156
|
+
<p>
|
|
157
|
+
You have the option to store an encrypted backup of specific information related to your
|
|
158
|
+
wallet on eligible devices. The private key is directly linked to your wallet address and serves
|
|
159
|
+
as the means to authorize the transfer of Digital Assets to and from that particular wallet
|
|
160
|
+
address. It is your sole responsibility to securely retain and safeguard your private key and
|
|
161
|
+
any associated mnemonic phrase or "Secret Phrase" connected to your wallet. Ensuring the
|
|
162
|
+
security of your wallet address, Secret Phrase, and private key access information is of
|
|
163
|
+
utmost importance. It is crucial that you create backups of your private keys, backup
|
|
164
|
+
phrases, or passwords. Failure to do so may result in the loss of control over the Digital
|
|
165
|
+
Assets associated with your wallet.
|
|
166
|
+
Please note that we do not receive or store your wallet password, encrypted private key,
|
|
167
|
+
unencrypted private key, or Secret Phrase linked to your wallet. If you happen to forget your
|
|
168
|
+
original password, we are unable to generate a new one for your wallet. In the event that you
|
|
169
|
+
have not safely stored a backup of any wallet address and its corresponding private key
|
|
170
|
+
pairs within your wallet, you acknowledge and accept that any Digital Assets associated with
|
|
171
|
+
that wallet address will become inaccessible. Therefore, we assume no responsibility or
|
|
172
|
+
liability whatsoever if you are unable to access your wallet for any reason, including but not
|
|
173
|
+
limited to your failure to maintain the security of your wallet address, Secret Phrase, and
|
|
174
|
+
private key information.
|
|
175
|
+
</p>
|
|
176
|
+
|
|
177
|
+
<p><strong>Use of DApps and DEX</strong></p>
|
|
178
|
+
<p>
|
|
179
|
+
By accessing or using DApps or DEX, including the Trade/Swap Digital Assets function
|
|
180
|
+
embedded within the Services, you acknowledge and agree to the following terms:
|
|
181
|
+
(i) {{siteName}} assumes no responsibility for your access or use of DApps or DEX and shall
|
|
182
|
+
not be held liable for any issues or disputes arising from your use of DApps or DEX,
|
|
183
|
+
including any transaction disputes.
|
|
184
|
+
(ii) The limits on the amounts you may exchange via DEX per day are subject to the
|
|
185
|
+
requirements set forth by the third-party developed Smart Contracts.
|
|
186
|
+
(iii) Blockchain operations conducted through DApps or DEX are irreversible. Therefore, you
|
|
187
|
+
bear sole responsibility for any consequences resulting from such transactions, including any
|
|
188
|
+
transfer to an incorrect address or issues associated with the node servers you select.
|
|
189
|
+
(iv) When using DApps or DEX, third-party developed Smart Contracts may impose handling
|
|
190
|
+
fees and/or service fees. Any information regarding these fees displayed on {{siteName}} is
|
|
191
|
+
provided for your reference only. {{siteName}} cannot guarantee the accuracy, applicability,
|
|
192
|
+
reliability, integrity, or suitability of this information and shall not be liable for any loss or
|
|
193
|
+
damage caused directly or indirectly by your reliance on such content.
|
|
194
|
+
(v) Currently, {{siteName}} does not charge any service fees or handling fees for the use of
|
|
195
|
+
DApps or DEX. However, {{siteName}} reserves the right to impose such fees at its discretion
|
|
196
|
+
in the future. Any updated fees will apply to transactions occurring after the effective date of
|
|
197
|
+
the fee update.
|
|
198
|
+
</p>
|
|
199
|
+
|
|
200
|
+
<p><strong>Use of Staking Services</strong></p>
|
|
201
|
+
<p>
|
|
202
|
+
By accessing or using the Staking Service, you agree to the following terms:
|
|
203
|
+
1. A third party may stake certain Digital Assets on your behalf ("Staked Digital Assets")
|
|
204
|
+
by acting as a transaction validator on the applicable blockchain network.
|
|
205
|
+
2. If a block of transactions is successfully validated using the Staked Digital Assets, a
|
|
206
|
+
reward, known as the "Staking Reward," is granted by that network.
|
|
207
|
+
3. {{siteName}} assumes no responsibility for your use of the Staking Service and shall
|
|
208
|
+
not be held liable for any issues or disputes arising from your use of the Staking
|
|
209
|
+
Service.
|
|
210
|
+
4. {{siteName}} does not guarantee the continuous occurrence of Staking or the staking
|
|
211
|
+
of any particular Digital Asset. {{siteName}} is not responsible for ensuring that Staking
|
|
212
|
+
occurs on a continuous basis or that any specific Digital Asset will be staked or
|
|
213
|
+
continue to be staked.
|
|
214
|
+
Please note that the Staking Service is subject to the terms and conditions of the third party
|
|
215
|
+
providing the service.
|
|
216
|
+
</p>
|
|
217
|
+
|
|
218
|
+
<p><strong>Buy Digital Assets with Supported Credit or Debit Cards</strong></p>
|
|
219
|
+
<p>
|
|
220
|
+
If you choose to purchase Digital Assets using your credit or debit card through {{siteName}},
|
|
221
|
+
please note the following:
|
|
222
|
+
1. A third party will handle the conversion of your chosen amount into the applicable
|
|
223
|
+
Digital Asset and credit it to your wallet.
|
|
224
|
+
2. {{siteName}} is not responsible for your use of this third party service and shall not be
|
|
225
|
+
held liable for any issues or disputes arising from your use of the service.
|
|
226
|
+
3. You will be subject to the terms and conditions imposed by the relevant third party
|
|
227
|
+
service provider.
|
|
228
|
+
4. {{siteName}} does not have the ability to change, withdraw, or cancel any conversion
|
|
229
|
+
requests you place through the third party service.
|
|
230
|
+
5. {{siteName}} is not responsible for determining or controlling the exchange rates
|
|
231
|
+
offered by the third party service provider(s).
|
|
232
|
+
6. Any fees charged by the relevant third party service provider(s), as well as any fees
|
|
233
|
+
charged by your bank or credit card issuer(s), are not the responsibility of {{siteName}}.
|
|
234
|
+
Please ensure that you review and agree to the terms and conditions set forth by the third
|
|
235
|
+
party service provider before using their services.
|
|
236
|
+
</p>
|
|
237
|
+
|
|
238
|
+
<p><strong>Digital Asset Transactions</strong></p>
|
|
239
|
+
<p>
|
|
240
|
+
To ensure the completion of all proposed Digital Asset transactions, they must be confirmed
|
|
241
|
+
and recorded in the associated public blockchain of the Digital Asset. These blockchains are
|
|
242
|
+
decentralized, peer-to-peer networks supported by independent third parties that we do not
|
|
243
|
+
own, control, or operate. As a result, we have no control over these blockchain networks and
|
|
244
|
+
cannot guarantee the confirmation and processing of any transaction details you submit
|
|
245
|
+
through our Services. By using {{siteName}}, you acknowledge and agree to the following:
|
|
246
|
+
1. We do not have the ability to cancel or modify your transaction.
|
|
247
|
+
2. The transaction details you submit may not be completed or may experience
|
|
248
|
+
significant delays on the applicable blockchain networks.
|
|
249
|
+
3. We do not store, send, or receive Digital Assets.
|
|
250
|
+
4. Any transfer of Digital Assets occurs on the relevant blockchain network, not on a
|
|
251
|
+
network owned by us. Therefore, we do not guarantee the transfer of title or rights in
|
|
252
|
+
any Digital Asset.
|
|
253
|
+
</p>
|
|
254
|
+
|
|
255
|
+
<p><strong>Accuracy of Information Provided by User</strong></p>
|
|
256
|
+
<p>You represent and warrant that any information you provide through the Services is accurate
|
|
257
|
+
and complete. You accept and acknowledge that we are not responsible for any errors or
|
|
258
|
+
omissions made by you in connection with any Digital Asset transaction initiated through the
|
|
259
|
+
Services. We strongly recommend that you carefully review your transaction details before
|
|
260
|
+
attempting to transfer a Digital Asset.</p>
|
|
261
|
+
|
|
262
|
+
<p><strong>Wallet Registration and Security</strong></p>
|
|
263
|
+
<p>To use {{siteName}}, you must either import or create a wallet. Upon wallet creation, you will
|
|
264
|
+
receive a private key. It is your responsibility to immediately notify us of any unauthorized
|
|
265
|
+
use of your private key or any security breaches related to your wallet. However, you
|
|
266
|
+
acknowledge and agree that you assume all risks associated with using the Services, and
|
|
267
|
+
you are solely responsible for maintaining the confidentiality and security of your private key.
|
|
268
|
+
When creating a wallet, we strongly advise you to take precautions to prevent the loss of
|
|
269
|
+
access to or control over your wallet. These precautions include, but are not limited to:</p>
|
|
270
|
+
<p>● Creating a strong, unique password that is not used for any other purpose and
|
|
271
|
+
utilizing biometric authentication if available.</p>
|
|
272
|
+
<p>● Avoiding storing the private key and Secret Phrase in plain text online or in an
|
|
273
|
+
unsecured physical location.</p>
|
|
274
|
+
<p>● Restricting access to your devices and wallet.</p>
|
|
275
|
+
<p>● Taking necessary measures to protect against malware on your devices and
|
|
276
|
+
networks.</p>
|
|
277
|
+
<p>● Promptly notifying us if you discover or suspect any security breaches related to your
|
|
278
|
+
wallet.</p>
|
|
279
|
+
<p>Regardless of the above, we hold no liability whatsoever for activities that occur on your
|
|
280
|
+
wallet, with or without your authorization.</p>
|
|
281
|
+
|
|
282
|
+
<p><strong>Transaction Fees</strong></p>
|
|
283
|
+
<p>
|
|
284
|
+
Virtual currency transactions may be subject to transaction fees, such as mining fees,
|
|
285
|
+
imposed by the virtual currency system or blockchain network you are using. Before initiating
|
|
286
|
+
a transaction, you are responsible for ensuring that you have a sufficient balance in your
|
|
287
|
+
wallet and/or "gas" to cover the transaction fees. You acknowledge and agree that we will
|
|
288
|
+
not be held liable for any failed transactions or losses you experience due to incorrectly set
|
|
289
|
+
transaction fees (either too low or too high) or insufficient funds or gas associated with your
|
|
290
|
+
wallet address. Additionally, we do not have access to your transactions or those of any
|
|
291
|
+
other user.
|
|
292
|
+
</p>
|
|
293
|
+
|
|
294
|
+
<p><strong>Taxes</strong></p>
|
|
295
|
+
<p>
|
|
296
|
+
It is your responsibility to determine whether any taxes apply to the transactions you initiate
|
|
297
|
+
through the Services and to report and remit the appropriate tax to the relevant tax authority.
|
|
298
|
+
We are not responsible for determining the applicability of taxes to your transactions or for
|
|
299
|
+
collecting, reporting, withholding, or remitting any taxes associated with Digital Asset-related
|
|
300
|
+
transactions.
|
|
301
|
+
</p>
|
|
302
|
+
|
|
303
|
+
<p><strong>Third Party Services And Content</strong></p>
|
|
304
|
+
<p>
|
|
305
|
+
Please note that {{siteName}} does not have any control over or assume liability for various
|
|
306
|
+
aspects of Digital Assets transactions, including the delivery, quality, safety, legality, or any
|
|
307
|
+
other aspect of the assets transferred to or from a third party. {{siteName}} does not
|
|
308
|
+
guarantee the completion of transactions or the authorization of the entities involved. If you
|
|
309
|
+
encounter any issues or problems with a transaction using their services, you bear all
|
|
310
|
+
associated risks and liabilities.
|
|
311
|
+
</p>
|
|
312
|
+
|
|
313
|
+
<p><strong>Intellectual Property Rights</strong></p>
|
|
314
|
+
<p>
|
|
315
|
+
{{siteName}} retains exclusive ownership of all intellectual property and other rights
|
|
316
|
+
associated with the Website, App and its contents. This includes, but is not limited to,
|
|
317
|
+
software, text, images, trademarks, service marks, copyrights, patents, designs, and the
|
|
318
|
+
overall "look and feel" of the Website. On the other hand, versions 1-3 of the Protocol are
|
|
319
|
+
constructed entirely from open-source or source-available software that operates on public
|
|
320
|
+
blockchains.
|
|
321
|
+
If you (the user) agrees to and complies with the terms, you are granted a non-exclusive,
|
|
322
|
+
non-sublicensable, and non-transferable license to use {{siteName}} for personal use or
|
|
323
|
+
internal business use only. However, there are certain restrictions and limitations on your use
|
|
324
|
+
of {{siteName}}. Specifically, you are not allowed to reproduce, modify, adapt, or create
|
|
325
|
+
derivative works of {{siteName}}. You cannot rent, lease, distribute, sell, sublicense, transfer,
|
|
326
|
+
or provide access to {{siteName}} to third parties. {{siteName}} should not be used for the
|
|
327
|
+
benefit of any third party without prior consent. You are also prohibited from incorporating
|
|
328
|
+
{{siteName}} into a product or service provided to a third party without obtaining written
|
|
329
|
+
consent from the owner. Any attempts to circumvent usage limitations or reverse engineer
|
|
330
|
+
the software are strictly prohibited, except as expressly permitted by applicable law and with
|
|
331
|
+
advance notice to the owner. Additionally, you should not remove or obscure any proprietary
|
|
332
|
+
or other notices contained in {{siteName}}. Using {{siteName}} for competitive analysis or to
|
|
333
|
+
build competitive products is also not permitted.
|
|
334
|
+
</p>
|
|
335
|
+
|
|
336
|
+
<p><strong>Further Rights</strong></p>
|
|
337
|
+
<p>
|
|
338
|
+
We reserve certain rights, which are not considered obligations on our part. These rights
|
|
339
|
+
include the following:
|
|
340
|
+
(a) We have the authority to review, modify, filter, disable, delete, and remove any and all
|
|
341
|
+
content and information from the Website.
|
|
342
|
+
(b) We may, at our discretion and with or without prior notice to you, modify, substitute,
|
|
343
|
+
eliminate, or add to the Website.
|
|
344
|
+
(c) We may cooperate with law enforcement, court orders, government investigations, or
|
|
345
|
+
third-party requests that require or direct us to disclose information or content provided by
|
|
346
|
+
you.
|
|
347
|
+
Please note that while we retain these rights, their exercise does not create an obligation for
|
|
348
|
+
us to act in a specific manner.
|
|
349
|
+
</p>
|
|
350
|
+
|
|
351
|
+
<p><strong>Prohibited Activity</strong></p>
|
|
352
|
+
<p>
|
|
353
|
+
You agree not to engage in, or attempt to engage in, any of the following categories of
|
|
354
|
+
prohibited activity in relation to your access and use of the Website:
|
|
355
|
+
</p>
|
|
356
|
+
|
|
357
|
+
<p><strong>Basic</strong></p>
|
|
358
|
+
<p>
|
|
359
|
+
1. Unauthorized access: Users must not attempt to gain unauthorized access to the
|
|
360
|
+
website, its systems, or any other user accounts.
|
|
361
|
+
2. Illegal activities: Users must not engage in any activity that is unlawful, fraudulent, or
|
|
362
|
+
promotes illegal behavior.
|
|
363
|
+
3. Intellectual property infringement: Users must not infringe upon the intellectual
|
|
364
|
+
property rights of others, including copyright, trademarks, patents, or trade secrets.
|
|
365
|
+
4. Spam and phishing: Users must not send unsolicited or deceptive communications,
|
|
366
|
+
including spam, phishing attempts, or other fraudulent activities.
|
|
367
|
+
5. Malicious software: Users must not distribute viruses, malware, or any other harmful
|
|
368
|
+
software or code that could damage or disrupt the website or its users.
|
|
369
|
+
6. Harassment and abuse: Users must not engage in any form of harassment, bullying,
|
|
370
|
+
or abusive behavior towards other users, including hate speech, threats, or personal
|
|
371
|
+
attacks.
|
|
372
|
+
7. Impersonation: Users must not impersonate another person, entity, or falsely
|
|
373
|
+
represent their affiliation with a person or organization.
|
|
374
|
+
8. Data mining and scraping: Users must not engage in unauthorized data mining,
|
|
375
|
+
scraping, or harvesting of information from the website or its users.
|
|
376
|
+
9. Violation of privacy: Users must respect the privacy of others and not engage in
|
|
377
|
+
activities that violate the privacy rights of individuals, including the unauthorized
|
|
378
|
+
collection or dissemination of personal information.
|
|
379
|
+
10.Violation of terms: Users must comply with all terms and conditions outlined in the
|
|
380
|
+
website's Terms of Service and not engage in any activity that violates these terms.
|
|
381
|
+
</p>
|
|
382
|
+
|
|
383
|
+
<p><strong>Extended Prohibited Activity</strong></p>
|
|
384
|
+
<p>
|
|
385
|
+
1. Intellectual Property Infringement: Users are strictly prohibited from engaging in any
|
|
386
|
+
activity that infringes upon or violates any copyright, trademark, service mark, patent,
|
|
387
|
+
right of publicity, right of privacy, or other proprietary or intellectual property rights
|
|
388
|
+
under the law.
|
|
389
|
+
2. Cyberattack: Users shall not participate in any activity that aims to interfere with or
|
|
390
|
+
compromise the integrity, security, or proper functioning of any computer, server,
|
|
391
|
+
network, personal device, or other information technology system. This includes, but
|
|
392
|
+
is not limited to, the deployment of viruses and denial of service attacks.
|
|
393
|
+
3. Fraud and Misrepresentation: Users are prohibited from engaging in any activity that
|
|
394
|
+
seeks to defraud us or any other person or entity. This includes providing false,
|
|
395
|
+
inaccurate, or misleading information with the intent to unlawfully obtain the property
|
|
396
|
+
of another.
|
|
397
|
+
4. Market Manipulation: Users shall not engage in any activity that violates any
|
|
398
|
+
applicable laws, rules, or regulations concerning the integrity of trading markets. This
|
|
399
|
+
includes, but is not limited to, manipulative tactics such as "rug pulls," pumping and
|
|
400
|
+
dumping, and wash trading.
|
|
401
|
+
5. Securities and Derivatives Violations: Users must not engage in any activity that
|
|
402
|
+
violates any applicable laws, rules, or regulations concerning the trading of securities
|
|
403
|
+
or derivatives. This includes, but is not limited to, the unregistered offering of
|
|
404
|
+
securities and the offering of leveraged and margined commodity products to retail
|
|
405
|
+
customers in the United States.
|
|
406
|
+
6. Sale of Stolen Property: Users shall not engage in the buying, selling, or transferring
|
|
407
|
+
of stolen items, fraudulently obtained items, items taken without authorization, and/or
|
|
408
|
+
any other illegally obtained items.
|
|
409
|
+
7. Data Mining or Scraping: Users are strictly prohibited from engaging in activity that
|
|
410
|
+
involves data mining, robots, scraping, or similar methods of gathering or extracting
|
|
411
|
+
content or information from the Website.
|
|
412
|
+
8. Objectionable Content: Users must refrain from engaging in any activity that involves
|
|
413
|
+
soliciting information from anyone under the age of 18 or that is otherwise harmful,
|
|
414
|
+
threatening, or offensive in nature.
|
|
415
|
+
</p>
|
|
416
|
+
|
|
417
|
+
<p><strong>Feedback</strong></p>
|
|
418
|
+
<p>
|
|
419
|
+
From time to time, you may choose to submit feedback to us. We may, in connection with
|
|
420
|
+
{{siteName}}, freely use, copy, disclose, license, distribute and exploit any feedback in any
|
|
421
|
+
manner without any obligation, royalty or restriction based on intellectual property rights or
|
|
422
|
+
otherwise. No feedback will be considered your Confidential Information, and nothing in this
|
|
423
|
+
Agreement limits our right to independently use, develop, evaluate, or market products or
|
|
424
|
+
services, whether incorporating feedback or otherwise.
|
|
425
|
+
</p>
|
|
426
|
+
|
|
427
|
+
<p><strong>Content</strong></p>
|
|
428
|
+
<p>
|
|
429
|
+
{{siteName}} may contain copyrighted material and trademarks including, but not limited to,
|
|
430
|
+
text and graphics (the “Content”), which is protected by copyright law, registered and
|
|
431
|
+
unregistered trademarks, and other intellectual property rights. Unless otherwise provided,
|
|
432
|
+
we exclusively own the Content. Your use of {{siteName}} does not grant you any right, title,
|
|
433
|
+
or interest in the Content. You agree that you will not copy, reproduce, modify, republish,
|
|
434
|
+
upload, post, transmit, distribute, collect, sell, license, create derivative works from, or, in any
|
|
435
|
+
other way, whether manual or automated, exploit any of the Content, in whole or in part.
|
|
436
|
+
</p>
|
|
437
|
+
|
|
438
|
+
<p><strong>License to NFT Content</strong></p>
|
|
439
|
+
<p>
|
|
440
|
+
You may be able to store non-fungible tokens (“NFTs”) on {{siteName}}. You hereby represent
|
|
441
|
+
and warrant that you own all legal right, title in and interest to, including all intellectual
|
|
442
|
+
property rights to the content associated with the NFT (“NFT Content”), or you are legally
|
|
443
|
+
authorized by the owner of the intellectual property in the NFT Content to store the NFTs on
|
|
444
|
+
{{siteName}}. You retain all rights to the NFT Content stored or {{siteName}} except for rights
|
|
445
|
+
expressly granted herein. By using {{siteName}}, you grant us a license to access, use, host,
|
|
446
|
+
cache, store, copy, reproduce, transmit, display, publish, distribute, adapt and modify (for
|
|
447
|
+
technical purposes, e.g., making sure content is viewable on smartphones as well as
|
|
448
|
+
computers and other devices) the NFT Content in any and all media or distribution methods
|
|
449
|
+
(now know or later developed) solely as required to be able to operate and provide services
|
|
450
|
+
of {{siteName}}. We do not monitor the NFTs and NFT Content stored on {{siteName}} for any
|
|
451
|
+
infringement of a third party’s intellectual property rights. Accordingly, we assume no liability
|
|
452
|
+
for any action regarding any content provided by you. You further acknowledge and agree it
|
|
453
|
+
is your sole responsibility to carry out all necessary due diligence for all your activities
|
|
454
|
+
relating to NFTs, and you represent and warrant that you have not and are not relying on,
|
|
455
|
+
and shall have no remedies, in respect of any statement or representation made by us in
|
|
456
|
+
relation to any transfer or interaction otherwise with any NFTs. If you have a dispute in
|
|
457
|
+
relation to the NFTs and/or NFT Content, YOU RELEASE US FROM CLAIMS, DEMANDS,
|
|
458
|
+
AND DAMAGES OF EVERY KIND AND NATURE, KNOWN AND UNKNOWN, ARISING
|
|
459
|
+
OUT OF OR IN ANY WAY CONNECTED WITH SUCH DISPUTES. IN ENTERING INTO
|
|
460
|
+
THIS RELEASE YOU EXPRESSLY WAIVE ANY PROTECTIONS (WHETHER STATUTORY
|
|
461
|
+
OR OTHERWISE) THAT WOULD OTHERWISE LIMIT THE COVERAGE OF THIS
|
|
462
|
+
RELEASE TO INCLUDE THOSE CLAIMS WHICH YOU MAY
|
|
463
|
+
</p>
|
|
464
|
+
|
|
465
|
+
<p><strong>Non-Custodial Nature and Absence of Fiduciary Duties</strong></p>
|
|
466
|
+
<p>
|
|
467
|
+
The Website operates as a non-custodial application, meaning that we never have custody,
|
|
468
|
+
possession, or control over your digital assets at any point in time. It also implies that you
|
|
469
|
+
bear sole responsibility for safeguarding the cryptographic private keys to your digital asset
|
|
470
|
+
wallets. It is crucial that you refrain from sharing your wallet credentials or seed phrase with
|
|
471
|
+
any third party. We hold no responsibility or liability to you concerning your use of a wallet
|
|
472
|
+
and do not provide any representations or warranties regarding the compatibility of the
|
|
473
|
+
Website with any specific wallet. Similarly, any associated wallet is solely your responsibility,
|
|
474
|
+
and we are not liable for any actions or omissions on your part resulting from the
|
|
475
|
+
compromise of your wallet.
|
|
476
|
+
This Agreement does not aim to establish or impose any fiduciary duties upon us. To the
|
|
477
|
+
maximum extent permitted by applicable law, you acknowledge and agree that we have no
|
|
478
|
+
fiduciary duties or liabilities towards you or any other party. Any fiduciary duties or liabilities
|
|
479
|
+
that may exist by law or equity are hereby unequivocally disclaimed, waived, and eliminated.
|
|
480
|
+
Furthermore, you agree that the only duties and obligations we owe you are those expressly
|
|
481
|
+
stated in this Agreement.
|
|
482
|
+
</p>
|
|
483
|
+
|
|
484
|
+
<p><strong>Jurisdictional Compliance and Tax Obligations</strong></p>
|
|
485
|
+
<p>
|
|
486
|
+
The availability and suitability of the Website may be subject to jurisdictional limitations. By
|
|
487
|
+
accessing or using the Website, you explicitly acknowledge and agree that you bear
|
|
488
|
+
complete and exclusive responsibility for ensuring strict compliance with all applicable laws
|
|
489
|
+
and regulations that may pertain to your use of the Website.
|
|
490
|
+
It is important to note that your utilization of the Website or the Protocol may give rise to
|
|
491
|
+
various tax implications, including but not limited to income tax, capital gains tax,
|
|
492
|
+
value-added tax (VAT), goods and services tax (GST), or sales tax, as dictated by the
|
|
493
|
+
relevant jurisdictions. It is your sole obligation to diligently assess whether such taxes apply
|
|
494
|
+
to any transactions you engage in or receive through the Website, and if determined
|
|
495
|
+
applicable, to accurately report and remit the requisite taxes to the appropriate tax authority
|
|
496
|
+
within the prescribed timeframes, ensuring full compliance with all applicable tax laws and
|
|
497
|
+
regulations.
|
|
498
|
+
</p>
|
|
499
|
+
|
|
500
|
+
<p><strong>LIMITATION OF LIABILITY & DISCLAIMER OF WARRANTIES</strong></p>
|
|
501
|
+
<p>
|
|
502
|
+
By using the Services provided by {{siteName}}, you acknowledge and agree to the following:
|
|
503
|
+
1. Limitation of Liability: {{siteName}} and its affiliates, shareholders, members, directors,
|
|
504
|
+
officers, employees, attorneys, agents, representatives, suppliers, and contractors
|
|
505
|
+
shall not be liable for any direct damages or incidental, indirect, special, punitive,
|
|
506
|
+
consequential, or similar damages or liabilities arising from your access or use of the
|
|
507
|
+
Services. This includes, but is not limited to, damages for loss of data, information,
|
|
508
|
+
revenue, profits, or other businesses or financial benefits, regardless of the legal
|
|
509
|
+
theory under which such damages may arise.
|
|
510
|
+
You specifically release {{siteName}} from any liability related to losses, damages, or claims
|
|
511
|
+
arising from the following: (a) User error, such as forgotten passwords, incorrectly
|
|
512
|
+
constructed transactions, or mistyped Digital Asset addresses. (b) Server failure or data loss.
|
|
513
|
+
(c) Unauthorized access to the {{siteName}} application. (d) Bugs or other errors in the {{siteName}}
|
|
514
|
+
software. (e) Any unauthorized third-party activities, including the use of viruses,
|
|
515
|
+
phishing, brute forcing, or other means of attack against {{siteName}}.
|
|
516
|
+
2. Disclaimer of Warranties: {{siteName}} is provided on an "as is" and "as available"
|
|
517
|
+
basis, without any warranties or representations of any kind. {{siteName}} disclaims all
|
|
518
|
+
representations and warranties, express or implied, relating to the Services and
|
|
519
|
+
underlying software, including but not limited to warranties of merchantability, fitness
|
|
520
|
+
for a particular purpose, title, non-infringement, freedom from computer virus, and
|
|
521
|
+
any implied warranties arising from course of dealing, course of performance, or
|
|
522
|
+
usage in trade.
|
|
523
|
+
{{siteName}} does not guarantee that the content accessible via the Services is accurate,
|
|
524
|
+
complete, available, current, free of viruses or other harmful components, or that the results
|
|
525
|
+
of using the Services will meet your requirements. {{siteName}} does not make any
|
|
526
|
+
representations or warranties regarding the continuous, uninterrupted, timely, or error-free
|
|
527
|
+
access to {{siteName}} or the functionality of the Services.
|
|
528
|
+
By using the Services, you acknowledge that you have read and understood these
|
|
529
|
+
limitations of liability and disclaimer of warranties and agree to be bound by them.
|
|
530
|
+
</p>
|
|
531
|
+
|
|
532
|
+
<p><strong>INDEMNITY</strong></p>
|
|
533
|
+
<p>
|
|
534
|
+
You agree to defend, indemnify, and hold harmless {{siteName}}, its affiliates, and their
|
|
535
|
+
respective shareholders, members, directors, officers, employees, attorneys, agents,
|
|
536
|
+
representatives, suppliers, and contractors, to the extent permitted by applicable law, from
|
|
537
|
+
and against any and all claims, damages, obligations, losses, liabilities, torts, costs or debt,
|
|
538
|
+
and expenses (including but not limited to attorney's fees) arising from:
|
|
539
|
+
(a) Your use of and access to the Services provided by {{siteName}}. (b) Any feedback or
|
|
540
|
+
submissions you provide to {{siteName}}. (c) Violation of any Third Party Content. (d) Your
|
|
541
|
+
violation of the Terms. (e) Your violation of any law, rule, or regulation, or the rights of any
|
|
542
|
+
third party.
|
|
543
|
+
</p>
|
|
544
|
+
<p><strong>TIME LIMITATION ON CLAIMS</strong></p>
|
|
545
|
+
<p>
|
|
546
|
+
You acknowledge and agree that any claim arising out of or related to your relationship with
|
|
547
|
+
{{siteName}} must be filed within one year after the claim arises. Failure to file such a claim
|
|
548
|
+
within the specified time period will result in the permanent bar of your claim.
|
|
549
|
+
</p>
|
|
550
|
+
|
|
551
|
+
<p><strong>Governing Law</strong></p>
|
|
552
|
+
<p>
|
|
553
|
+
The interpretation and enforcement of these Terms, and any Dispute related to these Terms
|
|
554
|
+
or the Services, will be governed by and construed and enforced under the laws of Cayman Islands,
|
|
555
|
+
as applicable, without regard to conflict of law rules or principles (In any state of Cayman Islands or
|
|
556
|
+
other jurisdiction) that would cause the application of the laws of any other jurisdiction. You
|
|
557
|
+
agree that we may initiate a proceeding related to the enforcement or validity of our
|
|
558
|
+
intellectual property rights in any court having jurisdiction. For any other proceeding that is
|
|
559
|
+
not subject to arbitration under these Terms, the state and federal courts located in Cayman Islands
|
|
560
|
+
will have exclusive jurisdiction. You waive any objection to change the venue in any such
|
|
561
|
+
courts.
|
|
562
|
+
</p>
|
|
563
|
+
|
|
564
|
+
<p><strong>TERMINATION</strong></p>
|
|
565
|
+
<p>
|
|
566
|
+
In the event of termination regarding your license to use {{siteName}}, your obligations under
|
|
567
|
+
this Agreement will still continue. Your access to the funds in your Wallet after termination
|
|
568
|
+
will depend on your access to your backup of your Wallet address and private key.
|
|
569
|
+
</p>
|
|
570
|
+
|
|
571
|
+
<p><strong>DISCONTINUANCE OF SERVICES</strong></p>
|
|
572
|
+
<p>
|
|
573
|
+
We may, in our sole discretion and without cost to you, with or without prior notice, and at
|
|
574
|
+
any time, modify or discontinue, temporarily or permanently, any portion of our Services. You
|
|
575
|
+
are solely responsible for storing outside of the Services a backup of any wallet address and
|
|
576
|
+
private key pair that you maintain in your wallet. Maintaining an external backup of any wallet
|
|
577
|
+
address and private key pairs associated with your wallet will allow you to access the
|
|
578
|
+
blockchain network upon which your wallet is secured. Such a backup will allow you to fully
|
|
579
|
+
restore your wallet at any time without cost or loss of your Digital Assets. If you do not
|
|
580
|
+
maintain a backup of your wallet data outside of the Services, you will not be able to access
|
|
581
|
+
the Digital Assets associated with your wallet. {{siteName}} shall not be held responsible or
|
|
582
|
+
liable for any loss of Digital Assets in the event that we discontinue all or any part of the
|
|
583
|
+
Services.
|
|
584
|
+
</p>
|
|
585
|
+
|
|
586
|
+
<p><strong>NO WAIVER</strong></p>
|
|
587
|
+
<p>
|
|
588
|
+
Our failure to exercise or delay in exercising any right, power, or privilege under this
|
|
589
|
+
Agreement shall not operate as a waiver; nor shall any single or partial exercise of any right,
|
|
590
|
+
power, or privilege preclude any other or further exercise thereof. The waiver of any such
|
|
591
|
+
right or provision will be effective only if in writing and signed by a duly authorized
|
|
592
|
+
representative of us. Except as expressly set forth in this Agreement, the exercise by either
|
|
593
|
+
party of any of its remedies under this Agreement will be without prejudice to its other
|
|
594
|
+
remedies under this Agreement or otherwise.
|
|
595
|
+
</p>
|
|
596
|
+
|
|
597
|
+
<p><strong>SEVERABILITY</strong></p>
|
|
598
|
+
<p>
|
|
599
|
+
If it turns out that any part of this Agreement is invalid, void, or for any reason unenforceable,
|
|
600
|
+
that term will be deemed severable and limited or eliminated to the minimum extent
|
|
601
|
+
necessary. The limitation or elimination of the term shall not affect or impair the validity or
|
|
602
|
+
enforceability of any remaining part of that term, clause, or provision or any other terms,
|
|
603
|
+
clauses, or provisions of these Terms.
|
|
604
|
+
</p>
|
|
605
|
+
<p><strong>Dispute Resolution and Arbitration</strong></p>
|
|
606
|
+
<p>PLEASE READ THE FOLLOWING SECTION CAREFULLY BECAUSE IT MAY
|
|
607
|
+
SIGNIFICANTLY IMPACT YOUR LEGAL RIGHTS, INCLUDING YOUR RIGHT TO BRING A
|
|
608
|
+
LAWSUIT AGAINST {{siteName}} IN ANY COURT OR GOVERNING AUTHORITY.
|
|
609
|
+
EXCEPT AS EXPRESSLY PROVIDED BELOW THIS SECTION REQUIRES YOU TO
|
|
610
|
+
SUBMIT ANY DISPUTE, CLAIM, OR DISAGREEMENT (EACH A “DISPUTE”) ARISING
|
|
611
|
+
OUT OF THESE TERMS OR THE SERVICES, INCLUDING ANY DISPUTE THAT AROSE
|
|
612
|
+
BEFORE THE EFFECTIVE DATES OF THESE TERMS, TO BINDING INDIVIDUAL
|
|
613
|
+
ARBITRATION. THIS SECTION EXTENDS TO DISPUTE THAT AROSE OR INVOLVE
|
|
614
|
+
FACTS OCCURRING BEFORE THE EXISTENCE OF THIS OR ANY PRIOR VERSIONS
|
|
615
|
+
OF THE TERMS AS WELL AS DISPUTES THAT MAY ARISE AFTER THE TERMINATION
|
|
616
|
+
OF THE TERMS.
|
|
617
|
+
We will use our best efforts to resolve any potential disputes through informa, good faith
|
|
618
|
+
negotiations. If a potential dispute arises, you must contact us by sending an email to
|
|
619
|
+
{{ supportEmail }} so that we can attempt to resolve it without resorting to formal
|
|
620
|
+
dispute resolution. If we are not able to reach an informal resolution within sixty days of our
|
|
621
|
+
response to your email, we both agree to resolve the potential dispute according to the
|
|
622
|
+
process set forth below.
|
|
623
|
+
Any claim or controversy arising from the Website, this Agreement, or any other acts or
|
|
624
|
+
omissions that you believe make us liable (referred to as a "Dispute") will be resolved
|
|
625
|
+
through arbitration under the Arbitration Rules of the Cayman Islands International Arbitration
|
|
626
|
+
Centre. You acknowledge that you are required to settle all Disputes through binding
|
|
627
|
+
arbitration. The arbitration will be confidential and conducted before a single arbitrator
|
|
628
|
+
chosen in accordance with the Centre's rules. Unless mutually agreed otherwise, the
|
|
629
|
+
arbitration will take place in Cayman Islands. The arbitrator is not allowed to consolidate your claims
|
|
630
|
+
with those of any other party, unless we agree otherwise. The resulting award can be
|
|
631
|
+
entered as a judgment in any court with jurisdiction.
|
|
632
|
+
</p>
|
|
633
|
+
<p><strong>Class Action and Jury Trial Waiver</strong></p>
|
|
634
|
+
<p>You must bring any and all Disputes against us in your individual capacity and not as part of
|
|
635
|
+
a class action, collective action, private attorney general action, or any other representative
|
|
636
|
+
proceeding. This applies to class arbitration as well. Both you and we agree to waive the
|
|
637
|
+
right to a trial by jury.
|
|
638
|
+
</p>
|
|
639
|
+
<p><strong>Entire Agreement</strong></p>
|
|
640
|
+
<p>These terms represent the entire agreement between you and us regarding the subject
|
|
641
|
+
matter discussed. They supersede any prior written or oral agreements, communications, or
|
|
642
|
+
understandings relating to the subject matter.
|
|
643
|
+
</p>
|
|
644
|
+
<p><strong>General information</strong></p>
|
|
645
|
+
<p>Please refer to our privacy and cookies policy, which is incorporated herein by reference and
|
|
646
|
+
available on the Website for information on how we collect, use, sharee and otherwise
|
|
647
|
+
process information about you.
|
|
648
|
+
You agree to receive all communications, agreements, documents, receipts, notices, and
|
|
649
|
+
disclosures electronically in connection with these Terms or any Services. We may provide
|
|
650
|
+
these communications by posting them on the Site, emailing them to the email address you
|
|
651
|
+
provide, or sending them via Telegram to the username you provide.
|
|
652
|
+
If any provision of these Terms is found to be invalid or unenforceable, it will not affect the
|
|
653
|
+
validity or enforceability of the other provisions, which will remain in full force and effect.
|
|
654
|
+
We will not be responsible or liable for any failure or delay in performing any other services
|
|
655
|
+
or for any loss or damage you may incur due to circumstances or events beyond our control.
|
|
656
|
+
This includes events like floods, extreme weather conditions, earthquakes, acts of God, fires,
|
|
657
|
+
wars, insurrections, riots, labor disputes, accidents, government actions, communication
|
|
658
|
+
failures, power outages, or equipment or software malfunctions.
|
|
659
|
+
Unless otherwise provided or required by the context, the headings of sections are for
|
|
660
|
+
convenience only and will not limit or interpret the sections. Whenever the words "include,"
|
|
661
|
+
"includes," or "including" are used in these Terms, they are deemed to be followed by the
|
|
662
|
+
words "without limitation." The use of "or" is not intended to be exclusive.
|
|
663
|
+
These Terms constitute the entire agreement between you and {{siteName}}, superseding any
|
|
664
|
+
prior or contemporaneous understandings between the parties regarding the Services.
|
|
665
|
+
In case of any conflict between these Terms and any other agreement you may have with us,
|
|
666
|
+
these Terms will prevail unless the other agreement specifically identifies these Terms and
|
|
667
|
+
states that it supersedes them.
|
|
668
|
+
You agree that, except as expressly provided in this Agreement, there are no third-party
|
|
669
|
+
beneficiaries to the Agreement other than the Indemnified Parties
|
|
670
|
+
</p>
|
|
671
|
+
<p><strong>QUESTIONS OR COMMENTS</strong></p>
|
|
672
|
+
<p>If you have any questions relating to these Terms, your rights and obligations arising from
|
|
673
|
+
these Terms, and/or your use of {{siteName}} and our Services, or any other matter, please
|
|
674
|
+
send us a message on our contact page at: {{ supportEmail }}</p>
|
|
675
|
+
</template>
|
|
676
|
+
</div>
|
|
677
|
+
</article>
|
|
678
|
+
</div>
|
|
679
|
+
</section>
|
|
680
|
+
</template>
|
|
681
|
+
|
|
682
|
+
<script setup>
|
|
683
|
+
import { computed, inject, ref } from 'vue';
|
|
684
|
+
|
|
685
|
+
const props = defineProps({
|
|
686
|
+
content: {
|
|
687
|
+
type: Object,
|
|
688
|
+
default: null,
|
|
689
|
+
},
|
|
690
|
+
configKey: {
|
|
691
|
+
type: String,
|
|
692
|
+
default: null,
|
|
693
|
+
},
|
|
694
|
+
});
|
|
695
|
+
|
|
696
|
+
const injectedSiteData = inject('siteData', ref({}));
|
|
697
|
+
|
|
698
|
+
const siteName = computed(() => injectedSiteData.value?.site?.title || '');
|
|
699
|
+
const siteUrl = computed(() => injectedSiteData.value?.site?.url || '');
|
|
700
|
+
const supportEmail = computed(() => injectedSiteData.value?.site?.supportEmail || '');
|
|
701
|
+
const siteToken = computed(() => (injectedSiteData.value?.site?.title || '').toUpperCase());
|
|
702
|
+
const customContent = computed(() =>
|
|
703
|
+
props.content && typeof props.content === 'object' ? props.content : null,
|
|
704
|
+
);
|
|
705
|
+
|
|
706
|
+
const headerTitle = computed(() => {
|
|
707
|
+
if (customContent.value?.title) {
|
|
708
|
+
return customContent.value.title;
|
|
709
|
+
}
|
|
710
|
+
if (siteName.value) {
|
|
711
|
+
return `${siteName.value} - Terms of Service`;
|
|
712
|
+
}
|
|
713
|
+
return 'Terms of Service';
|
|
714
|
+
});
|
|
715
|
+
|
|
716
|
+
const lastUpdated = computed(() => customContent.value?.lastUpdated || 'August 2025');
|
|
717
|
+
const customIntro = computed(() =>
|
|
718
|
+
typeof customContent.value?.intro === 'string' ? customContent.value.intro : '',
|
|
719
|
+
);
|
|
720
|
+
const customBody = computed(() =>
|
|
721
|
+
typeof customContent.value?.body === 'string' ? customContent.value.body : '',
|
|
722
|
+
);
|
|
723
|
+
|
|
724
|
+
function normalizeSectionItems(sections) {
|
|
725
|
+
if (!Array.isArray(sections)) return [];
|
|
726
|
+
return sections
|
|
727
|
+
.map((section, index) => {
|
|
728
|
+
if (!section || typeof section !== 'object') return null;
|
|
729
|
+
const paragraphs = Array.isArray(section.paragraphs)
|
|
730
|
+
? section.paragraphs.filter((text) => typeof text === 'string' && text.trim().length)
|
|
731
|
+
: [];
|
|
732
|
+
const list = Array.isArray(section.list)
|
|
733
|
+
? section.list.filter((text) => typeof text === 'string' && text.trim().length)
|
|
734
|
+
: [];
|
|
735
|
+
const summary = typeof section.summary === 'string' ? section.summary : null;
|
|
736
|
+
const body = typeof section.body === 'string' ? section.body : null;
|
|
737
|
+
const html = typeof section.html === 'string' ? section.html : null;
|
|
738
|
+
const title = typeof section.title === 'string' ? section.title : '';
|
|
739
|
+
if (!title && !summary && !body && !html && !paragraphs.length && !list.length) {
|
|
740
|
+
return null;
|
|
741
|
+
}
|
|
742
|
+
return {
|
|
743
|
+
id: section.id || title || `section-${index}`,
|
|
744
|
+
title,
|
|
745
|
+
summary,
|
|
746
|
+
body: body || html,
|
|
747
|
+
paragraphs,
|
|
748
|
+
list,
|
|
749
|
+
};
|
|
750
|
+
})
|
|
751
|
+
.filter(Boolean);
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
const customSections = computed(() => normalizeSectionItems(customContent.value?.sections));
|
|
755
|
+
const hasCustomContent = computed(
|
|
756
|
+
() => Boolean(customIntro.value || customBody.value || customSections.value.length),
|
|
757
|
+
);
|
|
758
|
+
</script>
|
|
759
|
+
|
|
760
|
+
|
|
761
|
+
|
|
762
|
+
<style scoped>
|
|
763
|
+
.legal-page {
|
|
764
|
+
background: var(
|
|
765
|
+
--legal-page-bg,
|
|
766
|
+
color-mix(in srgb, var(--brand-bg-900, #04050a) 90%, #020207 10%)
|
|
767
|
+
);
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
.legal-page__container {
|
|
771
|
+
max-width: 920px;
|
|
772
|
+
margin: 0 auto;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
.legal-card {
|
|
776
|
+
--legal-card-color: var(
|
|
777
|
+
--legal-card-text,
|
|
778
|
+
var(--brand-card-text, var(--ui-text-primary, #1f2a44))
|
|
779
|
+
);
|
|
780
|
+
--legal-card-color-muted: color-mix(in srgb, var(--legal-card-color) 70%, transparent);
|
|
781
|
+
--legal-card-color-subtle: color-mix(in srgb, var(--legal-card-color) 55%, transparent);
|
|
782
|
+
background: var(--legal-card-bg, var(--brand-surface-card-bg, #ffffff));
|
|
783
|
+
color: var(--legal-card-color);
|
|
784
|
+
border-radius: var(--brand-card-radius, 28px);
|
|
785
|
+
border: 1px solid
|
|
786
|
+
color-mix(in srgb, var(--brand-surface-card-border, rgba(78, 105, 155, 0.35)) 80%, transparent);
|
|
787
|
+
box-shadow: var(--legal-card-shadow, 0 35px 70px rgba(4, 6, 15, 0.35));
|
|
788
|
+
padding: clamp(28px, 6vw, 56px);
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
.legal-card__header {
|
|
792
|
+
text-align: center;
|
|
793
|
+
margin-bottom: clamp(20px, 4vw, 36px);
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
.legal-card__title {
|
|
797
|
+
margin: 0;
|
|
798
|
+
font-size: clamp(1.6rem, 4vw, 2.4rem);
|
|
799
|
+
letter-spacing: 0.14em;
|
|
800
|
+
text-transform: uppercase;
|
|
801
|
+
color: var(--legal-card-color, currentColor);
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
.legal-card__meta {
|
|
805
|
+
margin: 14px 0 0;
|
|
806
|
+
font-size: 0.78rem;
|
|
807
|
+
letter-spacing: 0.2em;
|
|
808
|
+
text-transform: uppercase;
|
|
809
|
+
color: var(
|
|
810
|
+
--legal-card-meta-color,
|
|
811
|
+
var(--legal-card-color-subtle, color-mix(in srgb, var(--ui-text-muted, rgba(31, 42, 68, 0.7)) 90%, transparent))
|
|
812
|
+
);
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
.legal-divider {
|
|
816
|
+
display: block;
|
|
817
|
+
width: 72px;
|
|
818
|
+
height: 2px;
|
|
819
|
+
margin: 18px auto 0;
|
|
820
|
+
background: var(
|
|
821
|
+
--legal-divider-color,
|
|
822
|
+
color-mix(in srgb, var(--brand-border-highlight, rgba(79, 108, 240, 0.6)) 90%, transparent)
|
|
823
|
+
);
|
|
824
|
+
border-radius: 999px;
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
.legal-content {
|
|
828
|
+
display: flex;
|
|
829
|
+
flex-direction: column;
|
|
830
|
+
gap: 1rem;
|
|
831
|
+
line-height: 1.7;
|
|
832
|
+
color: inherit;
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
.legal-content p {
|
|
836
|
+
margin: 0;
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
.legal-content strong {
|
|
840
|
+
color: var(--legal-strong-color, var(--legal-card-color));
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
.legal-content ul {
|
|
844
|
+
margin: 0;
|
|
845
|
+
padding-left: 1.2rem;
|
|
846
|
+
line-height: 1.6;
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
.legal-content li + li {
|
|
850
|
+
margin-top: 0.35rem;
|
|
851
|
+
}
|
|
852
|
+
</style>
|