SinCity Token (SIN) Token Tracker | BscScan (2024)

SinCity Token (SIN) Token Tracker | BscScan (1)

SinCity Token (SIN)

Sponsored

Sponsored

Сoins.game - 100 free spins for registration. Spin Now! Everyday giveaways up to 8.88BTC, Lucky Spins.Deposit BONUS 300% and Cashbacks!

NanoGames.io Daily Free Spin to win 10 ETH Free SpinStart your new gambling journey with NanoGames and claim free spin and lottery tickets!

Sponsored

BC.GAME The Best BNB Casino with 1,000,000 BNB Daily Bonus. Claim Now5000+ Slots, Live casino games, 50+ cryptos, 100% bet insurance. Register with Bscscan and get 240% first deposit bonus.

1xbit NO KYC CASINO Get Bonus! Up to 7 BTC for 1-4th deposits + free spins, cashback for bets, and more!

HUGEwinFast-Growing Casino - Win big anonymously with Crypto, get unique bonuses, and try your luck! PLAY NOWRegister now and get a 100% deposit bonus and no loss.

BscScan - Sponsored slots available. Book your slot here!

BEP-20

  • Check previous token supply
  • Add Token to MetaMask (Web3)
  • Update Token Info
  • Update Name Tag or Label
  • Submit Burn Details
  • Report/Flag Address

Overview

Max Total Supply

10,000SIN

Holders

6

Total Transfers

-

Market

Price

$0.00 @ 0.000000 BNB

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

0x1f978209485f2e54468a8204265379c31297a51c

  • Transfers
  • Holders
  • Info
  • DEX Trades
  • Contract
  • Analytics

Loading...

Loading

Loading...

Loading

Loading...

Loading

Click here to update the token information / general information

  • Code
  • Read Contract
  • Write Contract

Similar Match Source Code

This contract matches the deployed Bytecode of the Source Code for Contract 0x50adb244...f0c45D8Ec

The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:

HelloBEP20

Compiler Version

v0.8.5+commit.a4f2e591

Optimization Enabled:

Yes with 200 runs

Other Settings:

default evmVersion, MIT license

Contract Source Code (Solidity)

SinCity Token (SIN) Token Tracker | BscScan (9)SinCity Token (SIN) Token Tracker | BscScan (10)SinCity Token (SIN) Token Tracker | BscScan (11)IDE

    - function _msgSender() - function _msgData() - function owner() - function renounceOwnership() - function transferOwnership(address ne ... interface IBEP20 - function name() - function symbol() - function decimals() - function totalSupply() - function balanceOf(address account) - function getOwner() - function transfer(address recipient, ... - function transferFrom( - function approve(address spender, uin ... - function allowance(address _owner, ad ... contract BEP20 is Ownable, IBEP20 - function name() - function symbol() - function decimals() - function totalSupply() - function balanceOf(address account) - function getOwner() - function transfer(address recipient, ... - function transferFrom( - function approve(address spender, uin ... - function allowance(address owner, add ... - function increaseAllowance(address sp ... - function decreaseAllowance(address sp ... - function _transfer( - function _mint(address account, uint2 ... - function _burn(address account, uint2 ... - function _approve( - function _setupDecimals(uint8 decimal ... - function _beforeTokenTransfer( interface IPayable - function pay(string memory serviceNam ... contract GeneratorCopyright - function generator() - function version() contract HelloBEP20 is BEP20, Serv ... *
  • Similar
  • Sol2Uml
  • Submit Audit
  • Compare
/** *Submitted for verification at BscScan.com on 2021-06-14*/// SPDX-License-Identifier: MIT/* * Token has been generated for FREE using https://vittominacori.github.io/bep20-generator/ * * NOTE: "Contract Source Code Verified (Similar Match)" means that this Token is similar to other tokens deployed * using the same generator. It is not an issue. It means that you won't need to verify your source code because of * it is already verified. * * DISCLAIMER: GENERATOR'S AUTHOR IS FREE OF ANY LIABILITY REGARDING THE TOKEN AND THE USE THAT IS MADE OF IT. * The following code is provided under MIT License. Anyone can use it as per their needs. * The generator's purpose is to make people able to tokenize their ideas without coding or paying for it. * Source code is well tested and continuously updated to reduce risk of bugs and to introduce language optimizations. * Anyway the purchase of tokens involves a high degree of risk. Before acquiring tokens, it is recommended to * carefully weighs all the information and risks detailed in Token owner's Conditions. */// File: @openzeppelin/contracts/utils/Context.solpragma solidity ^0.8.0;/* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; }}// File: @openzeppelin/contracts/access/Ownable.solpragma solidity ^0.8.0;/** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; }}// File: contracts/token/BEP20/lib/IBEP20.solpragma solidity ^0.8.0;/** * @dev Interface of the BEP standard. */interface IBEP20 { /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Returns the token owner. */ function getOwner() external view returns (address); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address _owner, address spender) external view returns (uint256); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value);}// File: contracts/token/BEP20/lib/BEP20.solpragma solidity ^0.8.0;/** * @dev Implementation of the {IBEP20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of BEP20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IBEP20-approve}. */contract BEP20 is Ownable, IBEP20 { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {BEP20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IBEP20-balanceOf} and {IBEP20-transfer}. */ function decimals() public view override returns (uint8) { return _decimals; } /** * @dev See {IBEP20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IBEP20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IBEP20-getOwner}. */ function getOwner() public view override returns (address) { return owner(); } /** * @dev See {IBEP20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IBEP20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {BEP20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "BEP20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev See {IBEP20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IBEP20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IBEP20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IBEP20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "BEP20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "BEP20: transfer from the zero address"); require(recipient != address(0), "BEP20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "BEP20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "BEP20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "BEP20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "BEP20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "BEP20: approve from the zero address"); require(spender != address(0), "BEP20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {}}// File: contracts/service/ServicePayer.solpragma solidity ^0.8.0;interface IPayable { function pay(string memory serviceName) external payable;}/** * @title ServicePayer * @dev Implementation of the ServicePayer */abstract contract ServicePayer { constructor(address payable receiver, string memory serviceName) payable { IPayable(receiver).pay{value: msg.value}(serviceName); }}// File: contracts/utils/GeneratorCopyright.solpragma solidity ^0.8.0;/** * @title GeneratorCopyright * @author BEP20 Generator (https://vittominacori.github.io/bep20-generator) * @dev Implementation of the GeneratorCopyright */contract GeneratorCopyright { string private constant _GENERATOR = "https://vittominacori.github.io/bep20-generator"; string private _version; constructor(string memory version_) { _version = version_; } /** * @dev Returns the token generator tool. */ function generator() public pure returns (string memory) { return _GENERATOR; } /** * @dev Returns the token generator version. */ function version() public view returns (string memory) { return _version; }}// File: contracts/token/BEP20/HelloBEP20.solpragma solidity ^0.8.0;/** * @title HelloBEP20 * @author BEP20 Generator (https://vittominacori.github.io/bep20-generator) * @dev Implementation of the HelloBEP20 */contract HelloBEP20 is BEP20, ServicePayer, GeneratorCopyright("v2.2.0") { constructor( string memory name_, string memory symbol_, address payable feeReceiver_ ) payable BEP20(name_, symbol_) ServicePayer(feeReceiver_, "HelloBEP20") { _mint(_msgSender(), 10000e18); }}

Contract Security Audit

  • No Contract Security Audit Submitted- Submit Audit Here

Contract ABI

  • JSON Format
  • RAW/Text Format
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address payable","name":"feeReceiver_","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"generator","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

Contract Creation Code

Decompile Bytecode Switch to Opcodes View

60806040526040516200111a3803806200111a8339810160408190526200002691620003c4565b60405180604001604052806006815260200165076322e322e360d41b815250816040518060400160405280600a815260200169048656c6c6f42455032360b41b815250858560006200007d620001a160201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000dc9060049060208501906200028d565b508051620000f29060059060208401906200028d565b50506006805460ff19166012179055506040516315b36b9760e11b81526001600160a01b03831690632b66d72e9034906200013290859060040162000451565b6000604051808303818588803b1580156200014c57600080fd5b505af115801562000161573d6000803e3d6000fd5b505085516200017f95506007945060208701935091506200028d9050565b506200019890503369021e19e0c9bab2400000620001a5565b50505062000533565b3390565b6001600160a01b038216620002005760405162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806003600082825462000214919062000486565b90915550506001600160a01b038216600090815260016020526040812080548392906200024390849062000486565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200029b90620004e0565b90600052602060002090601f016020900481019282620002bf57600085556200030a565b82601f10620002da57805160ff19168380011785556200030a565b828001600101855582156200030a579182015b828111156200030a578251825591602001919060010190620002ed565b50620003189291506200031c565b5090565b5b808211156200031857600081556001016200031d565b600082601f8301126200034557600080fd5b81516001600160401b03808211156200036257620003626200051d565b604051601f8301601f19908116603f011681019082821181831017156200038d576200038d6200051d565b81604052838152866020858801011115620003a757600080fd5b620003ba846020830160208901620004ad565b9695505050505050565b600080600060608486031215620003da57600080fd5b83516001600160401b0380821115620003f257600080fd5b620004008783880162000333565b945060208601519150808211156200041757600080fd5b50620004268682870162000333565b604086015190935090506001600160a01b03811681146200044657600080fd5b809150509250925092565b602081526000825180602084015262000472816040850160208701620004ad565b601f01601f19169190910160400192915050565b60008219821115620004a857634e487b7160e01b600052601160045260246000fd5b500190565b60005b83811015620004ca578181015183820152602001620004b0565b83811115620004da576000848401525b50505050565b600181811c90821680620004f557607f821691505b602082108114156200051757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b610bd780620005436000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a257806395d89b411161007157806395d89b4114610217578063a457c2d71461021f578063a9059cbb14610232578063dd62ed3e14610245578063f2fde38b1461027e57600080fd5b8063715018a6146101cf5780637afa1eed146101d9578063893d20e8146101e15780638da5cb5b1461020657600080fd5b8063313ce567116100de578063313ce56714610176578063395093511461018b57806354fd4d501461019e57806370a08231146101a657600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610291565b6040516101259190610a9d565b60405180910390f35b61014161013c366004610a73565b610323565b6040519015158152602001610125565b6003545b604051908152602001610125565b610141610171366004610a37565b610339565b60065460405160ff9091168152602001610125565b610141610199366004610a73565b6103ef565b610118610426565b6101556101b43660046109e2565b6001600160a01b031660009081526001602052604090205490565b6101d7610435565b005b6101186104d9565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610125565b6000546001600160a01b03166101ee565b6101186104f9565b61014161022d366004610a73565b610508565b610141610240366004610a73565b6105a3565b610155610253366004610a04565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101d761028c3660046109e2565b6105b0565b6060600480546102a090610b21565b80601f01602080910402602001604051908101604052809291908181526020018280546102cc90610b21565b80156103195780601f106102ee57610100808354040283529160200191610319565b820191906000526020600020905b8154815290600101906020018083116102fc57829003601f168201915b5050505050905090565b60006103303384846106ca565b50600192915050565b60006103468484846107ee565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103d05760405162461bcd60e51b815260206004820152602860248201527f42455032303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103e485336103df8685610b0a565b6106ca565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103309185906103df908690610af2565b6060600780546102a090610b21565b6000546001600160a01b0316331461048f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103c7565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606040518060600160405280602f8152602001610b73602f9139905090565b6060600580546102a090610b21565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561058a5760405162461bcd60e51b815260206004820152602560248201527f42455032303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103c7565b61059933856103df8685610b0a565b5060019392505050565b60006103303384846107ee565b6000546001600160a01b0316331461060a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103c7565b6001600160a01b03811661066f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103c7565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661072c5760405162461bcd60e51b8152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103c7565b6001600160a01b03821661078d5760405162461bcd60e51b815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103c7565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108525760405162461bcd60e51b815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103c7565b6001600160a01b0382166108b45760405162461bcd60e51b815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103c7565b6001600160a01b0383166000908152600160205260409020548181101561092c5760405162461bcd60e51b815260206004820152602660248201527f42455032303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103c7565b6109368282610b0a565b6001600160a01b03808616600090815260016020526040808220939093559085168152908120805484929061096c908490610af2565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109b891815260200190565b60405180910390a350505050565b80356001600160a01b03811681146109dd57600080fd5b919050565b6000602082840312156109f457600080fd5b6109fd826109c6565b9392505050565b60008060408385031215610a1757600080fd5b610a20836109c6565b9150610a2e602084016109c6565b90509250929050565b600080600060608486031215610a4c57600080fd5b610a55846109c6565b9250610a63602085016109c6565b9150604084013590509250925092565b60008060408385031215610a8657600080fd5b610a8f836109c6565b946020939093013593505050565b600060208083528351808285015260005b81811015610aca57858101830151858201604001528201610aae565b81811115610adc576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610b0557610b05610b5c565b500190565b600082821015610b1c57610b1c610b5c565b500390565b600181811c90821680610b3557607f821691505b60208210811415610b5657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe68747470733a2f2f766974746f6d696e61636f72692e6769746875622e696f2f62657032302d67656e657261746f72a2646970667358221220c8ec659fbf446ea065195c064353a55dbfb56a69ed81f5ecca75bb43b377161f64736f6c63430008050033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a2b5ceb15354343c6f7a1569ac250cdd9b0634ba000000000000000000000000000000000000000000000000000000000000001148656c6c6f42455032302076322e322e30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000548454c4c4f000000000000000000000000000000000000000000000000000000


Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a257806395d89b411161007157806395d89b4114610217578063a457c2d71461021f578063a9059cbb14610232578063dd62ed3e14610245578063f2fde38b1461027e57600080fd5b8063715018a6146101cf5780637afa1eed146101d9578063893d20e8146101e15780638da5cb5b1461020657600080fd5b8063313ce567116100de578063313ce56714610176578063395093511461018b57806354fd4d501461019e57806370a08231146101a657600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610291565b6040516101259190610a9d565b60405180910390f35b61014161013c366004610a73565b610323565b6040519015158152602001610125565b6003545b604051908152602001610125565b610141610171366004610a37565b610339565b60065460405160ff9091168152602001610125565b610141610199366004610a73565b6103ef565b610118610426565b6101556101b43660046109e2565b6001600160a01b031660009081526001602052604090205490565b6101d7610435565b005b6101186104d9565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610125565b6000546001600160a01b03166101ee565b6101186104f9565b61014161022d366004610a73565b610508565b610141610240366004610a73565b6105a3565b610155610253366004610a04565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101d761028c3660046109e2565b6105b0565b6060600480546102a090610b21565b80601f01602080910402602001604051908101604052809291908181526020018280546102cc90610b21565b80156103195780601f106102ee57610100808354040283529160200191610319565b820191906000526020600020905b8154815290600101906020018083116102fc57829003601f168201915b5050505050905090565b60006103303384846106ca565b50600192915050565b60006103468484846107ee565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103d05760405162461bcd60e51b815260206004820152602860248201527f42455032303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103e485336103df8685610b0a565b6106ca565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103309185906103df908690610af2565b6060600780546102a090610b21565b6000546001600160a01b0316331461048f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103c7565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606040518060600160405280602f8152602001610b73602f9139905090565b6060600580546102a090610b21565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561058a5760405162461bcd60e51b815260206004820152602560248201527f42455032303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103c7565b61059933856103df8685610b0a565b5060019392505050565b60006103303384846107ee565b6000546001600160a01b0316331461060a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103c7565b6001600160a01b03811661066f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103c7565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661072c5760405162461bcd60e51b8152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103c7565b6001600160a01b03821661078d5760405162461bcd60e51b815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103c7565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108525760405162461bcd60e51b815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103c7565b6001600160a01b0382166108b45760405162461bcd60e51b815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103c7565b6001600160a01b0383166000908152600160205260409020548181101561092c5760405162461bcd60e51b815260206004820152602660248201527f42455032303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103c7565b6109368282610b0a565b6001600160a01b03808616600090815260016020526040808220939093559085168152908120805484929061096c908490610af2565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109b891815260200190565b60405180910390a350505050565b80356001600160a01b03811681146109dd57600080fd5b919050565b6000602082840312156109f457600080fd5b6109fd826109c6565b9392505050565b60008060408385031215610a1757600080fd5b610a20836109c6565b9150610a2e602084016109c6565b90509250929050565b600080600060608486031215610a4c57600080fd5b610a55846109c6565b9250610a63602085016109c6565b9150604084013590509250925092565b60008060408385031215610a8657600080fd5b610a8f836109c6565b946020939093013593505050565b600060208083528351808285015260005b81811015610aca57858101830151858201604001528201610aae565b81811115610adc576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610b0557610b05610b5c565b500190565b600082821015610b1c57610b1c610b5c565b500390565b600181811c90821680610b3557607f821691505b60208210811415610b5657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe68747470733a2f2f766974746f6d696e61636f72692e6769746875622e696f2f62657032302d67656e657261746f72a2646970667358221220c8ec659fbf446ea065195c064353a55dbfb56a69ed81f5ecca75bb43b377161f64736f6c63430008050033

Deployed Bytecode Sourcemap

20408:322:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9464:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12475:169;;;;;;:::i;:::-;;:::i;:::-;;;1613:14:1;;1606:22;1588:41;;1576:2;1561:18;12475:169:0;1543:92:1;10566:100:0;10646:12;;10566:100;;;5996:25:1;;;5984:2;5969:18;10566:100:0;5951:76:1;11872:456:0;;;;;;:::i;:::-;;:::i;10409:92::-;10484:9;;10409:92;;10484:9;;;;6174:36:1;;6162:2;6147:18;10409:92:0;6129:87:1;13267:215:0;;;;;;:::i;:::-;;:::i;20074:89::-;;;:::i;10729:119::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10822:18:0;10795:7;10822:18;;;:9;:18;;;;;;;10729:119;3767:148;;;:::i;:::-;;19905:93;;;:::i;10910:92::-;10960:7;3189:6;-1:-1:-1;;;;;3189:6:0;10910:92;;;-1:-1:-1;;;;;1404:32:1;;;1386:51;;1374:2;1359:18;10910:92:0;1341:102:1;3116:87:0;3162:7;3189:6;-1:-1:-1;;;;;3189:6:0;3116:87;;9675:96;;;:::i;13985:377::-;;;;;;:::i;:::-;;:::i;11215:175::-;;;;;;:::i;:::-;;:::i;12707:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12823:18:0;;;12796:7;12823:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12707:151;4070:244;;;;;;:::i;:::-;;:::i;9464:92::-;9510:13;9543:5;9536:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9464:92;:::o;12475:169::-;12558:4;12575:39;1754:10;12598:7;12607:6;12575:8;:39::i;:::-;-1:-1:-1;12632:4:0;12475:169;;;;:::o;11872:456::-;12012:4;12029:36;12039:6;12047:9;12058:6;12029:9;:36::i;:::-;-1:-1:-1;;;;;12105:19:0;;12078:24;12105:19;;;:11;:19;;;;;;;;1754:10;12105:33;;;;;;;;12157:26;;;;12149:79;;;;-1:-1:-1;;;12149:79:0;;3662:2:1;12149:79:0;;;3644:21:1;3701:2;3681:18;;;3674:30;3740:34;3720:18;;;3713:62;-1:-1:-1;;;3791:18:1;;;3784:38;3839:19;;12149:79:0;;;;;;;;;12239:57;12248:6;1754:10;12270:25;12289:6;12270:16;:25;:::i;:::-;12239:8;:57::i;:::-;-1:-1:-1;12316:4:0;;11872:456;-1:-1:-1;;;;11872:456:0:o;13267:215::-;1754:10;13355:4;13404:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13404:34:0;;;;;;;;;;13355:4;;13372:80;;13395:7;;13404:47;;13441:10;;13404:47;:::i;20074:89::-;20114:13;20147:8;20140:15;;;;;:::i;3767:148::-;3162:7;3189:6;-1:-1:-1;;;;;3189:6:0;1754:10;3336:23;3328:68;;;;-1:-1:-1;;;3328:68:0;;4071:2:1;3328:68:0;;;4053:21:1;;;4090:18;;;4083:30;4149:34;4129:18;;;4122:62;4201:18;;3328:68:0;4043:182:1;3328:68:0;3874:1:::1;3858:6:::0;;3837:40:::1;::::0;-1:-1:-1;;;;;3858:6:0;;::::1;::::0;3837:40:::1;::::0;3874:1;;3837:40:::1;3905:1;3888:19:::0;;-1:-1:-1;;;;;;3888:19:0::1;::::0;;3767:148::o;19905:93::-;19947:13;19980:10;;;;;;;;;;;;;;;;;19973:17;;19905:93;:::o;9675:96::-;9723:13;9756:7;9749:14;;;;;:::i;13985:377::-;1754:10;14078:4;14122:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14122:34:0;;;;;;;;;;14175:35;;;;14167:85;;;;-1:-1:-1;;;14167:85:0;;5243:2:1;14167:85:0;;;5225:21:1;5282:2;5262:18;;;5255:30;5321:34;5301:18;;;5294:62;-1:-1:-1;;;5372:18:1;;;5365:35;5417:19;;14167:85:0;5215:227:1;14167:85:0;14263:67;1754:10;14286:7;14295:34;14314:15;14295:16;:34;:::i;14263:67::-;-1:-1:-1;14350:4:0;;13985:377;-1:-1:-1;;;13985:377:0:o;11215:175::-;11301:4;11318:42;1754:10;11342:9;11353:6;11318:9;:42::i;4070:244::-;3162:7;3189:6;-1:-1:-1;;;;;3189:6:0;1754:10;3336:23;3328:68;;;;-1:-1:-1;;;3328:68:0;;4071:2:1;3328:68:0;;;4053:21:1;;;4090:18;;;4083:30;4149:34;4129:18;;;4122:62;4201:18;;3328:68:0;4043:182:1;3328:68:0;-1:-1:-1;;;;;4159:22:0;::::1;4151:73;;;::::0;-1:-1:-1;;;4151:73:0;;3255:2:1;4151:73:0::1;::::0;::::1;3237:21:1::0;3294:2;3274:18;;;3267:30;3333:34;3313:18;;;3306:62;-1:-1:-1;;;3384:18:1;;;3377:36;3430:19;;4151:73:0::1;3227:228:1::0;4151:73:0::1;4261:6;::::0;;4240:38:::1;::::0;-1:-1:-1;;;;;4240:38:0;;::::1;::::0;4261:6;::::1;::::0;4240:38:::1;::::0;::::1;4289:6;:17:::0;;-1:-1:-1;;;;;;4289:17:0::1;-1:-1:-1::0;;;;;4289:17:0;;;::::1;::::0;;;::::1;::::0;;4070:244::o;17375:380::-;-1:-1:-1;;;;;17511:19:0;;17503:68;;;;-1:-1:-1;;;17503:68:0;;2850:2:1;17503:68:0;;;2832:21:1;2889:2;2869:18;;;2862:30;2928:34;2908:18;;;2901:62;-1:-1:-1;;;2979:18:1;;;2972:34;3023:19;;17503:68:0;2822:226:1;17503:68:0;-1:-1:-1;;;;;17590:21:0;;17582:68;;;;-1:-1:-1;;;17582:68:0;;5649:2:1;17582:68:0;;;5631:21:1;5688:2;5668:18;;;5661:30;5727:34;5707:18;;;5700:62;-1:-1:-1;;;5778:18:1;;;5771:32;5820:19;;17582:68:0;5621:224:1;17582:68:0;-1:-1:-1;;;;;17663:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17715:32;;5996:25:1;;;17715:32:0;;5969:18:1;17715:32:0;;;;;;;17375:380;;;:::o;14852:638::-;-1:-1:-1;;;;;14992:20:0;;14984:70;;;;-1:-1:-1;;;14984:70:0;;2444:2:1;14984:70:0;;;2426:21:1;2483:2;2463:18;;;2456:30;2522:34;2502:18;;;2495:62;-1:-1:-1;;;2573:18:1;;;2566:35;2618:19;;14984:70:0;2416:227:1;14984:70:0;-1:-1:-1;;;;;15073:23:0;;15065:71;;;;-1:-1:-1;;;15065:71:0;;4839:2:1;15065:71:0;;;4821:21:1;4878:2;4858:18;;;4851:30;4917:34;4897:18;;;4890:62;-1:-1:-1;;;4968:18:1;;;4961:33;5011:19;;15065:71:0;4811:225:1;15065:71:0;-1:-1:-1;;;;;15233:17:0;;15209:21;15233:17;;;:9;:17;;;;;;15269:23;;;;15261:74;;;;-1:-1:-1;;;15261:74:0;;4432:2:1;15261:74:0;;;4414:21:1;4471:2;4451:18;;;4444:30;4510:34;4490:18;;;4483:62;-1:-1:-1;;;4561:18:1;;;4554:36;4607:19;;15261:74:0;4404:228:1;15261:74:0;15366:22;15382:6;15366:13;:22;:::i;:::-;-1:-1:-1;;;;;15346:17:0;;;;;;;:9;:17;;;;;;:42;;;;15399:20;;;;;;;;:30;;15423:6;;15346:17;15399:30;;15423:6;;15399:30;:::i;:::-;;;;;;;;15464:9;-1:-1:-1;;;;;15447:35:0;15456:6;-1:-1:-1;;;;;15447:35:0;;15475:6;15447:35;;;;5996:25:1;;5984:2;5969:18;;5951:76;15447:35:0;;;;;;;;14973:517;14852:638;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;320:1;317;310:12;272:2;343:29;362:9;343:29;:::i;:::-;333:39;262:116;-1:-1:-1;;;262:116:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:2;;;528:1;525;518:12;480:2;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;470:173;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:2;;;810:1;807;800:12;762:2;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;752:224;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:2;;;1126:1;1123;1116:12;1078:2;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;1068:167:1:o;1640:597::-;1752:4;1781:2;1810;1799:9;1792:21;1842:6;1836:13;1885:6;1880:2;1869:9;1865:18;1858:34;1910:1;1920:140;1934:6;1931:1;1928:13;1920:140;;;2029:14;;;2025:23;;2019:30;1995:17;;;2014:2;1991:26;1984:66;1949:10;;1920:140;;;2078:6;2075:1;2072:13;2069:2;;;2148:1;2143:2;2134:6;2123:9;2119:22;2115:31;2108:42;2069:2;-1:-1:-1;2221:2:1;2200:15;-1:-1:-1;;2196:29:1;2181:45;;;;2228:2;2177:54;;1761:476;-1:-1:-1;;;1761:476:1:o;6221:128::-;6261:3;6292:1;6288:6;6285:1;6282:13;6279:2;;;6298:18;;:::i;:::-;-1:-1:-1;6334:9:1;;6269:80::o;6354:125::-;6394:4;6422:1;6419;6416:8;6413:2;;;6427:18;;:::i;:::-;-1:-1:-1;6464:9:1;;6403:76::o;6484:380::-;6563:1;6559:12;;;;6606;;;6627:2;;6681:4;6673:6;6669:17;6659:27;;6627:2;6734;6726:6;6723:14;6703:18;6700:38;6697:2;;;6780:10;6775:3;6771:20;6768:1;6761:31;6815:4;6812:1;6805:15;6843:4;6840:1;6833:15;6697:2;;6539:325;;;:::o;6869:127::-;6930:10;6925:3;6921:20;6918:1;6911:31;6961:4;6958:1;6951:15;6985:4;6982:1;6975:15

Swarm Source

ipfs://c8ec659fbf446ea065195c064353a55dbfb56a69ed81f5ecca75bb43b377161f

Loading...

Loading

[Download: CSV Export ]

[Download: CSV Export ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.

Connect a Wallet
Connect a Wallet

Compiler specific version warnings:

The compiled contract might be susceptible to VerbatimInvalidDeduplication (low-severity), FullInlinerNonExpressionSplitArgumentEvaluationOrder (low-severity), MissingSideEffectsOnSelectorAccess (low-severity), AbiReencodingHeadOverflowWithStaticArrayCleanup (medium-severity), DirtyBytesArrayToStorage (low-severity), DataLocationChangeInInternalOverride (very low-severity), NestedCalldataArrayAbiReencodingSizeValidation (very low-severity), SignedImmutables (very low-severity) Solidity Compiler Bugs.

SinCity Token (SIN) Token Tracker | BscScan (2024)
Top Articles
Latest Posts
Article information

Author: Dong Thiel

Last Updated:

Views: 6081

Rating: 4.9 / 5 (59 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Dong Thiel

Birthday: 2001-07-14

Address: 2865 Kasha Unions, West Corrinne, AK 05708-1071

Phone: +3512198379449

Job: Design Planner

Hobby: Graffiti, Foreign language learning, Gambling, Metalworking, Rowing, Sculling, Sewing

Introduction: My name is Dong Thiel, I am a brainy, happy, tasty, lively, splendid, talented, cooperative person who loves writing and wants to share my knowledge and understanding with you.