修改用户隐私协议
This commit is contained in:
parent
0faffa2863
commit
6732f4c0f1
@ -7,11 +7,14 @@
|
||||
</div>
|
||||
<div class="content">
|
||||
<Collectibles v-if="navIndex == 0" />
|
||||
<Staking v-if="navIndex == 1" />
|
||||
<Hanging v-else-if="navIndex == 1" />
|
||||
<Trading v-else-if="navIndex == 2" />
|
||||
<Activity v-else-if="navIndex == 3" />
|
||||
<!-- <Staking v-if="navIndex == 1" />
|
||||
<Centralization v-if="navIndex == 2" />
|
||||
<Hanging v-else-if="navIndex == 3" />
|
||||
<Trading v-else-if="navIndex == 4" />
|
||||
<Activity v-else-if="navIndex == 5" />
|
||||
<Activity v-else-if="navIndex == 5" /> -->
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
@ -34,12 +37,12 @@ const navList = ref([
|
||||
{
|
||||
name: "NFTs"
|
||||
},
|
||||
{
|
||||
name: "Staking"
|
||||
},
|
||||
{
|
||||
name: "Centralized Assets"
|
||||
},
|
||||
// {
|
||||
// name: "Staking"
|
||||
// },
|
||||
// {
|
||||
// name: "Centralized Assets"
|
||||
// },
|
||||
{
|
||||
name: "Listings"
|
||||
},
|
||||
|
@ -267,12 +267,12 @@ watch(localWalletStore,() => {
|
||||
]
|
||||
}
|
||||
} else {
|
||||
getCecInfo()
|
||||
// getCecInfo()
|
||||
}
|
||||
})
|
||||
|
||||
onMounted(() => {
|
||||
getCecInfo()
|
||||
// getCecInfo()
|
||||
})
|
||||
|
||||
</script>
|
||||
@ -314,7 +314,7 @@ onMounted(() => {
|
||||
background: url('@/assets/img/marketplace/CEC_bg.png') no-repeat;
|
||||
background-size: 100% 100%;
|
||||
box-sizing: border-box;
|
||||
// display: none;
|
||||
display: none;
|
||||
.uaw-listing-content {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
@ -69,11 +69,11 @@ const props = defineProps({
|
||||
});
|
||||
|
||||
const mintNft = async () => {
|
||||
console.log('-----', toRaw(props.nftData))
|
||||
return
|
||||
// console.log('-----', toRaw(props.nftData))
|
||||
// return
|
||||
const locker = new Locker()
|
||||
let res = await locker.mintNft(toRaw(props.nftData).nft.contract_address,[toRaw(props.nftData).nft.token_id])
|
||||
console.log(res)
|
||||
let res = await locker.mintNft([toRaw(props.nftData).uniid])
|
||||
console.log(res,'--------------')
|
||||
}
|
||||
|
||||
// 获取地板价
|
||||
|
@ -202,7 +202,7 @@ const unStake = async (data) => {
|
||||
console.log(toRaw(data).contract_address,[toRaw(data).token_id])
|
||||
const locker = new Locker()
|
||||
// console.log(locker.sendUnlockOrMint)
|
||||
let res = await locker.sendUnlockOrMint(toRaw(data).contract_address,[toRaw(data).token_id])
|
||||
let res = await locker.unlockOrMintGameNft(toRaw(data).contract_address,[toRaw(data).token_id])
|
||||
console.log(res)
|
||||
}
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
|
||||
import { ethers } from 'ethers'
|
||||
import { apiUnlockOrMint, apiMintNft } from '@/utils/marketplace'
|
||||
import { BlockChain } from "@/components/chain/BlockChain"
|
||||
|
||||
const lockAbi = [
|
||||
'function lock(address nft, address to, uint256[] tokenIds) external',
|
||||
@ -17,9 +18,7 @@ const lockAddress = import.meta.env.VUE_APP_LOCKER_ADDRESS
|
||||
export class Locker {
|
||||
|
||||
constructor(_chainInstance) {
|
||||
console.log(_chainInstance)
|
||||
this.bc = _chainInstance
|
||||
console.log(this.bc)
|
||||
}
|
||||
|
||||
async lock(nft, tokenIds) {
|
||||
@ -63,31 +62,37 @@ export class Locker {
|
||||
// imtbl上unlock必须使用passport的provider
|
||||
async unlockOrMintGameNft(nft, tokenIds) {
|
||||
console.log('unlock nft', nft, tokenIds)
|
||||
await this.bc.checkPassportLogin();
|
||||
await this.bc.checkAndChangeChain();
|
||||
const blockChain = new BlockChain()
|
||||
const { provider, address } = await blockChain.selectAddress({})
|
||||
await blockChain.checkPassportLogin();
|
||||
await blockChain.checkAndChangeChain();
|
||||
const preDatas = {
|
||||
net_id: import.meta.env.VUE_APP_NET_ID,
|
||||
to: address,
|
||||
contract_address: nft,
|
||||
tokens: tokenIds.map(tokenId => {return { tokenId }}),
|
||||
}
|
||||
const passportToken = await this.bc.passportToken()
|
||||
console.log(await this.bc)
|
||||
const passportToken = await blockChain.passportToken()
|
||||
const { errcode, errmsg, trans_req } = await apiUnlockOrMint(preDatas, passportToken)
|
||||
if (errcode) {
|
||||
throw new Error(errmsg)
|
||||
}
|
||||
const web3Provider = this.bc.passportProvider || this.bc.web3Provider
|
||||
console.log(web3Provider)
|
||||
return this.sendUnlockOrMint(web3Provider, trans_req)
|
||||
}
|
||||
// 游戏内资产上链, 只用于mint
|
||||
// 该方法会显示一个确认弹窗, 由用户选择mint到哪个地址
|
||||
async mintNft(tokenIds) {
|
||||
console.log('mint hero', tokenIds)
|
||||
const { provider, address } = await this.bc.selectAddress({})
|
||||
const blockChain = new BlockChain()
|
||||
const { provider, address } = await blockChain.selectAddress({})
|
||||
const preDatas = {
|
||||
to: address,
|
||||
hero_uniids: tokenIds,
|
||||
}
|
||||
const passportToken = await this.bc.passportToken()
|
||||
const passportToken = await blockChain.passportToken()
|
||||
const { errcode, errmsg, trans_req } = await apiMintNft(preDatas, passportToken)
|
||||
if (errcode) {
|
||||
throw new Error(errmsg)
|
||||
|
@ -2,148 +2,273 @@
|
||||
<div>
|
||||
<div class="containers">
|
||||
<div class="content">
|
||||
<div class="title">Privacy Policy of COUNTER FIRE</div>
|
||||
<div class="content-text">
|
||||
Our privacy policy (the “Privacy Policy”) explains the information we
|
||||
collect, how we use and share it, how to manage your privacy controls
|
||||
and your rights in connection with our websites and the related mobile
|
||||
applications and services .
|
||||
<h1>Privacy Policy</h1>
|
||||
<div class="content-title">
|
||||
<p>
|
||||
PLEASE READ THIS PRIVACY POLICY CAREFULLY. YOUR USE OF OUR SERVICES IS AT ALL TIMES SUBJECT TO THE TERMS OF USE, WHICH INCORPORATES THIS PRIVACY POLICY.
|
||||
ANY TERMS NOT DEFINED IN THIS PRIVACY POLICY HAVE THE MEANING GIVEN TO THEM IN THE TERMS OF USE.
|
||||
</p>
|
||||
</div>
|
||||
<div class="content-text">
|
||||
We recognize that privacy is important. This policy applies to all of
|
||||
the software, services, information, tools, features, and
|
||||
functionality available on the Services offered by the Company or its
|
||||
subsidiaries or affiliated companies and covers how personally
|
||||
identifiable information (PII) that the Company collects and receives,
|
||||
including in respect of any use of the Services, is treated. If you
|
||||
have any questions about this policy, please feel free to contact us .
|
||||
|
||||
<h4>This policy was last updated on 15 July 2024.</h4>
|
||||
<div class="content-title">
|
||||
By accepting the Terms of Use published on this website (the "Website") or by accessing or using the Website, or any applications and services
|
||||
(including but not limited to our games ("Games"), our gaming platforms) provided by us (collectively, the "Services"), you consent to the collection, use,
|
||||
sharing, and other processing of your data ("Information") by us ("we", "us" or "our") under this Privacy Policy. If you do not agree to this Privacy Policy,
|
||||
do not accept the Terms of Use and do not access or use the Services.
|
||||
</div>
|
||||
<div class="content-text">contact@counterfire.games</div>
|
||||
|
||||
<h4>Scope</h4>
|
||||
<div class="content-text">
|
||||
Information We Collect and How We Use It. In order to provide and
|
||||
improve our Services, we may collect PII, including the following
|
||||
types of information:
|
||||
<p>
|
||||
1. This Privacy Policy applies when you access or use the Services. This Privacy Policy explains what information we gather about you, what we use that information
|
||||
for, and who we give that information to. It also sets out your rights in relation to your information and how you can contact us if you have any questions.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h4>Information We Collect</h4>
|
||||
<div class="content-text">
|
||||
1. Information You Provide. For some features of the Services we ask
|
||||
you for personal information, including: email address, user ID
|
||||
<p>
|
||||
2. The types of Information we collect depend on how you interact with us, our Services, and the requirements of applicable law.
|
||||
The categories of Information we may collect about you include but not limited to:
|
||||
</p>
|
||||
<p>
|
||||
a. profile information, such as your full name, gender, date of birth, email addresses, website information, telephone number, postal address, and profile photographs;
|
||||
</p>
|
||||
<p>
|
||||
b. account information, such as your chosen username, password and avatar;
|
||||
</p>
|
||||
<p>
|
||||
c. third-party account credentials, such as Facebook, Google, LinkedIn, Twitter and Edge;
|
||||
</p>
|
||||
<p>
|
||||
d. social media profile information that you make available to us or to the public;
|
||||
</p>
|
||||
<p>
|
||||
e. IP address when you access or use our Services;
|
||||
</p>
|
||||
<p>
|
||||
f. digital wallet information (HOWEVER, WE WILL NOT ASK YOU TO PROVIDE THE PRIVITE KEYS OF YOUR DIGITAL WALLET);
|
||||
</p>
|
||||
<p>
|
||||
g. transaction information, such as details of products and services you have purchased from us, including transaction receipt number and purchase amount;
|
||||
</p>
|
||||
<p>
|
||||
h. device information such as hardware model and serial number, IP addresses;
|
||||
</p>
|
||||
<p>
|
||||
i. details of any Services that we provide to you;
|
||||
</p>
|
||||
<p>
|
||||
j. communication preferences and records of any communications.
|
||||
</p>
|
||||
<p>
|
||||
3. We may also match or combine the Information that you provide with information that we obtain from other sources (including other websites or applications with
|
||||
which you may have an account and have provided us access to) or that is already in our records, whether collected online or offline, for the purposes described herein.
|
||||
</p>
|
||||
<p>
|
||||
4. If you do not want us to collect the aforementioned Information, you may opt out at any time by notifying our Data Protection Officer
|
||||
in writing. Further information on opting out can be found in the section below entitled "Withdrawal of Consent". Note, however, that opting out
|
||||
or withdrawing your consent for us to collect, use or process your personal data may affect your use of the Services.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h4>Cookies</h4>
|
||||
<div class="content-text">
|
||||
2. User Communications. When you send email or other communication to
|
||||
the Company, we may retain those communications in order to process
|
||||
your inquiries, respond to your requests and improve our Services. We
|
||||
may send you push notifications to send you news and updates in
|
||||
respect of the Services.
|
||||
<p>
|
||||
5. Where applicable, we may use various technologies to collect Information, including cookies, which allow us to collect information such as
|
||||
browser type, pages visited, language preferences and other traffic data. You may be able to change the preferences on your browser or device to prevent or
|
||||
limit your device's acceptance of cookies, but this may prevent you from using some features or functionality of our Services.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h4>Use of Information</h4>
|
||||
<div class="content-text">
|
||||
3. Aggregated Personal Data. In an ongoing effort to better understand
|
||||
and serve the users of the Services, Company often conducts research
|
||||
on its customer demographics, interests and behavior based on the PII
|
||||
and other information provided to us. This research may be compiled
|
||||
and analyzed on an aggregate basis, and Company may share this
|
||||
aggregate data with its affiliates, agents and business partners. This
|
||||
aggregate information does not identify you personally. Company may
|
||||
also disclose aggregated user statistics in order to describe our
|
||||
services to current and prospective business partners, and to other
|
||||
third parties for other lawful purposes.
|
||||
<p>
|
||||
6. We may use the Information we collect about you for any or all of the following purposes:
|
||||
</p>
|
||||
<p>
|
||||
a. to verify your identity when you are dealing with us, and/or to determine your eligibility for any of our Services;
|
||||
</p>
|
||||
<p>
|
||||
b. to respond to your communications to us;
|
||||
</p>
|
||||
<p>
|
||||
c. to notify you of any changes to the terms of use for any Services;
|
||||
</p>
|
||||
<p>
|
||||
d. to enable us to provide our Services and personalize your experience;
|
||||
</p>
|
||||
<p>
|
||||
e. to detect, diagnose, and fix problems affecting our Services and to improve our Services;
|
||||
</p>
|
||||
<p>
|
||||
f. to process transactions;
|
||||
</p>
|
||||
<p>
|
||||
g. to comply with applicable legal obligations and other rules, regulations, codes of practice, and orders and directions of
|
||||
competent governmental authorities that we are obligated to follow, and to manage related risks;
|
||||
</p>
|
||||
<p>
|
||||
h. to carry out planning and forecasting activities and other internal business processes, including research, analysis, testing, auditing, etc.;
|
||||
</p>
|
||||
<p>
|
||||
i. to create, develop, operate, deliver, and improve our Services;
|
||||
</p>
|
||||
<p>
|
||||
j. to enforce our agreements and resolve disputes; and
|
||||
</p>
|
||||
<p>
|
||||
k. to send informational and marketing communications to you, including but not limited to invitations to participate in surveys and promotions.
|
||||
</p>
|
||||
<p>
|
||||
7. As the purposes for which we will/may collect, use, disclose or process Information about you depend on the circumstances at hand, such purpose
|
||||
may not appear above. However, we will notify you of such other purpose at the time of obtaining your consent, unless processing of the applicable data without your consent is permitted by applicable laws.
|
||||
</p>
|
||||
<p>
|
||||
8. You may opt out of receiving communications from us at any time. If you opt out, we may still send you some communications,
|
||||
such as technical notices, support or administrative notifications except where we are restricted by applicable law.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h4>Sharing Information</h4>
|
||||
<div class="content-text">
|
||||
4. User Information. When you use our Services, we may automatically
|
||||
receive and record information from your device and browser, including
|
||||
your IP address, IDFA identifiers (for iOS devices), Identifier for.
|
||||
Advertising (for iOS devices) and Google Advertiser IDs (for Android
|
||||
devices) (such identifiers are collected herein for the following
|
||||
purposes, among other things: frequency capping, attribution,
|
||||
conversion events, estimating the number of unique users, advertising
|
||||
fraud detection, and debugging) cookie information, search history,
|
||||
device ID, Android ID, your regional and language settings, the
|
||||
physical location of your device (if you have permitted your mobile or
|
||||
other location-aware device to transmit location data), network status
|
||||
(WiFi/3G/4G/5G), and software and hardware attributes. We may use your
|
||||
location (city) (if you have permitted your mobile or other
|
||||
location-aware device to transmit location data) to learn how to
|
||||
adjust and personalize your use of the Services. Our systems may
|
||||
automatically record and store technical information regarding the
|
||||
method and nature of your use of the Services, including without
|
||||
limitation which pages of the Services our visitors view, what games
|
||||
they played, their score, game advancement, any actions in-game,
|
||||
virtual content gained and impressions. An IP address is a numeric
|
||||
code that identifies your device on a network, or in this case, the
|
||||
Internet. Your IP address is also used to gather broad demographic
|
||||
information. The Company uses all of the PII that we collect to
|
||||
understand the usage trends and preferences of our users. We also use
|
||||
aggregate data for monetization.
|
||||
<p>
|
||||
9. We will only collect and use your Information for the purposes and within the scope of this Privacy Policy or as required by law and regulations,
|
||||
and will keep it strictly confidential. In general, we will not share your Information with any company, organization or individual, except in the following cases:
|
||||
</p>
|
||||
<P>
|
||||
a. with your consent and/or at your instruction;.
|
||||
</P>
|
||||
<p>
|
||||
b. where the sharing of your Information is required by applicable law, regulation, legal process, governmental compulsion or judicial decision;
|
||||
</p>
|
||||
<p>
|
||||
c. to the extent required or permitted by law, it is necessary to provide your Information to third parties in order to protect us, other users or the public from harm to their interests, property or safety;
|
||||
</p>
|
||||
<p>
|
||||
d. your Information may be shared among our affiliated companies. We will only share Information that is necessary and such sharing is subject
|
||||
to the stated purposes of this Privacy Policy. If an affiliate wishes to change the purpose of processing Information, it will again seek your authorized consent;
|
||||
</p>
|
||||
<p>
|
||||
e. in order to provide you with improved, quality products and services, some of our Services will be provided by authorized partners. We may share some of
|
||||
your Information with our partners in order to provide better customer service and user experience, including website and game hosting service providers,
|
||||
payment processing service providers, email delivery service providers, and so on. We will only share your Information for purposes that are legal, legitimate,
|
||||
necessary, specific, and explicit, and only as much Information as is necessary to provide the Services. We also require our partners to handle your Information
|
||||
in accordance with our instructions, this Privacy Policy, and any other relevant confidentiality and security measures.
|
||||
</p>
|
||||
<p>
|
||||
10. The collection and processing of Information by our partners is subject to their own privacy policy or related statements, which do not apply to this Privacy Policy.
|
||||
In order to maximize the security of your Information, we recommend that you review the privacy policy of any third-party service before using it. To protect your legitimate
|
||||
rights and interests, if you find that the relevant third-party services have risks, we recommend that you immediately terminate the relevant operations and contact us in a
|
||||
timely manner. We are not responsible for the Information collection, use, disclosure, or security policies or practices of third-party services.
|
||||
</p>
|
||||
</div>
|
||||
<div class="content-title">COOKIES</div>
|
||||
|
||||
<h4>Storage of Information</h4>
|
||||
<div class="content-text">
|
||||
We use cookies to distinguish you from other players of the STEPN App
|
||||
and STEPN Website and obtain certain information about your usage and
|
||||
behaviour. A cookie is a small file of letters and numbers that we put
|
||||
on your computer when you use the STEPN App or STEPN Website. This
|
||||
helps us to provide you with a better experience when you use the
|
||||
STEPN App or browse the STEPN Website and also allows us to improve
|
||||
the Services. We will use both persistent cookies, which could remain
|
||||
on your device until their expiration (which, in some cases, up to 10
|
||||
years), and session cookies, which are temporary files removed from
|
||||
your device once your browser is closed.
|
||||
<p>
|
||||
11. All Information collected in connection with the use of the Services will be stored electronically with appropriate safeguards and security measures.
|
||||
However, no computer security system is entirely foolproof and as a result there is no guarantee that information that we store may not be accessed, collected,
|
||||
used, disclosed, copied, modified, or deleted by breach of any technical or operational safeguards that we have in place. We generally store the Information that we collect in electronic databases.
|
||||
</p>
|
||||
<p>
|
||||
12. You are at all times responsible for your own privacy settings. We are not responsible, and accept no liability, for the functionality,
|
||||
privacy, or security measures of any other organization or third party websites, applications, or services.
|
||||
</p>
|
||||
<p>
|
||||
13. Your Information will not be kept longer than required. We may be required (by law or otherwise) to retain your account information or any other information
|
||||
associated with it and not to delete it (or to keep this information for a certain period of time, in which case we are only able to comply with your deletion
|
||||
request only after we have fulfilled such requirements). Some information may remain in our records after your deletion of such information from your account.
|
||||
We may use any aggregated data derived from or incorporating your Information after you update or delete it, but not in a manner that would identify you personally.
|
||||
</p>
|
||||
</div>
|
||||
<div class="content-title">Links</div>
|
||||
|
||||
<h4>Protection of the Information</h4>
|
||||
<div class="content-text">
|
||||
Links to other services, sites and applications may be provided by the
|
||||
Company as a convenience to our users. The Company is not responsible
|
||||
for the privacy practices or the content of other sites and
|
||||
applications and you visit them at your own risk. This privacy
|
||||
statement applies solely to PII collected by us. Information Sharing.
|
||||
<p>
|
||||
14. We will provide a standard of protection for the Information collected and stored by us that is at least required by the laws and regulation applicable to us.
|
||||
However, no computer security system is entirely foolproof and the Internet is not a secure method of transmitting information. As a result, we do not assume any
|
||||
responsibility for the data you submit to or receive from us through the Internet or for any unauthorized access or use of that information and we cannot and do not
|
||||
guarantee that information communicated by you to us or sent to you by us will be received or that it will not be altered before or after its transmission to us.
|
||||
</p>
|
||||
<P>
|
||||
15. You agree to not hold us and our respective past, present and future members, employees, officers, directors,
|
||||
contractors, consultants, equity holders, suppliers, vendors, service providers, parent companies, subsidiaries, affiliates, agents, representatives,
|
||||
predecessors, successors and assigns liable for any loss or damage of any sort incurred as a result of any misappropriation, interception, modification,
|
||||
deletion, destruction or use of information provided through our Services.
|
||||
</P>
|
||||
</div>
|
||||
|
||||
<h4>Information on Children</h4>
|
||||
<div class="content-text">
|
||||
As part of providing the Services and/or generating and processing
|
||||
analytics, our affiliates, agents representatives and third party
|
||||
providers may have access to your PII. The Company may also share PII
|
||||
in the following circumstances: (a) as required for the provision,
|
||||
maintenance and improvement of the Services; (b) if we become involved
|
||||
in a reorganization, merger, consolidation, acquisition, or any form
|
||||
of sale of some or all of our assets; and/or (c) to satisfy applicable
|
||||
law or prevention of fraud or harm or to enforce applicable agreements
|
||||
and/or their terms, including investigation of potential violations
|
||||
thereof.
|
||||
<p>
|
||||
16. The Services are not directed to children under the age of 18 (or other age as required by local law). We do not knowingly collect or maintain any personal data
|
||||
or non-personally-identifiable information from anyone under the age of 18. If you are a parent or guardian, please do not allow such children under your care to
|
||||
submit Information to us. In the event that Information of a child under the age of 18 in your care is disclosed to us, you hereby consent to the processing of the child's
|
||||
Information and your acceptance and agreement to be bound by the terms of this Privacy Policy on behalf of such child. In the event you do not in fact consent to the processing
|
||||
of the Information of a child under the age of 18 in your care, please contact us as described in "Contact Us" below. We will close any accounts used exclusively by such children
|
||||
and remove and/or delete any personal data we believe was submitted without parental consent by such child or as otherwise required by applicable law.
|
||||
</p>
|
||||
</div>
|
||||
<div class="content-title">Data safety.</div>
|
||||
|
||||
<h4>International Transfers</h4>
|
||||
<div class="content-text">
|
||||
We follow generally accepted industry standards to protect against
|
||||
unauthorized access to or unauthorized alteration, disclosure or
|
||||
destruction of PII. However, no method of transmission over the
|
||||
Internet, or method of electronic storage, is 100% secure. Therefore,
|
||||
while we strive to use commercially acceptable means to protect your
|
||||
PII, we cannot guarantee its absolute security. We keep your PII only
|
||||
for as long as reasonably necessary for the purposes for which it was
|
||||
collected or to comply with any applicable legal or ethical reporting
|
||||
or document retention requirements.
|
||||
<p>
|
||||
17. Your Information may be transferred from the country, state and city ("Home Country") in which you are present while using our Services to another country, state
|
||||
and city ("Alternate Country").When we transfer your Information from your Home Country to the Alternate Country, we will comply with our legal and regulatory
|
||||
obligations in relation to your Information, including having a lawful basis for transferring Information and putting appropriate safeguards in place to ensure
|
||||
an adequate level of protection for the Information. We will also ensure that the recipient in Alternate Country is obliged to protect your Information at a
|
||||
standard of protection required by the laws and regulations applicable to us. Our lawful basis will be either consent (i.e. we may ask for your consent to transfer
|
||||
your Information from your Home Country to the Alternate Country at the time you provide your Information) or one of the safeguards permissible by laws.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h4>Your Choices</h4>
|
||||
<div class="content-text">
|
||||
Data Integrity, Accessing and Updating Personal Information. The
|
||||
Company processes PII only for the purposes for which it was collected
|
||||
and in accordance with this policy or any applicable service
|
||||
agreements. We review our data collection, storage and processing
|
||||
practices to ensure that we only collect, store and process the PII
|
||||
needed to provide or improve our Services. We take reasonable steps to
|
||||
ensure that the PII we process is accurate, complete, and current, but
|
||||
we depend on our users to update or correct their PII whenever
|
||||
necessary. Nothing in this policy is interpreted as an obligation to
|
||||
store information, and we may, at our own discretion, delete or avoid
|
||||
from recording and storing any and all information.
|
||||
<p>
|
||||
18. You may have certain choices about how your Information is collected, used, stored, and shared. Below are some examples.
|
||||
</p>
|
||||
<p>
|
||||
a. Personalized content and marketing: Whether we may use the Information we have collected about you to personalize advertising and purchase recommendations.
|
||||
</p>
|
||||
<p>
|
||||
b. Personalized advertisements: Whether we may use the Information we have collected about you to serve you advertisements on our and third- party websites and applications.
|
||||
</p>
|
||||
<p>
|
||||
c. Personalized communications: Whether we may use the Information we have collected to personalize emails, in-game messages, and notifications.
|
||||
</p>
|
||||
<p>
|
||||
d. Direct marketing: Whether we send you marketing messages.
|
||||
</p>
|
||||
</div>
|
||||
<div class="content-title">Changes to This Privacy Policy.</div>
|
||||
|
||||
<h4>Withdrawal of Consent</h4>
|
||||
<div class="content-text">
|
||||
The Company may update this policy. We will notify you about
|
||||
significant changes in the way we treat PII by sending a notice to the
|
||||
primary email address specified in your account or by placing a
|
||||
prominent notice on the App. We encourage you to periodically review
|
||||
this policy for the latest information about our privacy practices.
|
||||
<p>
|
||||
19. The consent that you provide for the collection, use and disclosure of your Information will remain valid until such time it is being withdrawn by you in writing.
|
||||
You may withdraw your consent for the collection, use and/or disclosure of your Information in our possession or under our control by sending an email to our Data Protection
|
||||
Officer at [contact@counterfire.games] and we will process such requests in accordance with this Privacy Policy and our obligations under applicable laws. While we respect your
|
||||
decision to withdraw your consent, please note that your withdrawal of consent may mean that we will not be able to continue providing the Services to you, and we may need to
|
||||
terminate your existing relationship and/or the contract you have with us.
|
||||
</p>
|
||||
</div>
|
||||
<div class="content-title">Questions.</div>
|
||||
|
||||
<h4>Updates to This Privacy Policy</h4>
|
||||
<div class="content-text">
|
||||
If you have any questions about this policy or concerns about the way
|
||||
we process your PII, please contact us at contact@counterfire.games
|
||||
<p>
|
||||
20. We may change this Privacy Policy in our sole discretion at any time by publishing an updated version here. Any changes to this Privacy Policy will take effect and be
|
||||
binding on you from the time of posting the updated version here. We will make all reasonable endeavors to notify you of any changes. Nevertheless, you should check here
|
||||
regularly to see the current Privacy Policy that is in effect and any changes that may have been made to it. Your continued use of our Website constitutes your agreement
|
||||
to be bound by any changes to this Privacy Policy. If you do not agree with this Privacy Policy, you are not authorized to use our Website and you shall not accept our Services.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h4>Contact Us</h4>
|
||||
<div class="content-text">
|
||||
<p>
|
||||
21. If you have any questions about this Privacy Policy or our processing of your Information, please contact our Data Protection Officer at contact@counterfire.games.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -155,26 +280,33 @@
|
||||
<style lang="scss" scoped>
|
||||
.containers {
|
||||
background-color: rgb(20, 20, 20);
|
||||
}
|
||||
.content {
|
||||
padding-top: 90px;
|
||||
padding-bottom: 60px;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.title {
|
||||
color: #ffff;
|
||||
text-align: center;
|
||||
font-size: 25px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.content-title {
|
||||
font-size: 18px;
|
||||
color: #ffff;
|
||||
}
|
||||
.content-text {
|
||||
color: #ffff;
|
||||
font-size: 16px;
|
||||
|
||||
.content {
|
||||
padding-top: 90px;
|
||||
padding-bottom: 60px;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
color: #fff;
|
||||
font-size: 18px;
|
||||
h1 {
|
||||
font-size: 48px;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
margin-top: 20px;
|
||||
}
|
||||
.content-title {
|
||||
font-weight: 700;
|
||||
p {
|
||||
}
|
||||
}
|
||||
h4 {
|
||||
font-weight: 700;
|
||||
margin: 20px 0;
|
||||
}
|
||||
.content-text{
|
||||
span {
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
@ -2,364 +2,275 @@
|
||||
<div>
|
||||
<div class="containers">
|
||||
<div class="content">
|
||||
<div class="title">COUNTER FIRE Terms of Use</div>
|
||||
<div class="content-text">
|
||||
IN ORDER TO USE THE GAME OR SERVICE ON SPECIFIC PLATFORMS OR DEVICES,
|
||||
YOU WILL ALSO BE REQUIRED TO ACCEPT AND COMPLY WITH ALL RULES OF
|
||||
EXTERNAL PLATFORMS OR DEVICES APPLICABLE TO THE SPECIFIC GAME, INCLUDING
|
||||
BUT NOT LIMITED TO THE THIRD PARTY PLATFORM’S TERMS OF SERVICE AND
|
||||
PRIVACY POLICY.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
Counter Fire is an online multiplayer Battle Royale game. Access to, and
|
||||
use of, the App and the services available through the App (Services)
|
||||
are subject to the following terms, conditions and notices (Terms of
|
||||
Use). By using the Services, you are agreeing to all of the Terms of
|
||||
Use, as may be updated by us from time to time. You should check this
|
||||
page regularly to take notice of any changes we may have made to the
|
||||
Terms of Use The Company reserves the right to amend these Terms of Use
|
||||
from time to time. Amendments will be effective immediately upon
|
||||
notification on the App or through the Services. Your continued use of
|
||||
the App and the Services following such notification will represent an
|
||||
agreement by you to be bound by the Terms of Use as amended.“User”,
|
||||
“you”, or “player” means the person who uses the Game and/or Service and
|
||||
accepts and agrees to be bound and abide by these Terms by: (i)
|
||||
installing, copying or otherwise using the Game Software; (ii) using the
|
||||
Game; or (iii) using the Services. Depending on your country of
|
||||
residence, if you are below 18 years old and you choose to use the
|
||||
Service, we may ask consent from your parent or legal guardian.
|
||||
</div>
|
||||
<div class="content-title">AMENDMENTS, UPDATES, AND PATCHES</div>
|
||||
<h1>TERMS OF USE</h1>
|
||||
<div class="content-title">
|
||||
<p>YOUR USE OF OUR SERVICES IS AT ALL TIMES SUBJECT TO THE TERMS OF USE. PLEASE READ THIS TERMS OF USE CAREFULLY.</p>
|
||||
<p>IF YOU DO NOT AGREE WITH THIS TERMS OF USE, YOU ARE NOT AUTHORIZED TO ACCESS OR USE OUR WEBSITE AND YOU SHALL NOT ACCEPT OUR SERVICES.</p>
|
||||
</div>
|
||||
|
||||
<div class="content-text">
|
||||
1. These Terms can be found at any time on the Company’s official
|
||||
website.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
2. The Company may change these Terms at its discretion, and at any
|
||||
time, to the extent that is consistent to applicable laws and
|
||||
regulations.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
3. Any material changes to these Terms will be brought to your attention
|
||||
as Company may determine in its sole discretion.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
4. Company may provide updates, patches and other modifications to the
|
||||
Game that must be installed for the User to continue to play the Game
|
||||
properly or at all. Company may update, patch or modify the Game
|
||||
remotely and access the Game residing on your machine for such purpose,
|
||||
and you hereby grant to Company the right to deploy and apply such
|
||||
patches, updates and modifications. All provisions of these Terms that
|
||||
refer to the Game shall also include all such patches, updates and
|
||||
modifications.
|
||||
</div>
|
||||
<div class="content-title">PROHIBITED USES</div>
|
||||
<div class="content-text">
|
||||
1. Without written permission from Company, use, advertise or exploit in
|
||||
any manner the Game or the Service (in each case in whole or in part)
|
||||
commercially, including but not limited to use at a gaming center or any
|
||||
other location.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
2. use the Game in connection with unauthorized software, services, or
|
||||
devices. Such use may be illegal, voids any warranty, and is a breach of
|
||||
these Terms.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
3. Make copies of the Game or the Service (in each case in whole or in
|
||||
part), except that you may make one (1) copy of the Game for backup or
|
||||
archival purposes, or make copies of the materials accompanying the Game
|
||||
for non-commercial backup and reference only.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
4. Reverse engineer, derive source code, modify, decompile, disassemble,
|
||||
or create derivative works of the Game or the Service (in each case in
|
||||
whole or in part) or infringe any patent, trademark, copyright or other
|
||||
proprietary rights, except as the applicable law expressly permits, in
|
||||
which case all and any lawful modifications, adaptations, improvements,
|
||||
etc., and all copyrights therein, shall be deemed assigned to, and shall
|
||||
belong to, vest in and be the exclusive property of Company and/or its
|
||||
licensors on creation, in any event); and all moral rights (these
|
||||
include the right to be credited as the author of a work and the right
|
||||
to object to derogatory treatment of a work) therein shall be deemed
|
||||
waived (which means you will not be able to enforce your moral rights).
|
||||
</div>
|
||||
<div class="content-text">
|
||||
5. Remove, disable or circumvent any security protections or any
|
||||
technical measures that control access to the Game or the Service.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
6. Upload, modify, share, display or publish any information that
|
||||
contains software viruses or any other computer code, files or programs
|
||||
designed to interrupt, destroy or limit the functionality of any
|
||||
computer resource.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
7. Remove, modify, deface or circumvent any proprietary notices or
|
||||
labels contained on or within the Game or the Service.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
8. Export or re-export the Game or the Service any copy or adaptation of
|
||||
the Game or the Service in violation of any applicable laws or
|
||||
regulations.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
9. Create data or executable programs that mimic data or functionality
|
||||
in the Game or the Service.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
10. Steal and/or publish information belonging to others (including but
|
||||
not limited to personal information, non-personal information and
|
||||
payment information) without requisite consent or a license
|
||||
</div>
|
||||
<div class="content-text">
|
||||
11. Impersonate any person, including the Company, our affiliates, our
|
||||
designated partners, our designated representatives, or our employees.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
12. Harm the reputation of Company, our affiliates, our service
|
||||
providers or licensors, or the reputation of the Game or the Service.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
13. Post, link to, advertise, promote, or transmit anything that is
|
||||
illegal, invasive of privacy, harmful, threatening, abusive,
|
||||
blasphemous, harassing, tortious, disparaging, defamatory, vulgar,
|
||||
sexually explicit, pornographic, paedophilic, libelous, obscene,
|
||||
hateful, racially or ethnically offensive, or relating to or encouraging
|
||||
money laundering or gambling
|
||||
</div>
|
||||
<div class="content-text">
|
||||
14. Take advantage by exploiting, deceiving or misleading others in any
|
||||
way (as determined in our sole discretion).
|
||||
</div>
|
||||
<div class="content-text">
|
||||
15. Use the Game or Service (in each case in whole or in part) in a
|
||||
manner that is related to illegal activities or any action that
|
||||
negatively impacts the delivery of the Game or Service
|
||||
</div>
|
||||
<div class="content-text">
|
||||
16. Exploit errors and bugs found while playing the Game or using the
|
||||
Service.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
17. Violate any applicable law, rule, or regulation in connection with
|
||||
your access or use of the Game or Services.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
18. Access or use the Game or the Service for any purpose that is beyond
|
||||
the scope of the Game’s or the Services’ intended use (in Company’s sole
|
||||
judgment).
|
||||
</div>
|
||||
<div class="content-text">
|
||||
19. Use / develop / advertise / trade / distribute unauthorized
|
||||
programs, including but not limited to, any programs that intercept
|
||||
communication between a game and a game server; any unauthorized third
|
||||
party programs or hardware devices that may affect the game or normal
|
||||
game play, including but not limited to, mouse, hacks, cheats, helpers,
|
||||
bots, scripts, trainers, automatic programs, automatic mouse, mouse with
|
||||
macro function, programs that collect or modify game data by reading the
|
||||
game memory.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
20. Disrespect or use offensive words, symbols, or other communication
|
||||
(determined by context and in Company’s sole discretion) towards others,
|
||||
including based on their race, gender, nationality or otherwise.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
21. Create offensive nicknames or those that may provoke negative
|
||||
imagery
|
||||
</div>
|
||||
<div class="content-text">
|
||||
22. Without approval of the subject team player, or which otherwise
|
||||
interferes with normal team gameplay.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
23. Intentionally team up between players or other teams in ways that
|
||||
the Company system does not presuppose in each game mode
|
||||
</div>
|
||||
<div class="content-text">
|
||||
24. Manipulate the results of the Game in an unfair way or otherwise
|
||||
access or use the Game or Services in a manner that confers unfair
|
||||
advantage or disadvantage to any player including yourself
|
||||
</div>
|
||||
<div class="content-text">
|
||||
25. Upload, modify, share, display or publish any information that is
|
||||
harmful to minors. Any action which is not defined in these Terms that
|
||||
negatively impacts the delivery of the Game or the Service or negatively
|
||||
affects other players may be subject to warning and penalty, including
|
||||
termination of the License. Furthermore, you agree that you shall abide
|
||||
by any safety information, security instructions, required updates, or
|
||||
any other relevant notices contained in the manual or otherwise
|
||||
associated with the Game or Service.
|
||||
</div>
|
||||
<h4>This Terms of Use was last updated on 15 July 2024.</h4>
|
||||
<div class="content-title">
|
||||
By accessing or using our website located at counterfire.games (the "Website") or any applications and services (including but not limited to our games ("Games"),
|
||||
our gaming platforms) provided by us (collectively, the "Services"), you agree to this Terms of Use and the incorporated Privacy Policy as well as all applicable laws and regulations.
|
||||
We may change this Terms of Use in our sole discretion at any time by publishing an updated version here. Any changes to this Terms of Use will take effect and be
|
||||
binding on you from the time of posting the updated version. Therefore, it is your obligation to periodically visit our Website to review any changes that may be made.
|
||||
Your continued use of our Website constitutes your agreement to be bound by any changes to this Terms of Use.
|
||||
</div>
|
||||
|
||||
<div class="content-title">ACCESSING THE SERVICE</div>
|
||||
<div class="content-text">
|
||||
As a general rule, the Service is accessible for 24 hours a day
|
||||
throughout the whole year. However, the accessibility of the Service is
|
||||
subject to the Company shutting down the Service, in whole or in part,
|
||||
for any period the Company deems appropriate to enable the update or
|
||||
technical maintenance of the Service, or any other action that the
|
||||
Company determines in its sole discretion. The Company may make
|
||||
amendments to the Service or restrict access (including cancellation,
|
||||
termination, modification or suspension of a User’s Account or License)
|
||||
from all or specific Users without notice. Additionally, the Service may
|
||||
be unavailable depending on geographic location.
|
||||
</div>
|
||||
<div class="content-title">DISCLAIMERS</div>
|
||||
<h4>Your Obligations</h4>
|
||||
<div class="content-text">
|
||||
<p>1. You agree to use the Services only for lawful purposes and in accordance with these Terms of Use and any instructions we provide.</p>
|
||||
<p>
|
||||
2. You are responsible for making all necessary arrangements to access to our Website and the Services. This includes ensuring the security
|
||||
of your systems and devices, including using appropriate virus protection and other security software.
|
||||
</p>
|
||||
<p>
|
||||
3. You expressly acknowledge and agree that your participation in any of our Games, and your receipt and possession of any tokens
|
||||
(if any) issued or provided by us or our designated entity, is voluntary and for entertainment purposes only.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="content-text">
|
||||
1. Any interruption of the Service, use of the Game, the Service, or
|
||||
termination of an Account due to the User’s fault.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
2. Any action of a telecommunications provider to cease or fail to
|
||||
provide the telecommunication service.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
3. Any unavoidable reasons that caused Service failure, such as
|
||||
maintenance, replacement, regular inspection, construction, etc. save in
|
||||
respect of intentional or material negligence of the Company.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
4. Any problems caused by the User’s device or problems related to the
|
||||
network environment.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
5. The information, data, facts, reliability, accuracy, etc. posted or
|
||||
transmitted by the User or a third party in the Service or on the
|
||||
official website of the Company.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
6. Your interactions with other Users and/or third parties when using
|
||||
the Service. (we may, at our sole discretion, attempt to mediate
|
||||
disputes between Users, but we are not obliged to become involved or
|
||||
become responsible in any way with such disputes.)
|
||||
</div>
|
||||
<div class="content-text">
|
||||
7. Anything which is the responsibility of a third party (unless they
|
||||
are under the direction and control of the Company)
|
||||
</div>
|
||||
<div class="content-text">
|
||||
8. When Users fail to receive the results they expect of the in-Game
|
||||
items and the Company is not responsible for any loss involved when
|
||||
making selections or using the Service
|
||||
</div>
|
||||
<div class="content-text">
|
||||
9. Loss of the User’s in-Game assets (such as in-Game currency or
|
||||
in-Game items) 10. Circumstances in which the Company limits the use of
|
||||
Service from Users in accordance with the relevant laws and/or
|
||||
government policies.
|
||||
</div>
|
||||
<h4>Territorial Restrictions</h4>
|
||||
<div class="content-text">
|
||||
<p>
|
||||
4. You represent and warrant that you are not located in, or a national or resident of, a jurisdiction where distribution
|
||||
or use of the Services would be contrary to law or regulation, or which would subject us to any registration requirement within such jurisdiction.
|
||||
</p>
|
||||
</div>
|
||||
<div class="content-title">
|
||||
<p>
|
||||
5. Our Services are not accessible to users residing in mainland China or citizens of mainland China. You shall not use any of our Services
|
||||
if you are reside in mainland China or a citizen of mainland China. Unless specified otherwise, our Games do not have an ISBN issued by Chinese authorities.
|
||||
</p>
|
||||
</div>
|
||||
<div class="content-text">
|
||||
<p>
|
||||
6. We reserve the right, at any time and in our discretion, to limit the availability of the Services (or any part thereof) to any individual/entity or any jurisdiction
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="content-title">FURTHER DISCLAIMERS</div>
|
||||
<div class="content-text">
|
||||
The Company does not make any promises regarding your use of the Game
|
||||
and Service. The Game and Service are provided “as is” and “as
|
||||
available,” without warranty of any kind (including any implied warranty
|
||||
of merchantability, non-infringement, or fitness for a particular
|
||||
purpose), to the maximum extent permitted by law. Use of the Game and
|
||||
Service is at your sole risk.
|
||||
<h4>Age Limitations</h4>
|
||||
<div class="content-text">
|
||||
<p>
|
||||
7. By accessing or using the Services, any individual user shall be at least 18 years old or the minimum age in the user's jurisdiction to have the
|
||||
legal capacity to enter into contracts, whichever is older, and have the right, capacity, and authority to enter into a contract.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h4>Your Right to Access and Use the Services</h4>
|
||||
<div class="content-text">
|
||||
<p>
|
||||
8. Access to and use of our Services is permitted on a temporary basis, and we reserve the right to withdraw or amend our Services without notice.
|
||||
We will not be liable if for any reason our Services are unavailable at any time or for any period. You agree that we may cease providing the Services
|
||||
or change the Services at any time for any reason without notice to you and without liability of any kind. We also reserve the right to deny anyone access
|
||||
to the Services at any time for any reason with or without notice.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h4>Registration and Your Account</h4>
|
||||
<div class="content-text">
|
||||
<p>
|
||||
9. Registration may not be required to view certain content of this Website. However, you may need to register with us and provide certain information
|
||||
about yourself in order to view certain content of this Website and/or use the full features of the Services. When you create an account, the information
|
||||
ou provide to us must be accurate, complete and updated. You may not create an account for or use the Services if you are barred from using the Services
|
||||
under the Terms of Use and/or under the laws of the British Virgin Islands and/or any law applicable to you, including but not limited to the law of the
|
||||
country in which you are resident or from which you would use the Services.
|
||||
</p>
|
||||
<P>
|
||||
10. You are responsible for maintaining the confidentiality of your log-in details. You will be responsible for any use of our Services by anyone using your log-in details.
|
||||
</P>
|
||||
</div>
|
||||
|
||||
<h4>Using Blockchain Wallet to Participate in the Games</h4>
|
||||
<div class="content-text">
|
||||
<p>
|
||||
11. You may need a blockchain wallet ("Wallet") to participate in the Games. Wallet means a wallet designated to interact with certain blockchain networks.
|
||||
</p>
|
||||
<p>
|
||||
12. You are responsible for all activities and actions taken from/by your Wallet, including taking reasonable steps to secure your Wallet.
|
||||
</p>
|
||||
<p>
|
||||
13. You agree that if you are in violation of this Terms of Use (including but not limited to committing any prohibited act), we may cease providing any or
|
||||
all of the Services to you at any time in our sole discretion without any prior notice and without any liability to you.
|
||||
</p>
|
||||
<p>
|
||||
14. Please note that we will not ask you to provide the private keys of your wallet under any circumstances.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h4>Prohibited Acts</h4>
|
||||
<div class="content-text">
|
||||
<p>
|
||||
15. You understand that the following acts are prohibited acts:
|
||||
</p>
|
||||
<P class="">
|
||||
• Actions to disrupting or obstructing the operation of the Website or our Services, such as attempting to gain unauthorized access to our server system;
|
||||
</P>
|
||||
<P>
|
||||
• Actions to causing inconvenience, injury or loss to other users, third parties or us, or risk thereof;
|
||||
</P>
|
||||
<P>
|
||||
• Actions to infringing on the property or privacy of other users, third parties or us, or risk thereof;
|
||||
</P>
|
||||
<P>
|
||||
• Actions to disrupting public order and morality, or risk thereof;
|
||||
</P>
|
||||
<P>
|
||||
• Actions to infringing on laws and regulations, risk thereof;
|
||||
</P>
|
||||
<P>
|
||||
• Taking advantage of security holes and/or game errors for any purpose which is unlawful or unreasonable in our sole discretion;
|
||||
</P>
|
||||
<P>
|
||||
• Using hack/cheat tools or other software to interfere and/or intentionally change/falsify the content of the Games.
|
||||
</P>
|
||||
</div>
|
||||
|
||||
<h4>Linking to Our Website</h4>
|
||||
<div class="content-text">
|
||||
<p>
|
||||
16. You may establish a hyperlink to this Website from any website that is owned by you. Such linking is subject to this Terms
|
||||
of Use and we have the right to withdraw your permission to link at any time.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h4>Third Party Content (Including Links from Our Website)</h4>
|
||||
<div class="content-text">
|
||||
<p>
|
||||
17. We may display third-party content, advertisements, links, promotions, logos and other materials on our Website or in our
|
||||
Games and other forms of Services (collectively, the "Third-Party Content"), and we have not reviewed all of the content
|
||||
(including but not limited to the sites linked to this Website). The Third-Party Content is provided for your convenience only.
|
||||
We are also not responsible for the Third-Party Content and we make no representations or warranties of any kind regarding such
|
||||
Third-Party Content, including, without limitation, the accuracy, validity, legality, and copyright compliance, of such content.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h4>No Financial Services Activities or Advice</h4>
|
||||
<div class="content-text">
|
||||
<p>
|
||||
18. The information and any materials contained in this Website, our Games and other forms of Services should not be
|
||||
considered as an offer or solicitation to buy or sell financial instruments, provide financial advice, create a trading
|
||||
platform, facilitate or take deposits or provide any other financial services of any kind in any jurisdiction.
|
||||
</p>
|
||||
<p>
|
||||
19. The information contained in this Website, our Games and other forms of Services is not intended to provide and
|
||||
should not be construed as advice. You should obtain appropriate professional advice when necessary.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h4>Intellectual Property</h4>
|
||||
<div class="content-text">
|
||||
<p>
|
||||
20. The Website, our Games and other forms of Services and their entire contents, features and functionality
|
||||
(including but not limited to all copyrights, patents, trade secrets, trademarks, other intellectual property rights, trade names,
|
||||
logos, slogans, custom graphics, button icons, scripts, videos, text, images, software, code, files, content, information and other material available),
|
||||
are owned by us and our licensors. Nothing on this Website, our Games and other forms of Services may be copied, imitated or used, in whole or in part,
|
||||
without our or the applicable licensor's prior written permission.
|
||||
</p>
|
||||
<p>
|
||||
21. You may only access, use and print the information and material on this Website, our Games and other forms of Services
|
||||
for non-commercial or personal use provided that you are authorized to access such information or material and keep intact
|
||||
all copyright and proprietary notices. You must not use any part of the materials on our Website, our Games and other forms
|
||||
of Services for other commercial purposes without obtaining a license to do so from us and/or our licensors.
|
||||
</p>
|
||||
<p>
|
||||
22. We respect the intellectual property of others. If you believe that your intellectual property rights are being infringed,
|
||||
please contact us immediately. Our email address can be found at the end of this Terms of Use.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h4>DISCLAIMER OF WARRANTIES AND LIMITATION OF LIABILITY</h4>
|
||||
<div class="content-text">
|
||||
<p>
|
||||
23. ALL SERVICES AND ALL INFORMATION, CONTENT, MATERIALS, PRODUCTS AVAILABLE TO YOU ARE PROVIDED ON AN "AS IS" AND "AS AVAILABLE" BASIS AND,
|
||||
TO THE MAXIMUM EXTENT PERMITTED BY LAW, WE, OUR AFFILIATES FROM TIME TO TIME, AND CONNECTED THIRD PARTIES EXPRESSLY DISCLAIMS ALL WARRANTIES,
|
||||
EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, ALL WARRANTIES INCLUDING ANY WARRANTY THAT THE CONTENT DISPLAYED ON OR AVAILABLE FROM THE
|
||||
SERVICES IS ACCURATE, CURRENT, OR RELIABLE, AND THE SERVICES WILL NOT CAUSE ANY HARM TO YOUR DEVICE AND ALL OTHER TERMS IMPLIED BY STATUTE,
|
||||
COMMON LAW, OR EQUITY LAW.
|
||||
</p>
|
||||
<p>
|
||||
24. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, WE, OUR AFFILIATES AND OUR RESPECTIVE MEMBERS, DIRECTORS, OFFICERS, EMPLOYEES, AND AGENTS,
|
||||
WILL NOT BE LIABLE FOR ANY DAMAGES OF ANY KIND ARISING FROM THE USE OR INABILITY TO USE OR THE RESULT OF USE OF ANY OF OUR SERVICES (INCLUDING BUT
|
||||
NOT LIMITED TO ANY KIND OF DAMAGE CAUSED BY DENIAL-OF-SERVICES ATTACK, VIRUS, ETC. TO YOUR DEVICE OR EQUIPMENT OR DATA) OR FROM ANY INFORMATION, CONTENT,
|
||||
MATERIALS, PRODUCTS (INCLUDING SOFTWARE) OR OTHER SERVICES INCLUDED ON OR OTHERWISE MADE AVAILABLE TO YOU THROUGH ANY OF OUR SERVICES, INCLUDING, BUT NOT
|
||||
LIMITED TO DIRECT, INDIRECT, INCIDENTAL, PUNITIVE, AND CONSEQUENTIAL DAMAGES, UNLESS OTHERWISE SPECIFIED IN WRITING.
|
||||
</p>
|
||||
<p>
|
||||
25. THE LIMITATION APPLIES TO ALL CAUSES OF ACTION IN THE AGGREGATE INCLUDING WITHOUT LIMITATION BREACH OF CONTRACT, BREACH OF WARRANTY, DEFAMATION,
|
||||
NEGLIGENCE, STRICT LIABILITY, MISREPRESENTATION, AND OTHER TORTS, AS WELL AS THIRD-PARTY CLAIMS. IF CLAUSE 24 OF THIS TERMS OF USE ARE FOR ANY REASON
|
||||
HELD UNENFORCEABLE OR INAPPLICABLE, YOU AGREE THAT OUR AGGREGATE LIABILITY SHALL NOT EXCEED ONE HUNDRED US DOLLARS (US$100).
|
||||
</p>
|
||||
<p>
|
||||
26. THIS DISCLAIMER OF WARRANTIES AND/OR LIMITATION OF LIABILITY CLAUSE WILL SURVIVE THE TERMINATION OF THESE TERMS AND OF YOUR USE OF THE SERVICES.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h4>Privacy Policy</h4>
|
||||
<div class="content-text">
|
||||
<p>
|
||||
27. Please see our Privacy Policy on counterfire.games for our policy regarding the collection and use of your personal information.
|
||||
The latest version of the Privacy Policy is a part of this Terms of Use.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h4>Waiver</h4>
|
||||
<div class="content-text">
|
||||
<p>
|
||||
28. No waiver in respect of these terms by us shall be effective or enforceable unless it is expressly stated to be a waiver and is communicated to you in writing.
|
||||
If we fail, at any time, to exercise any of the rights or remedies to which we are entitled under these terms of use, this shall not constitute a waiver of
|
||||
such rights or remedies and shall not relieve you from compliance with such obligations.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h4>Indemnification</h4>
|
||||
<div class="content-text">
|
||||
<p>
|
||||
29. You agree to indemnify and hold us, our subsidiaries, and affiliates from time to time, and our respective members, directors, officers, agents,
|
||||
partners and employees harmless from any claim, loss, liability, cost, expense, debt, obligations, and demand, including without limitation, attorneys'
|
||||
fees on a full indemnity basis, due or relating to or arising out of your use of our Services and/or arising from a breach of the Terms of Use and/or any
|
||||
breach of your representations and warranties set forth in the Terms of Use and/or arising from any content that you post, and/or your violation of any third party rights.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h4>Severability</h4>
|
||||
<div class="content-text">
|
||||
<p>
|
||||
30. If any provision of these terms is found invalid, unlawful or unenforceable to any extent by any competent authority, such term, condition or
|
||||
provision will to that extent be severed from the remaining terms, conditions and provisions which will continue to be valid to the fullest extent permitted by law.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h4>Communications</h4>
|
||||
<div class="content-text">
|
||||
<p>
|
||||
31. You agree that communications with us will be mainly electronic and you agree to accept notices from us by electronically, such as e-mails,
|
||||
or notices and messages on this Website or through our applications (if any), and you can retain copies of these communications for your records.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h4>Governing Law And Jurisdiction</h4>
|
||||
<div class="content-text">
|
||||
<p>
|
||||
32. This terms of use and the privacy policy are governed by and shall be construed <span>in accordance with the laws of the british virgin islands.</span>
|
||||
All claims arising out of or relating to the terms of use and the privacy policy are <span>subject to the exclusive jurisdiction of the courts of the birtish virgin islands. </span>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h4>No Joint Proceedings</h4>
|
||||
<div class="content-text">
|
||||
<p>
|
||||
33. Any dispute regarding this Terms of Use or the Services is personal to you, and we will not be brought as a representative action, class action, or any other type of representative proceeding.
|
||||
You agree not to join with any other individual or entity or group of individuals or entities for the purpose of seeking to resolve the respective disputes on a consolidated or representative basis.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h4>Contact Us</h4>
|
||||
<div class="content-text">
|
||||
<p>
|
||||
34. If you have any questions about this Terms of Use, please contact us at contact@counterfire.games.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="content-text">
|
||||
Specifically, the Company does not make any promises that you will be
|
||||
able to enjoy continuous, error-free, secure or virus-free operation of
|
||||
the Game, Service or your Account. Please note that some jurisdictions
|
||||
do not allow the above warranty limitations, so these limitations may
|
||||
not apply to you.
|
||||
</div>
|
||||
<div class="content-title">LIMITATION OF LIABILITY</div>
|
||||
<div class="content-text">
|
||||
The Company will not be responsible for any damage or loss caused to you
|
||||
where such damage or loss is not reasonably foreseeable to you and us
|
||||
when you use the Game or Service, including where the damage or loss
|
||||
results from our breach of these Terms.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
The Service may be suspended temporarily and without notice in the case
|
||||
of system failure, maintenance or repair or for reasons beyond our
|
||||
reasonable control. Except as set out elsewhere in these Terms we will
|
||||
not be liable to you or to any other person in the event that all or
|
||||
part of the Service is unavailable, discontinued, modified or changed in
|
||||
any way.
|
||||
</div>
|
||||
<div class="content-text">The Company does not accept any responsibility for:</div>
|
||||
<div class="content-text">
|
||||
1. Any damage or loss caused to you where you are not entering into
|
||||
these Terms as a consumer
|
||||
</div>
|
||||
<div class="content-text">
|
||||
2. Any failure, any suspension and/or any termination of access to the
|
||||
Game or the Service or any content in connection with or arising out of
|
||||
a force majeure event. In these Terms, a “force majeure” event shall
|
||||
include, without limitation, strikes, lock-outs or other industrial
|
||||
disputes, nuclear accident or acts of God, war or terrorist activity,
|
||||
riot, civil commotion, malicious damage, compliance with any law or
|
||||
government order, rule regulation or direction, accident or breakdown of
|
||||
plant or machinery, fire, flood, storm or default of suppliers, and
|
||||
where they are beyond our reasonable control, any other acts, events,
|
||||
omissions or accidents
|
||||
</div>
|
||||
<div class="content-text">
|
||||
3. Any claims brought against you by a third party except as stated in
|
||||
these Terms.
|
||||
</div>
|
||||
<div class="content-title">GRIEVANCE HANDLING AND DISPUTE RESOLUTION</div>
|
||||
<div class="content-text">
|
||||
1. The Company shall inform Users on the Company’s website about the
|
||||
ways that Users can present their opinions or complaints regarding any
|
||||
inconveniences experienced by the Users. The Company operates as a
|
||||
dedicated organization to handle such Users’ opinions and complaints.
|
||||
This does not exclude your rights to bring any legal claim or complaint
|
||||
to a regulator outside of this process.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
2. If a dispute arises between you and Company, our goal is to provide
|
||||
you with a neutral and cost-effective means of resolving the dispute
|
||||
quickly.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
3. The Company has the sole discretion on whether to, and to what extent
|
||||
to, but no obligation to, enforce any rights of Company or take any
|
||||
actions as stated in these Terms.
|
||||
</div>
|
||||
<div class="content-title">GOVERNING LAW AND DISPUTES</div>
|
||||
<div class="content-text">
|
||||
If a dispute arises between you and Company, our goal is to provide you
|
||||
with a neutral and cost-effective means of resolving the dispute
|
||||
quickly.
|
||||
</div>
|
||||
<div class="content-title">OTHER POLICIES</div>
|
||||
<div class="content-text">
|
||||
1. The Company may use the Privacy Policy and other policies to cover
|
||||
specific details that are not covered in these Terms in order to protect
|
||||
User interests and maintain order in the Game.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
2. By agreeing to these Terms, you also agree to be bound by the terms
|
||||
and conditions set out in the Rules of Conduct.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
3. Violation of the Rules of Conduct can result in termination of the
|
||||
License.
|
||||
</div>
|
||||
<div class="content-text">
|
||||
If any provision of these Terms is held to be unenforceable for any
|
||||
reason, such provision shall be amended only to the extent necessary to
|
||||
make it enforceable, and the remaining provisions of these Terms shall
|
||||
remain in full force and effect. If you have any questions concerning
|
||||
these Terms or the License contained herein, you may contact Company at
|
||||
email.
|
||||
</div>
|
||||
<div class="content-text">contact@counterfire.games</div>
|
||||
<div class="content-text">
|
||||
This Terms of Service has been translated into other languages for the
|
||||
convenience of the players. In case of any discrepancies between the
|
||||
English version and the other versions, the English version shall
|
||||
prevail.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
@ -367,28 +278,35 @@
|
||||
<script setup></script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.containers{
|
||||
.containers {
|
||||
background-color: rgb(20, 20, 20);
|
||||
}
|
||||
.content{
|
||||
padding-top: 90px;
|
||||
padding-bottom: 60px;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.content-title{
|
||||
font-size: 18px;
|
||||
color: #ffff;
|
||||
}
|
||||
.title{
|
||||
color: #ffff;
|
||||
text-align: center;
|
||||
font-size: 25px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.content-text{
|
||||
color: #ffff;
|
||||
|
||||
font-size: 16px;
|
||||
.content {
|
||||
padding-top: 90px;
|
||||
padding-bottom: 60px;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
color: #fff;
|
||||
font-size: 18px;
|
||||
h1 {
|
||||
font-size: 48px;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
margin-top: 20px;
|
||||
}
|
||||
.content-title {
|
||||
font-weight: 700;
|
||||
p {
|
||||
}
|
||||
}
|
||||
h4 {
|
||||
font-weight: 700;
|
||||
margin: 20px 0;
|
||||
}
|
||||
.content-text{
|
||||
span {
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
Loading…
x
Reference in New Issue
Block a user