Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
DeFi
Overview
Max Total Supply
10,000,000,000 KCT
Holders
723 (0.00%)
Total Transfers
-
Market
Price
$0.00 @ 0.000000 ETH (-15.09%)
Onchain Market Cap
$3,849,700.00
Circulating Supply Market Cap
$2,760,011.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
KonnectKCTBasic
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-12-15 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.28; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 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 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 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 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 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 @openzeppelin/contracts/token/ERC20/extensions/[email protected] pragma solidity ^0.8.28; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.28; /* * @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/token/ERC20/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} 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}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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 ERC20 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 {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-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 {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-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 {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * 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, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @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 {IERC20-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 {IERC20-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, "ERC20: 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), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: 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), "ERC20: 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), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: 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), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @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/konnect-kct-basic.sol // contracts/Token.sol pragma solidity 0.8.28; contract KonnectKCTBasic is ERC20 { constructor( string memory name, string memory symbol, uint256 initialSupply ) ERC20(name, symbol) { _mint(msg.sender, initialSupply); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"stateMutability":"nonpayable","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":"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":[{"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":"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"}]
Contract Creation Code
608060405234801561000f575f5ffd5b50604051611ad6380380611ad683398181016040528101906100319190610344565b8282816003908161004291906105d3565b50806004908161005291906105d3565b505050610065338261006d60201b60201c565b5050506107a2565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036100db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100d2906106fc565b60405180910390fd5b6100ec5f83836101bf60201b60201c565b8060025f8282546100fd9190610747565b92505081905550805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461014f9190610747565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516101b39190610789565b60405180910390a35050565b505050565b5f604051905090565b5f5ffd5b5f5ffd5b5f5ffd5b5f5ffd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610223826101dd565b810181811067ffffffffffffffff82111715610242576102416101ed565b5b80604052505050565b5f6102546101c4565b9050610260828261021a565b919050565b5f67ffffffffffffffff82111561027f5761027e6101ed565b5b610288826101dd565b9050602081019050919050565b8281835e5f83830152505050565b5f6102b56102b084610265565b61024b565b9050828152602081018484840111156102d1576102d06101d9565b5b6102dc848285610295565b509392505050565b5f82601f8301126102f8576102f76101d5565b5b81516103088482602086016102a3565b91505092915050565b5f819050919050565b61032381610311565b811461032d575f5ffd5b50565b5f8151905061033e8161031a565b92915050565b5f5f5f6060848603121561035b5761035a6101cd565b5b5f84015167ffffffffffffffff811115610378576103776101d1565b5b610384868287016102e4565b935050602084015167ffffffffffffffff8111156103a5576103a46101d1565b5b6103b1868287016102e4565b92505060406103c286828701610330565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061041a57607f821691505b60208210810361042d5761042c6103d6565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261048f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610454565b6104998683610454565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6104d46104cf6104ca84610311565b6104b1565b610311565b9050919050565b5f819050919050565b6104ed836104ba565b6105016104f9826104db565b848454610460565b825550505050565b5f5f905090565b610518610509565b6105238184846104e4565b505050565b5b818110156105465761053b5f82610510565b600181019050610529565b5050565b601f82111561058b5761055c81610433565b61056584610445565b81016020851015610574578190505b61058861058085610445565b830182610528565b50505b505050565b5f82821c905092915050565b5f6105ab5f1984600802610590565b1980831691505092915050565b5f6105c3838361059c565b9150826002028217905092915050565b6105dc826103cc565b67ffffffffffffffff8111156105f5576105f46101ed565b5b6105ff8254610403565b61060a82828561054a565b5f60209050601f83116001811461063b575f8415610629578287015190505b61063385826105b8565b86555061069a565b601f19841661064986610433565b5f5b828110156106705784890151825560018201915060208501945060208101905061064b565b8683101561068d5784890151610689601f89168261059c565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6106e6601f836106a2565b91506106f1826106b2565b602082019050919050565b5f6020820190508181035f830152610713816106da565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61075182610311565b915061075c83610311565b92508282019050808211156107745761077361071a565b5b92915050565b61078381610311565b82525050565b5f60208201905061079c5f83018461077a565b92915050565b611327806107af5f395ff3fe608060405234801561000f575f5ffd5b50600436106100a7575f3560e01c8063395093511161006f578063395093511461016557806370a082311461019557806395d89b41146101c5578063a457c2d7146101e3578063a9059cbb14610213578063dd62ed3e14610243576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f5ffd5b6100b3610273565b6040516100c09190610be8565b60405180910390f35b6100e360048036038101906100de9190610c99565b610303565b6040516100f09190610cf1565b60405180910390f35b610101610320565b60405161010e9190610d19565b60405180910390f35b610131600480360381019061012c9190610d32565b610329565b60405161013e9190610cf1565b60405180910390f35b61014f610424565b60405161015c9190610d9d565b60405180910390f35b61017f600480360381019061017a9190610c99565b61042c565b60405161018c9190610cf1565b60405180910390f35b6101af60048036038101906101aa9190610db6565b6104d3565b6040516101bc9190610d19565b60405180910390f35b6101cd610518565b6040516101da9190610be8565b60405180910390f35b6101fd60048036038101906101f89190610c99565b6105a8565b60405161020a9190610cf1565b60405180910390f35b61022d60048036038101906102289190610c99565b610697565b60405161023a9190610cf1565b60405180910390f35b61025d60048036038101906102589190610de1565b6106b4565b60405161026a9190610d19565b60405180910390f35b60606003805461028290610e4c565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610e4c565b80156102f95780601f106102d0576101008083540402835291602001916102f9565b820191905f5260205f20905b8154815290600101906020018083116102dc57829003601f168201915b5050505050905090565b5f61031661030f610736565b848461073d565b6001905092915050565b5f600254905090565b5f610335848484610900565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61037c610736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156103fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f290610eec565b60405180910390fd5b61041885610407610736565b85846104139190610f37565b61073d565b60019150509392505050565b5f6012905090565b5f6104c9610438610736565b848460015f610445610736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546104c49190610f6a565b61073d565b6001905092915050565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461052790610e4c565b80601f016020809104026020016040519081016040528092919081815260200182805461055390610e4c565b801561059e5780601f106105755761010080835404028352916020019161059e565b820191905f5260205f20905b81548152906001019060200180831161058157829003601f168201915b5050505050905090565b5f5f60015f6105b5610736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561066f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106669061100d565b60405180910390fd5b61068c61067a610736565b8585846106879190610f37565b61073d565b600191505092915050565b5f6106aa6106a3610736565b8484610900565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a29061109b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081090611129565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108f39190610d19565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361096e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610965906111b7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d390611245565b60405180910390fd5b6109e7838383610b73565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a61906112d3565b60405180910390fd5b8181610a769190610f37565b5f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610b019190610f6a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b659190610d19565b60405180910390a350505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610bba82610b78565b610bc48185610b82565b9350610bd4818560208601610b92565b610bdd81610ba0565b840191505092915050565b5f6020820190508181035f830152610c008184610bb0565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c3582610c0c565b9050919050565b610c4581610c2b565b8114610c4f575f5ffd5b50565b5f81359050610c6081610c3c565b92915050565b5f819050919050565b610c7881610c66565b8114610c82575f5ffd5b50565b5f81359050610c9381610c6f565b92915050565b5f5f60408385031215610caf57610cae610c08565b5b5f610cbc85828601610c52565b9250506020610ccd85828601610c85565b9150509250929050565b5f8115159050919050565b610ceb81610cd7565b82525050565b5f602082019050610d045f830184610ce2565b92915050565b610d1381610c66565b82525050565b5f602082019050610d2c5f830184610d0a565b92915050565b5f5f5f60608486031215610d4957610d48610c08565b5b5f610d5686828701610c52565b9350506020610d6786828701610c52565b9250506040610d7886828701610c85565b9150509250925092565b5f60ff82169050919050565b610d9781610d82565b82525050565b5f602082019050610db05f830184610d8e565b92915050565b5f60208284031215610dcb57610dca610c08565b5b5f610dd884828501610c52565b91505092915050565b5f5f60408385031215610df757610df6610c08565b5b5f610e0485828601610c52565b9250506020610e1585828601610c52565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610e6357607f821691505b602082108103610e7657610e75610e1f565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f610ed6602883610b82565b9150610ee182610e7c565b604082019050919050565b5f6020820190508181035f830152610f0381610eca565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610f4182610c66565b9150610f4c83610c66565b9250828203905081811115610f6457610f63610f0a565b5b92915050565b5f610f7482610c66565b9150610f7f83610c66565b9250828201905080821115610f9757610f96610f0a565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f610ff7602583610b82565b915061100282610f9d565b604082019050919050565b5f6020820190508181035f83015261102481610feb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611085602483610b82565b91506110908261102b565b604082019050919050565b5f6020820190508181035f8301526110b281611079565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611113602283610b82565b915061111e826110b9565b604082019050919050565b5f6020820190508181035f83015261114081611107565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6111a1602583610b82565b91506111ac82611147565b604082019050919050565b5f6020820190508181035f8301526111ce81611195565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61122f602383610b82565b915061123a826111d5565b604082019050919050565b5f6020820190508181035f83015261125c81611223565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6112bd602683610b82565b91506112c882611263565b604082019050919050565b5f6020820190508181035f8301526112ea816112b1565b905091905056fea2646970667358221220601d46ec088b250538a352e1419296525781ba8b9d4890241cffdfcd5b35214764736f6c634300081c0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000204fce5e3e2502611000000000000000000000000000000000000000000000000000000000000000000000074b6f6e6e6563740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034b43540000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f5ffd5b50600436106100a7575f3560e01c8063395093511161006f578063395093511461016557806370a082311461019557806395d89b41146101c5578063a457c2d7146101e3578063a9059cbb14610213578063dd62ed3e14610243576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f5ffd5b6100b3610273565b6040516100c09190610be8565b60405180910390f35b6100e360048036038101906100de9190610c99565b610303565b6040516100f09190610cf1565b60405180910390f35b610101610320565b60405161010e9190610d19565b60405180910390f35b610131600480360381019061012c9190610d32565b610329565b60405161013e9190610cf1565b60405180910390f35b61014f610424565b60405161015c9190610d9d565b60405180910390f35b61017f600480360381019061017a9190610c99565b61042c565b60405161018c9190610cf1565b60405180910390f35b6101af60048036038101906101aa9190610db6565b6104d3565b6040516101bc9190610d19565b60405180910390f35b6101cd610518565b6040516101da9190610be8565b60405180910390f35b6101fd60048036038101906101f89190610c99565b6105a8565b60405161020a9190610cf1565b60405180910390f35b61022d60048036038101906102289190610c99565b610697565b60405161023a9190610cf1565b60405180910390f35b61025d60048036038101906102589190610de1565b6106b4565b60405161026a9190610d19565b60405180910390f35b60606003805461028290610e4c565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610e4c565b80156102f95780601f106102d0576101008083540402835291602001916102f9565b820191905f5260205f20905b8154815290600101906020018083116102dc57829003601f168201915b5050505050905090565b5f61031661030f610736565b848461073d565b6001905092915050565b5f600254905090565b5f610335848484610900565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61037c610736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156103fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f290610eec565b60405180910390fd5b61041885610407610736565b85846104139190610f37565b61073d565b60019150509392505050565b5f6012905090565b5f6104c9610438610736565b848460015f610445610736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546104c49190610f6a565b61073d565b6001905092915050565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461052790610e4c565b80601f016020809104026020016040519081016040528092919081815260200182805461055390610e4c565b801561059e5780601f106105755761010080835404028352916020019161059e565b820191905f5260205f20905b81548152906001019060200180831161058157829003601f168201915b5050505050905090565b5f5f60015f6105b5610736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561066f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106669061100d565b60405180910390fd5b61068c61067a610736565b8585846106879190610f37565b61073d565b600191505092915050565b5f6106aa6106a3610736565b8484610900565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a29061109b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081090611129565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108f39190610d19565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361096e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610965906111b7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d390611245565b60405180910390fd5b6109e7838383610b73565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a61906112d3565b60405180910390fd5b8181610a769190610f37565b5f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610b019190610f6a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b659190610d19565b60405180910390a350505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610bba82610b78565b610bc48185610b82565b9350610bd4818560208601610b92565b610bdd81610ba0565b840191505092915050565b5f6020820190508181035f830152610c008184610bb0565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c3582610c0c565b9050919050565b610c4581610c2b565b8114610c4f575f5ffd5b50565b5f81359050610c6081610c3c565b92915050565b5f819050919050565b610c7881610c66565b8114610c82575f5ffd5b50565b5f81359050610c9381610c6f565b92915050565b5f5f60408385031215610caf57610cae610c08565b5b5f610cbc85828601610c52565b9250506020610ccd85828601610c85565b9150509250929050565b5f8115159050919050565b610ceb81610cd7565b82525050565b5f602082019050610d045f830184610ce2565b92915050565b610d1381610c66565b82525050565b5f602082019050610d2c5f830184610d0a565b92915050565b5f5f5f60608486031215610d4957610d48610c08565b5b5f610d5686828701610c52565b9350506020610d6786828701610c52565b9250506040610d7886828701610c85565b9150509250925092565b5f60ff82169050919050565b610d9781610d82565b82525050565b5f602082019050610db05f830184610d8e565b92915050565b5f60208284031215610dcb57610dca610c08565b5b5f610dd884828501610c52565b91505092915050565b5f5f60408385031215610df757610df6610c08565b5b5f610e0485828601610c52565b9250506020610e1585828601610c52565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610e6357607f821691505b602082108103610e7657610e75610e1f565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f610ed6602883610b82565b9150610ee182610e7c565b604082019050919050565b5f6020820190508181035f830152610f0381610eca565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610f4182610c66565b9150610f4c83610c66565b9250828203905081811115610f6457610f63610f0a565b5b92915050565b5f610f7482610c66565b9150610f7f83610c66565b9250828201905080821115610f9757610f96610f0a565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f610ff7602583610b82565b915061100282610f9d565b604082019050919050565b5f6020820190508181035f83015261102481610feb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611085602483610b82565b91506110908261102b565b604082019050919050565b5f6020820190508181035f8301526110b281611079565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611113602283610b82565b915061111e826110b9565b604082019050919050565b5f6020820190508181035f83015261114081611107565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6111a1602583610b82565b91506111ac82611147565b604082019050919050565b5f6020820190508181035f8301526111ce81611195565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61122f602383610b82565b915061123a826111d5565b604082019050919050565b5f6020820190508181035f83015261125c81611223565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6112bd602683610b82565b91506112c882611263565b604082019050919050565b5f6020820190508181035f8301526112ea816112b1565b905091905056fea2646970667358221220601d46ec088b250538a352e1419296525781ba8b9d4890241cffdfcd5b35214764736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000204fce5e3e2502611000000000000000000000000000000000000000000000000000000000000000000000074b6f6e6e6563740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034b43540000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Konnect
Arg [1] : symbol (string): KCT
Arg [2] : initialSupply (uint256): 10000000000000000000000000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000204fce5e3e25026110000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 4b6f6e6e65637400000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4b43540000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
15345:238:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6480:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8647:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7600:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9298:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7442:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10129:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7771:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6699:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10847:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8111:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8349:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6480:100;6534:13;6567:5;6560:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6480:100;:::o;8647:169::-;8730:4;8747:39;8756:12;:10;:12::i;:::-;8770:7;8779:6;8747:8;:39::i;:::-;8804:4;8797:11;;8647:169;;;;:::o;7600:108::-;7661:7;7688:12;;7681:19;;7600:108;:::o;9298:422::-;9404:4;9421:36;9431:6;9439:9;9450:6;9421:9;:36::i;:::-;9470:24;9497:11;:19;9509:6;9497:19;;;;;;;;;;;;;;;:33;9517:12;:10;:12::i;:::-;9497:33;;;;;;;;;;;;;;;;9470:60;;9569:6;9549:16;:26;;9541:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9631:57;9640:6;9648:12;:10;:12::i;:::-;9681:6;9662:16;:25;;;;:::i;:::-;9631:8;:57::i;:::-;9708:4;9701:11;;;9298:422;;;;;:::o;7442:93::-;7500:5;7525:2;7518:9;;7442:93;:::o;10129:215::-;10217:4;10234:80;10243:12;:10;:12::i;:::-;10257:7;10303:10;10266:11;:25;10278:12;:10;:12::i;:::-;10266:25;;;;;;;;;;;;;;;:34;10292:7;10266:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10234:8;:80::i;:::-;10332:4;10325:11;;10129:215;;;;:::o;7771:127::-;7845:7;7872:9;:18;7882:7;7872:18;;;;;;;;;;;;;;;;7865:25;;7771:127;;;:::o;6699:104::-;6755:13;6788:7;6781:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6699:104;:::o;10847:377::-;10940:4;10957:24;10984:11;:25;10996:12;:10;:12::i;:::-;10984:25;;;;;;;;;;;;;;;:34;11010:7;10984:34;;;;;;;;;;;;;;;;10957:61;;11057:15;11037:16;:35;;11029:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11125:67;11134:12;:10;:12::i;:::-;11148:7;11176:15;11157:16;:34;;;;:::i;:::-;11125:8;:67::i;:::-;11212:4;11205:11;;;10847:377;;;;:::o;8111:175::-;8197:4;8214:42;8224:12;:10;:12::i;:::-;8238:9;8249:6;8214:9;:42::i;:::-;8274:4;8267:11;;8111:175;;;;:::o;8349:151::-;8438:7;8465:11;:18;8477:5;8465:18;;;;;;;;;;;;;;;:27;8484:7;8465:27;;;;;;;;;;;;;;;;8458:34;;8349:151;;;;:::o;4065:98::-;4118:7;4145:10;4138:17;;4065:98;:::o;14203:346::-;14322:1;14305:19;;:5;:19;;;14297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14403:1;14384:21;;:7;:21;;;14376:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14487:6;14457:11;:18;14469:5;14457:18;;;;;;;;;;;;;;;:27;14476:7;14457:27;;;;;;;;;;;;;;;:36;;;;14525:7;14509:32;;14518:5;14509:32;;;14534:6;14509:32;;;;;;:::i;:::-;;;;;;;;14203:346;;;:::o;11714:604::-;11838:1;11820:20;;:6;:20;;;11812:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11922:1;11901:23;;:9;:23;;;11893:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11977:47;11998:6;12006:9;12017:6;11977:20;:47::i;:::-;12037:21;12061:9;:17;12071:6;12061:17;;;;;;;;;;;;;;;;12037:41;;12114:6;12097:13;:23;;12089:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12210:6;12194:13;:22;;;;:::i;:::-;12174:9;:17;12184:6;12174:17;;;;;;;;;;;;;;;:42;;;;12251:6;12227:9;:20;12237:9;12227:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12292:9;12275:35;;12284:6;12275:35;;;12303:6;12275:35;;;;;;:::i;:::-;;;;;;;;11801:517;11714:604;;;:::o;15152:92::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:474::-;5149:6;5157;5206:2;5194:9;5185:7;5181:23;5177:32;5174:119;;;5212:79;;:::i;:::-;5174:119;5332:1;5357:53;5402:7;5393:6;5382:9;5378:22;5357:53;:::i;:::-;5347:63;;5303:117;5459:2;5485:53;5530:7;5521:6;5510:9;5506:22;5485:53;:::i;:::-;5475:63;;5430:118;5081:474;;;;;:::o;5561:180::-;5609:77;5606:1;5599:88;5706:4;5703:1;5696:15;5730:4;5727:1;5720:15;5747:320;5791:6;5828:1;5822:4;5818:12;5808:22;;5875:1;5869:4;5865:12;5896:18;5886:81;;5952:4;5944:6;5940:17;5930:27;;5886:81;6014:2;6006:6;6003:14;5983:18;5980:38;5977:84;;6033:18;;:::i;:::-;5977:84;5798:269;5747:320;;;:::o;6073:227::-;6213:34;6209:1;6201:6;6197:14;6190:58;6282:10;6277:2;6269:6;6265:15;6258:35;6073:227;:::o;6306:366::-;6448:3;6469:67;6533:2;6528:3;6469:67;:::i;:::-;6462:74;;6545:93;6634:3;6545:93;:::i;:::-;6663:2;6658:3;6654:12;6647:19;;6306:366;;;:::o;6678:419::-;6844:4;6882:2;6871:9;6867:18;6859:26;;6931:9;6925:4;6921:20;6917:1;6906:9;6902:17;6895:47;6959:131;7085:4;6959:131;:::i;:::-;6951:139;;6678:419;;;:::o;7103:180::-;7151:77;7148:1;7141:88;7248:4;7245:1;7238:15;7272:4;7269:1;7262:15;7289:194;7329:4;7349:20;7367:1;7349:20;:::i;:::-;7344:25;;7383:20;7401:1;7383:20;:::i;:::-;7378:25;;7427:1;7424;7420:9;7412:17;;7451:1;7445:4;7442:11;7439:37;;;7456:18;;:::i;:::-;7439:37;7289:194;;;;:::o;7489:191::-;7529:3;7548:20;7566:1;7548:20;:::i;:::-;7543:25;;7582:20;7600:1;7582:20;:::i;:::-;7577:25;;7625:1;7622;7618:9;7611:16;;7646:3;7643:1;7640:10;7637:36;;;7653:18;;:::i;:::-;7637:36;7489:191;;;;:::o;7686:224::-;7826:34;7822:1;7814:6;7810:14;7803:58;7895:7;7890:2;7882:6;7878:15;7871:32;7686:224;:::o;7916:366::-;8058:3;8079:67;8143:2;8138:3;8079:67;:::i;:::-;8072:74;;8155:93;8244:3;8155:93;:::i;:::-;8273:2;8268:3;8264:12;8257:19;;7916:366;;;:::o;8288:419::-;8454:4;8492:2;8481:9;8477:18;8469:26;;8541:9;8535:4;8531:20;8527:1;8516:9;8512:17;8505:47;8569:131;8695:4;8569:131;:::i;:::-;8561:139;;8288:419;;;:::o;8713:223::-;8853:34;8849:1;8841:6;8837:14;8830:58;8922:6;8917:2;8909:6;8905:15;8898:31;8713:223;:::o;8942:366::-;9084:3;9105:67;9169:2;9164:3;9105:67;:::i;:::-;9098:74;;9181:93;9270:3;9181:93;:::i;:::-;9299:2;9294:3;9290:12;9283:19;;8942:366;;;:::o;9314:419::-;9480:4;9518:2;9507:9;9503:18;9495:26;;9567:9;9561:4;9557:20;9553:1;9542:9;9538:17;9531:47;9595:131;9721:4;9595:131;:::i;:::-;9587:139;;9314:419;;;:::o;9739:221::-;9879:34;9875:1;9867:6;9863:14;9856:58;9948:4;9943:2;9935:6;9931:15;9924:29;9739:221;:::o;9966:366::-;10108:3;10129:67;10193:2;10188:3;10129:67;:::i;:::-;10122:74;;10205:93;10294:3;10205:93;:::i;:::-;10323:2;10318:3;10314:12;10307:19;;9966:366;;;:::o;10338:419::-;10504:4;10542:2;10531:9;10527:18;10519:26;;10591:9;10585:4;10581:20;10577:1;10566:9;10562:17;10555:47;10619:131;10745:4;10619:131;:::i;:::-;10611:139;;10338:419;;;:::o;10763:224::-;10903:34;10899:1;10891:6;10887:14;10880:58;10972:7;10967:2;10959:6;10955:15;10948:32;10763:224;:::o;10993:366::-;11135:3;11156:67;11220:2;11215:3;11156:67;:::i;:::-;11149:74;;11232:93;11321:3;11232:93;:::i;:::-;11350:2;11345:3;11341:12;11334:19;;10993:366;;;:::o;11365:419::-;11531:4;11569:2;11558:9;11554:18;11546:26;;11618:9;11612:4;11608:20;11604:1;11593:9;11589:17;11582:47;11646:131;11772:4;11646:131;:::i;:::-;11638:139;;11365:419;;;:::o;11790:222::-;11930:34;11926:1;11918:6;11914:14;11907:58;11999:5;11994:2;11986:6;11982:15;11975:30;11790:222;:::o;12018:366::-;12160:3;12181:67;12245:2;12240:3;12181:67;:::i;:::-;12174:74;;12257:93;12346:3;12257:93;:::i;:::-;12375:2;12370:3;12366:12;12359:19;;12018:366;;;:::o;12390:419::-;12556:4;12594:2;12583:9;12579:18;12571:26;;12643:9;12637:4;12633:20;12629:1;12618:9;12614:17;12607:47;12671:131;12797:4;12671:131;:::i;:::-;12663:139;;12390:419;;;:::o;12815:225::-;12955:34;12951:1;12943:6;12939:14;12932:58;13024:8;13019:2;13011:6;13007:15;13000:33;12815:225;:::o;13046:366::-;13188:3;13209:67;13273:2;13268:3;13209:67;:::i;:::-;13202:74;;13285:93;13374:3;13285:93;:::i;:::-;13403:2;13398:3;13394:12;13387:19;;13046:366;;;:::o;13418:419::-;13584:4;13622:2;13611:9;13607:18;13599:26;;13671:9;13665:4;13661:20;13657:1;13646:9;13642:17;13635:47;13699:131;13825:4;13699:131;:::i;:::-;13691:139;;13418:419;;;:::o
Swarm Source
ipfs://601d46ec088b250538a352e1419296525781ba8b9d4890241cffdfcd5b352147
Loading...
Loading
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.