ERC-20
Bridge
Overview
Max Total Supply
500,000,000 HOTCROSS
Holders
337 (0.00%)
Market
Price
$0.01 @ 0.000002 ETH (-3.52%)
Onchain Market Cap
$2,548,590.00
Circulating Supply Market Cap
$568,335.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
0 HOTCROSSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HotCrossToken
Compiler Version
v0.8.3+commit.8d00100c
Contract Source Code (Solidity)Audit Report
/** *Submitted for verification at Etherscan.io on 2021-05-14 */ // File: @openzeppelin/contracts/utils/Context.sol // SPDX-License-Identifier: MIT pragma 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.sol pragma 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: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.8.0; /** * @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/ERC20.sol 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 { 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 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_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 * overloaded; * * 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 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/token/HotCross.sol pragma solidity 0.8.3; contract HotCrossToken is Ownable, ERC20 { uint256 constant MILLION = 1_000_000 * 10**uint256(18); constructor() ERC20('Hot Cross Token', 'HOTCROSS') { _mint(msg.sender, 500 * MILLION); } /** * Allows the owner of the contract to release tokens that were erronously sent to this * ERC20 smart contract. This covers any mistakes from the end-user side * @param token the token that we want to withdraw * @param recipient the address that will receive the tokens * @param amount the amount of tokens */ function tokenRescue( IERC20 token, address recipient, uint256 amount ) onlyOwner external { token.transfer(recipient, amount); } }
Contract Security Audit
- Beosin - May 12th, 2021 - Security Audit Report
- SlowMist - May 10th, 2021 - Security Audit Report
[{"inputs":[],"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":"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":[{"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":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"tokenRescue","outputs":[],"stateMutability":"nonpayable","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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600f81526020016e2437ba1021b937b9b9902a37b5b2b760891b81525060405180604001604052806008815260200167484f5443524f535360c01b81525060006200006d6200012360201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000cc9060049060208501906200020f565b508051620000e29060059060208401906200020f565b5050506200011d336012600a620000fa91906200031d565b6200010990620f424062000412565b62000117906101f462000412565b62000127565b62000487565b3390565b6001600160a01b038216620001825760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620001969190620002b5565b90915550506001600160a01b03821660009081526001602052604081208054839290620001c5908490620002b5565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200021d9062000434565b90600052602060002090601f0160209004810192826200024157600085556200028c565b82601f106200025c57805160ff19168380011785556200028c565b828001600101855582156200028c579182015b828111156200028c5782518255916020019190600101906200026f565b506200029a9291506200029e565b5090565b5b808211156200029a57600081556001016200029f565b60008219821115620002cb57620002cb62000471565b500190565b80825b6001808611620002e4575062000314565b818704821115620002f957620002f962000471565b808616156200030757918102915b9490941c938002620002d3565b94509492505050565b60006200032e600019848462000335565b9392505050565b60008262000346575060016200032e565b8162000355575060006200032e565b81600181146200036e57600281146200037957620003ad565b60019150506200032e565b60ff8411156200038d576200038d62000471565b6001841b915084821115620003a657620003a662000471565b506200032e565b5060208310610133831016604e8410600b8410161715620003e5575081810a83811115620003df57620003df62000471565b6200032e565b620003f48484846001620002d0565b80860482111562000409576200040962000471565b02949350505050565b60008160001904831182151516156200042f576200042f62000471565b500290565b600181811c908216806200044957607f821691505b602082108114156200046b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610c0580620004976000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101eb578063a9059cbb146101fe578063dd62ed3e14610211578063f2fde38b1461024a576100f5565b8063715018a6146101ab5780638bf8bd0b146101b55780638da5cb5b146101c857806395d89b41146101e3576100f5565b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461016f57806370a0823114610182576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b61010261025d565b60405161010f9190610aaf565b60405180910390f35b61012b610126366004610a50565b6102ef565b604051901515815260200161010f565b6003545b60405190815260200161010f565b61012b61015b366004610a10565b610305565b6040516012815260200161010f565b61012b61017d366004610a50565b6103bb565b61013f6101903660046109b5565b6001600160a01b031660009081526001602052604090205490565b6101b36103f2565b005b6101b36101c3366004610a9b565b610466565b6000546040516001600160a01b03909116815260200161010f565b610102610518565b61012b6101f9366004610a50565b610527565b61012b61020c366004610a50565b6105c2565b61013f61021f3660046109d8565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101b36102583660046109b5565b6105cf565b60606004805461026c90610b66565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610b66565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b60006102fc3384846106b9565b50600192915050565b60006103128484846107dd565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561039c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103b085336103ab8685610b4f565b6106b9565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916102fc9185906103ab908690610b37565b6000546001600160a01b0316331461041c5760405162461bcd60e51b815260040161039390610b02565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146104905760405162461bcd60e51b815260040161039390610b02565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb90604401602060405180830381600087803b1580156104da57600080fd5b505af11580156104ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105129190610a7b565b50505050565b60606005805461026c90610b66565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105a95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610393565b6105b833856103ab8685610b4f565b5060019392505050565b60006102fc3384846107dd565b6000546001600160a01b031633146105f95760405162461bcd60e51b815260040161039390610b02565b6001600160a01b03811661065e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610393565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661071b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610393565b6001600160a01b03821661077c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610393565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108415760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610393565b6001600160a01b0382166108a35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610393565b6001600160a01b0383166000908152600160205260409020548181101561091b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610393565b6109258282610b4f565b6001600160a01b03808616600090815260016020526040808220939093559085168152908120805484929061095b908490610b37565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109a791815260200190565b60405180910390a350505050565b6000602082840312156109c6578081fd5b81356109d181610bb7565b9392505050565b600080604083850312156109ea578081fd5b82356109f581610bb7565b91506020830135610a0581610bb7565b809150509250929050565b600080600060608486031215610a24578081fd5b8335610a2f81610bb7565b92506020840135610a3f81610bb7565b929592945050506040919091013590565b60008060408385031215610a62578182fd5b8235610a6d81610bb7565b946020939093013593505050565b600060208284031215610a8c578081fd5b815180151581146109d1578182fd5b600080600060608486031215610a24578283fd5b6000602080835283518082850152825b81811015610adb57858101830151858201604001528201610abf565b81811115610aec5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610b4a57610b4a610ba1565b500190565b600082821015610b6157610b61610ba1565b500390565b600181811c90821680610b7a57607f821691505b60208210811415610b9b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610bcc57600080fd5b5056fea26469706673582212202c45b7b57ed9794f8bf0238f1d1a63fe6e6b57c60cdda9ab1be2d17237afb28c64736f6c63430008030033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101eb578063a9059cbb146101fe578063dd62ed3e14610211578063f2fde38b1461024a576100f5565b8063715018a6146101ab5780638bf8bd0b146101b55780638da5cb5b146101c857806395d89b41146101e3576100f5565b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461016f57806370a0823114610182576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b61010261025d565b60405161010f9190610aaf565b60405180910390f35b61012b610126366004610a50565b6102ef565b604051901515815260200161010f565b6003545b60405190815260200161010f565b61012b61015b366004610a10565b610305565b6040516012815260200161010f565b61012b61017d366004610a50565b6103bb565b61013f6101903660046109b5565b6001600160a01b031660009081526001602052604090205490565b6101b36103f2565b005b6101b36101c3366004610a9b565b610466565b6000546040516001600160a01b03909116815260200161010f565b610102610518565b61012b6101f9366004610a50565b610527565b61012b61020c366004610a50565b6105c2565b61013f61021f3660046109d8565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101b36102583660046109b5565b6105cf565b60606004805461026c90610b66565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610b66565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b60006102fc3384846106b9565b50600192915050565b60006103128484846107dd565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561039c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103b085336103ab8685610b4f565b6106b9565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916102fc9185906103ab908690610b37565b6000546001600160a01b0316331461041c5760405162461bcd60e51b815260040161039390610b02565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146104905760405162461bcd60e51b815260040161039390610b02565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb90604401602060405180830381600087803b1580156104da57600080fd5b505af11580156104ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105129190610a7b565b50505050565b60606005805461026c90610b66565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105a95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610393565b6105b833856103ab8685610b4f565b5060019392505050565b60006102fc3384846107dd565b6000546001600160a01b031633146105f95760405162461bcd60e51b815260040161039390610b02565b6001600160a01b03811661065e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610393565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661071b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610393565b6001600160a01b03821661077c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610393565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108415760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610393565b6001600160a01b0382166108a35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610393565b6001600160a01b0383166000908152600160205260409020548181101561091b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610393565b6109258282610b4f565b6001600160a01b03808616600090815260016020526040808220939093559085168152908120805484929061095b908490610b37565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109a791815260200190565b60405180910390a350505050565b6000602082840312156109c6578081fd5b81356109d181610bb7565b9392505050565b600080604083850312156109ea578081fd5b82356109f581610bb7565b91506020830135610a0581610bb7565b809150509250929050565b600080600060608486031215610a24578081fd5b8335610a2f81610bb7565b92506020840135610a3f81610bb7565b929592945050506040919091013590565b60008060408385031215610a62578182fd5b8235610a6d81610bb7565b946020939093013593505050565b600060208284031215610a8c578081fd5b815180151581146109d1578182fd5b600080600060608486031215610a24578283fd5b6000602080835283518082850152825b81811015610adb57858101830151858201604001528201610abf565b81811115610aec5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610b4a57610b4a610ba1565b500190565b600082821015610b6157610b61610ba1565b500390565b600181811c90821680610b7a57607f821691505b60208210811415610b9b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610bcc57600080fd5b5056fea26469706673582212202c45b7b57ed9794f8bf0238f1d1a63fe6e6b57c60cdda9ab1be2d17237afb28c64736f6c63430008030033
Deployed Bytecode Sourcemap
16971:711:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8154:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10294:169;;;;;;:::i;:::-;;:::i;:::-;;;2919:14:1;;2912:22;2894:41;;2882:2;2867:18;10294:169:0;2849:92:1;9247:108:0;9335:12;;9247:108;;;7308:25:1;;;7296:2;7281:18;9247:108:0;7263:76:1;10945:422:0;;;;;;:::i;:::-;;:::i;9098:84::-;;;9172:2;7486:36:1;;7474:2;7459:18;9098:84:0;7441:87:1;11776:215:0;;;;;;:::i;:::-;;:::i;9418:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9519:18:0;9492:7;9519:18;;;:9;:18;;;;;;;9418:127;2748:148;;;:::i;:::-;;17524:155;;;;;;:::i;:::-;;:::i;2097:87::-;2143:7;2170:6;2097:87;;-1:-1:-1;;;;;2170:6:0;;;2413:51:1;;2401:2;2386:18;2097:87:0;2368:102:1;8364:95:0;;;:::i;12494:377::-;;;;;;:::i;:::-;;:::i;9758:175::-;;;;;;:::i;:::-;;:::i;9996:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10112:18:0;;;10085:7;10112:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9996:151;3051:244;;;;;;:::i;:::-;;:::i;8154:91::-;8199:13;8232:5;8225:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8154:91;:::o;10294:169::-;10377:4;10394:39;735:10;10417:7;10426:6;10394:8;:39::i;:::-;-1:-1:-1;10451:4:0;10294:169;;;;:::o;10945:422::-;11051:4;11068:36;11078:6;11086:9;11097:6;11068:9;:36::i;:::-;-1:-1:-1;;;;;11144:19:0;;11117:24;11144:19;;;:11;:19;;;;;;;;735:10;11144:33;;;;;;;;11196:26;;;;11188:79;;;;-1:-1:-1;;;11188:79:0;;5377:2:1;11188:79:0;;;5359:21:1;5416:2;5396:18;;;5389:30;5455:34;5435:18;;;5428:62;-1:-1:-1;;;5506:18:1;;;5499:38;5554:19;;11188:79:0;;;;;;;;;11278:57;11287:6;735:10;11309:25;11328:6;11309:16;:25;:::i;:::-;11278:8;:57::i;:::-;-1:-1:-1;11355:4:0;;10945:422;-1:-1:-1;;;;10945:422:0:o;11776:215::-;735:10;11864:4;11913:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11913:34:0;;;;;;;;;;11864:4;;11881:80;;11904:7;;11913:47;;11950:10;;11913:47;:::i;2748:148::-;2143:7;2170:6;-1:-1:-1;;;;;2170:6:0;735:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;2855:1:::1;2839:6:::0;;2818:40:::1;::::0;-1:-1:-1;;;;;2839:6:0;;::::1;::::0;2818:40:::1;::::0;2855:1;;2818:40:::1;2886:1;2869:19:::0;;-1:-1:-1;;;;;;2869:19:0::1;::::0;;2748:148::o;17524:155::-;2143:7;2170:6;-1:-1:-1;;;;;2170:6:0;735:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;17640:33:::1;::::0;-1:-1:-1;;;17640:33:0;;-1:-1:-1;;;;;2667:32:1;;;17640:33:0::1;::::0;::::1;2649:51:1::0;2716:18;;;2709:34;;;17640:14:0;::::1;::::0;::::1;::::0;2622:18:1;;17640:33:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17524:155:::0;;;:::o;8364:95::-;8411:13;8444:7;8437:14;;;;;:::i;12494:377::-;735:10;12587:4;12631:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12631:34:0;;;;;;;;;;12684:35;;;;12676:85;;;;-1:-1:-1;;;12676:85:0;;6958:2:1;12676:85:0;;;6940:21:1;6997:2;6977:18;;;6970:30;7036:34;7016:18;;;7009:62;-1:-1:-1;;;7087:18:1;;;7080:35;7132:19;;12676:85:0;6930:227:1;12676:85:0;12772:67;735:10;12795:7;12804:34;12823:15;12804:16;:34;:::i;12772:67::-;-1:-1:-1;12859:4:0;;12494:377;-1:-1:-1;;;12494:377:0:o;9758:175::-;9844:4;9861:42;735:10;9885:9;9896:6;9861:9;:42::i;3051:244::-;2143:7;2170:6;-1:-1:-1;;;;;2170:6:0;735:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3140:22:0;::::1;3132:73;;;::::0;-1:-1:-1;;;3132:73:0;;4160:2:1;3132:73:0::1;::::0;::::1;4142:21:1::0;4199:2;4179:18;;;4172:30;4238:34;4218:18;;;4211:62;-1:-1:-1;;;4289:18:1;;;4282:36;4335:19;;3132:73:0::1;4132:228:1::0;3132:73:0::1;3242:6;::::0;;3221:38:::1;::::0;-1:-1:-1;;;;;3221:38:0;;::::1;::::0;3242:6;::::1;::::0;3221:38:::1;::::0;::::1;3270:6;:17:::0;;-1:-1:-1;;;;;;3270:17:0::1;-1:-1:-1::0;;;;;3270:17:0;;;::::1;::::0;;;::::1;::::0;;3051:244::o;15850:346::-;-1:-1:-1;;;;;15952:19:0;;15944:68;;;;-1:-1:-1;;;15944:68:0;;6553:2:1;15944:68:0;;;6535:21:1;6592:2;6572:18;;;6565:30;6631:34;6611:18;;;6604:62;-1:-1:-1;;;6682:18:1;;;6675:34;6726:19;;15944:68:0;6525:226:1;15944:68:0;-1:-1:-1;;;;;16031:21:0;;16023:68;;;;-1:-1:-1;;;16023:68:0;;4567:2:1;16023:68:0;;;4549:21:1;4606:2;4586:18;;;4579:30;4645:34;4625:18;;;4618:62;-1:-1:-1;;;4696:18:1;;;4689:32;4738:19;;16023:68:0;4539:224:1;16023:68:0;-1:-1:-1;;;;;16104:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16156:32;;7308:25:1;;;16156:32:0;;7281:18:1;16156:32:0;;;;;;;15850:346;;;:::o;13361:604::-;-1:-1:-1;;;;;13467:20:0;;13459:70;;;;-1:-1:-1;;;13459:70:0;;6147:2:1;13459:70:0;;;6129:21:1;6186:2;6166:18;;;6159:30;6225:34;6205:18;;;6198:62;-1:-1:-1;;;6276:18:1;;;6269:35;6321:19;;13459:70:0;6119:227:1;13459:70:0;-1:-1:-1;;;;;13548:23:0;;13540:71;;;;-1:-1:-1;;;13540:71:0;;3756:2:1;13540:71:0;;;3738:21:1;3795:2;3775:18;;;3768:30;3834:34;3814:18;;;3807:62;-1:-1:-1;;;3885:18:1;;;3878:33;3928:19;;13540:71:0;3728:225:1;13540:71:0;-1:-1:-1;;;;;13708:17:0;;13684:21;13708:17;;;:9;:17;;;;;;13744:23;;;;13736:74;;;;-1:-1:-1;;;13736:74:0;;4970:2:1;13736:74:0;;;4952:21:1;5009:2;4989:18;;;4982:30;5048:34;5028:18;;;5021:62;-1:-1:-1;;;5099:18:1;;;5092:36;5145:19;;13736:74:0;4942:228:1;13736:74:0;13841:22;13857:6;13841:13;:22;:::i;:::-;-1:-1:-1;;;;;13821:17:0;;;;;;;:9;:17;;;;;;:42;;;;13874:20;;;;;;;;:30;;13898:6;;13821:17;13874:30;;13898:6;;13874:30;:::i;:::-;;;;;;;;13939:9;-1:-1:-1;;;;;13922:35:0;13931:6;-1:-1:-1;;;;;13922:35:0;;13950:6;13922:35;;;;7308:25:1;;7296:2;7281:18;;7263:76;13922:35:0;;;;;;;;13361:604;;;;:::o;14:257:1:-;;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;:::-;260:5;84:187;-1:-1:-1;;;84:187:1:o;276:398::-;;;405:2;393:9;384:7;380:23;376:32;373:2;;;426:6;418;411:22;373:2;470:9;457:23;489:31;514:5;489:31;:::i;:::-;539:5;-1:-1:-1;596:2:1;581:18;;568:32;609:33;568:32;609:33;:::i;:::-;661:7;651:17;;;363:311;;;;;:::o;679:466::-;;;;825:2;813:9;804:7;800:23;796:32;793:2;;;846:6;838;831:22;793:2;890:9;877:23;909:31;934:5;909:31;:::i;:::-;959:5;-1:-1:-1;1016:2:1;1001:18;;988:32;1029:33;988:32;1029:33;:::i;:::-;783:362;;1081:7;;-1:-1:-1;;;1135:2:1;1120:18;;;;1107:32;;783:362::o;1150:325::-;;;1279:2;1267:9;1258:7;1254:23;1250:32;1247:2;;;1300:6;1292;1285:22;1247:2;1344:9;1331:23;1363:31;1388:5;1363:31;:::i;:::-;1413:5;1465:2;1450:18;;;;1437:32;;-1:-1:-1;;;1237:238:1:o;1480:297::-;;1600:2;1588:9;1579:7;1575:23;1571:32;1568:2;;;1621:6;1613;1606:22;1568:2;1658:9;1652:16;1711:5;1704:13;1697:21;1690:5;1687:32;1677:2;;1738:6;1730;1723:22;1782:480;;;;1942:2;1930:9;1921:7;1917:23;1913:32;1910:2;;;1963:6;1955;1948:22;2946:603;;3087:2;3116;3105:9;3098:21;3148:6;3142:13;3191:6;3186:2;3175:9;3171:18;3164:34;3216:4;3229:140;3243:6;3240:1;3237:13;3229:140;;;3338:14;;;3334:23;;3328:30;3304:17;;;3323:2;3300:26;3293:66;3258:10;;3229:140;;;3387:6;3384:1;3381:13;3378:2;;;3457:4;3452:2;3443:6;3432:9;3428:22;3424:31;3417:45;3378:2;-1:-1:-1;3533:2:1;3512:15;-1:-1:-1;;3508:29:1;3493:45;;;;3540:2;3489:54;;3067:482;-1:-1:-1;;;3067:482:1:o;5584:356::-;5786:2;5768:21;;;5805:18;;;5798:30;5864:34;5859:2;5844:18;;5837:62;5931:2;5916:18;;5758:182::o;7533:128::-;;7604:1;7600:6;7597:1;7594:13;7591:2;;;7610:18;;:::i;:::-;-1:-1:-1;7646:9:1;;7581:80::o;7666:125::-;;7734:1;7731;7728:8;7725:2;;;7739:18;;:::i;:::-;-1:-1:-1;7776:9:1;;7715:76::o;7796:380::-;7875:1;7871:12;;;;7918;;;7939:2;;7993:4;7985:6;7981:17;7971:27;;7939:2;8046;8038:6;8035:14;8015:18;8012:38;8009:2;;;8092:10;8087:3;8083:20;8080:1;8073:31;8127:4;8124:1;8117:15;8155:4;8152:1;8145:15;8009:2;;7851:325;;;:::o;8181:127::-;8242:10;8237:3;8233:20;8230:1;8223:31;8273:4;8270:1;8263:15;8297:4;8294:1;8287:15;8313:131;-1:-1:-1;;;;;8388:31:1;;8378:42;;8368:2;;8434:1;8431;8424:12;8368:2;8358:86;:::o
Swarm Source
ipfs://2c45b7b57ed9794f8bf0238f1d1a63fe6e6b57c60cdda9ab1be2d17237afb28c
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.