ERC-20
DeFi
Overview
Max Total Supply
420,000,000 VICI
Holders
113 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
138,765.403246169 VICIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Cryptor
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-14 */ 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); } /** * @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 Contracts guidelines: functions revert * instead 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}. */ /** * @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); } /** * @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) { return msg.data; } } 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 default 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"); unchecked { _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"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This 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"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(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: * * - `account` 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); _afterTokenTransfer(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"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(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 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } /** * @dev Extension of {ERC20} that adds a cap to the supply of tokens. */ abstract contract ERC20Capped is ERC20 { uint256 private immutable _cap; /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor(uint256 cap_) { require(cap_ > 0, "ERC20Capped: cap is 0"); _cap = cap_; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } /** * @dev See {ERC20-_mint}. */ function _mint(address account, uint256 amount) internal virtual override { require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded"); super._mint(account, amount); } } /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } } /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } } /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); } /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } } /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {_grantRole} to track enumerable memberships */ function _grantRole(bytes32 role, address account) internal virtual override { super._grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {_revokeRole} to track enumerable memberships */ function _revokeRole(bytes32 role, address account) internal virtual override { super._revokeRole(role, account); _roleMembers[role].remove(account); } } contract Cryptor is AccessControlEnumerable, ERC20Capped, ERC20Pausable, ERC20Burnable { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); constructor(uint256 cappedSupply, address admin) ERC20("Cryptor", "VICI") ERC20Capped(cappedSupply) { _setupRole(DEFAULT_ADMIN_ROLE, admin); _setupRole(MINTER_ROLE, admin); _setupRole(PAUSER_ROLE, admin); _setupRole(MINTER_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); } function decimals() public view virtual override returns (uint8) { return 9; } function pause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20MinterPauser: must have pauser role to pause"); _pause(); } function unpause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20MinterPauser: must have pauser role to unpause"); _unpause(); } function mint(address to, uint256 amount) public virtual { require(hasRole(MINTER_ROLE, _msgSender()), "ERC20MinterPauser: must have minter role to mint"); _mint(to, amount); } function _mint(address to, uint256 amount) internal virtual override(ERC20, ERC20Capped) { super._mint(to, amount); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Pausable) { super._beforeTokenTransfer(from, to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"cappedSupply","type":"uint256"},{"internalType":"address","name":"admin","type":"address"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b5060405162001ecf38038062001ecf833981016040819052620000349162000387565b604080518082018252600781526621b93cb83a37b960c91b6020808301918252835180850190945260048452635649434960e01b908401528151859391620000809160059190620002e1565b50805162000096906006906020840190620002e1565b50505060008111620000ee5760405162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015260640160405180910390fd5b6080526007805460ff19169055620001086000826200017c565b6200012360008051602062001eaf833981519152826200017c565b6200013e60008051602062001e8f833981519152826200017c565b6200015960008051602062001eaf833981519152336200017c565b6200017460008051602062001e8f833981519152336200017c565b505062000401565b6200018882826200018c565b5050565b620001a38282620001cf60201b62000a761760201c565b6000828152600160209081526040909120620001ca91839062000afa6200026f821b17901c565b505050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1662000188576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556200022b3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600062000286836001600160a01b0384166200028f565b90505b92915050565b6000818152600183016020526040812054620002d85750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000289565b50600062000289565b828054620002ef90620003c4565b90600052602060002090601f0160209004810192826200031357600085556200035e565b82601f106200032e57805160ff19168380011785556200035e565b828001600101855582156200035e579182015b828111156200035e57825182559160200191906001019062000341565b506200036c92915062000370565b5090565b5b808211156200036c576000815560010162000371565b600080604083850312156200039a578182fd5b825160208401519092506001600160a01b0381168114620003b9578182fd5b809150509250929050565b600181811c90821680620003d957607f821691505b60208210811415620003fb57634e487b7160e01b600052602260045260246000fd5b50919050565b608051611a6b6200042460003960008181610292015261142b0152611a6b6000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80635c975abb11610104578063a217fddf116100a2578063d539139311610071578063d5391393146103e0578063d547741f14610407578063dd62ed3e1461041a578063e63ab1e91461045357600080fd5b8063a217fddf1461039f578063a457c2d7146103a7578063a9059cbb146103ba578063ca15c873146103cd57600080fd5b80638456cb59116100de5780638456cb59146103515780639010d07c1461035957806391d148541461038457806395d89b411461039757600080fd5b80635c975abb1461030a57806370a082311461031557806379cc67901461033e57600080fd5b8063313ce56711610171578063395093511161014b57806339509351146102c95780633f4ba83a146102dc57806340c10f19146102e457806342966c68146102f757600080fd5b8063313ce56714610281578063355274ea1461029057806336568abe146102b657600080fd5b806318160ddd116101ad57806318160ddd1461022457806323b872dd14610236578063248a9ca3146102495780632f2ff15d1461026c57600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063095ea7b314610211575b600080fd5b6101e76101e2366004611883565b61047a565b60405190151581526020015b60405180910390f35b6102046104a5565b6040516101f39190611920565b6101e761021f3660046117ff565b610537565b6004545b6040519081526020016101f3565b6101e76102443660046117c4565b61054d565b610228610257366004611828565b60009081526020819052604090206001015490565b61027f61027a366004611840565b6105fc565b005b604051600981526020016101f3565b7f0000000000000000000000000000000000000000000000000000000000000000610228565b61027f6102c4366004611840565b610627565b6101e76102d73660046117ff565b6106a5565b61027f6106e1565b61027f6102f23660046117ff565b61077d565b61027f610305366004611828565b610816565b60075460ff166101e7565b610228610323366004611778565b6001600160a01b031660009081526002602052604090205490565b61027f61034c3660046117ff565b610823565b61027f6108a4565b61036c610367366004611862565b61093c565b6040516001600160a01b0390911681526020016101f3565b6101e7610392366004611840565b61095b565b610204610984565b610228600081565b6101e76103b53660046117ff565b610993565b6101e76103c83660046117ff565b610a2c565b6102286103db366004611828565b610a39565b6102287f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61027f610415366004611840565b610a50565b610228610428366004611792565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6102287f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60006001600160e01b03198216635a05180f60e01b148061049f575061049f82610b0f565b92915050565b6060600580546104b4906119e4565b80601f01602080910402602001604051908101604052809291908181526020018280546104e0906119e4565b801561052d5780601f106105025761010080835404028352916020019161052d565b820191906000526020600020905b81548152906001019060200180831161051057829003601f168201915b5050505050905090565b6000610544338484610b44565b50600192915050565b600061055a848484610c68565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156105e45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105f18533858403610b44565b506001949350505050565b6000828152602081905260409020600101546106188133610e43565b6106228383610ea7565b505050565b6001600160a01b03811633146106975760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016105db565b6106a18282610ec9565b5050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916105449185906106dc908690611953565b610b44565b61070b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a3361095b565b6107735760405162461bcd60e51b815260206004820152603360248201527f45524332304d696e7465725061757365723a206d75737420686176652070617560448201527273657220726f6c6520746f20756e706175736560681b60648201526084016105db565b61077b610eeb565b565b6107a77f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63361095b565b61080c5760405162461bcd60e51b815260206004820152603060248201527f45524332304d696e7465725061757365723a206d7573742068617665206d696e60448201526f1d195c881c9bdb19481d1bc81b5a5b9d60821b60648201526084016105db565b6106a18282610f7e565b6108203382610f88565b50565b600061082f8333610428565b90508181101561088d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016105db565b61089a8333848403610b44565b6106228383610f88565b6108ce7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a3361095b565b6109345760405162461bcd60e51b815260206004820152603160248201527f45524332304d696e7465725061757365723a206d75737420686176652070617560448201527073657220726f6c6520746f20706175736560781b60648201526084016105db565b61077b6110e2565b6000828152600160205260408120610954908361115d565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600680546104b4906119e4565b3360009081526003602090815260408083206001600160a01b038616845290915281205482811015610a155760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105db565b610a223385858403610b44565b5060019392505050565b6000610544338484610c68565b600081815260016020526040812061049f90611169565b600082815260208190526040902060010154610a6c8133610e43565b6106228383610ec9565b610a80828261095b565b6106a1576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055610ab63390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610954836001600160a01b038416611173565b60006001600160e01b03198216637965db0b60e01b148061049f57506301ffc9a760e01b6001600160e01b031983161461049f565b6001600160a01b038316610ba65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105db565b6001600160a01b038216610c075760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105db565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ccc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105db565b6001600160a01b038216610d2e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105db565b610d398383836111c2565b6001600160a01b03831660009081526002602052604090205481811015610db15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105db565b6001600160a01b03808516600090815260026020526040808220858503905591851681529081208054849290610de8908490611953565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e3491815260200190565b60405180910390a35b50505050565b610e4d828261095b565b6106a157610e65816001600160a01b031660146111cd565b610e708360206111cd565b604051602001610e819291906118ab565b60408051601f198184030181529082905262461bcd60e51b82526105db91600401611920565b610eb18282610a76565b60008281526001602052604090206106229082610afa565b610ed382826113af565b60008281526001602052604090206106229082611414565b60075460ff16610f345760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105db565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6106a18282611429565b6001600160a01b038216610fe85760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105db565b610ff4826000836111c2565b6001600160a01b038216600090815260026020526040902054818110156110685760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105db565b6001600160a01b038316600090815260026020526040812083830390556004805484929061109790849061198a565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60075460ff16156111285760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105db565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f613390565b600061095483836114b6565b600061049f825490565b60008181526001830160205260408120546111ba5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561049f565b50600061049f565b6106228383836114ee565b606060006111dc83600261196b565b6111e7906002611953565b67ffffffffffffffff81111561120d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611237576020820181803683370190505b509050600360fc1b8160008151811061126057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061129d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060006112c184600261196b565b6112cc906001611953565b90505b6001811115611360576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061130e57634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061133257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611359816119cd565b90506112cf565b5083156109545760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105db565b6113b9828261095b565b156106a1576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000610954836001600160a01b038416611554565b7f00000000000000000000000000000000000000000000000000000000000000008161145460045490565b61145e9190611953565b11156114ac5760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a206361702065786365656465640000000000000060448201526064016105db565b6106a18282611671565b60008260000182815481106114db57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b60075460ff16156106225760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b60648201526084016105db565b6000818152600183016020526040812054801561166757600061157860018361198a565b855490915060009061158c9060019061198a565b905081811461160d5760008660000182815481106115ba57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106115eb57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061162c57634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061049f565b600091505061049f565b6001600160a01b0382166116c75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105db565b6116d3600083836111c2565b80600460008282546116e59190611953565b90915550506001600160a01b03821660009081526002602052604081208054839290611712908490611953565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80356001600160a01b038116811461177357600080fd5b919050565b600060208284031215611789578081fd5b6109548261175c565b600080604083850312156117a4578081fd5b6117ad8361175c565b91506117bb6020840161175c565b90509250929050565b6000806000606084860312156117d8578081fd5b6117e18461175c565b92506117ef6020850161175c565b9150604084013590509250925092565b60008060408385031215611811578182fd5b61181a8361175c565b946020939093013593505050565b600060208284031215611839578081fd5b5035919050565b60008060408385031215611852578182fd5b823591506117bb6020840161175c565b60008060408385031215611874578182fd5b50508035926020909101359150565b600060208284031215611894578081fd5b81356001600160e01b031981168114610954578182fd5b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516118e38160178501602088016119a1565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516119148160288401602088016119a1565b01602801949350505050565b602081526000825180602084015261193f8160408501602087016119a1565b601f01601f19169190910160400192915050565b6000821982111561196657611966611a1f565b500190565b600081600019048311821515161561198557611985611a1f565b500290565b60008282101561199c5761199c611a1f565b500390565b60005b838110156119bc5781810151838201526020016119a4565b83811115610e3d5750506000910152565b6000816119dc576119dc611a1f565b506000190190565b600181811c908216806119f857607f821691505b60208210811415611a1957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212205ca09d849eb18ef1ca2e916e8aca382118c6cdd3891a2a4a08c1cf2e0d1b490864736f6c6343000804003365d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a600000000000000000000000000000000000000000000000005d423c655aa0000000000000000000000000000d377cf2bc2feed9ab2da4d495856fd0957ffc108
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80635c975abb11610104578063a217fddf116100a2578063d539139311610071578063d5391393146103e0578063d547741f14610407578063dd62ed3e1461041a578063e63ab1e91461045357600080fd5b8063a217fddf1461039f578063a457c2d7146103a7578063a9059cbb146103ba578063ca15c873146103cd57600080fd5b80638456cb59116100de5780638456cb59146103515780639010d07c1461035957806391d148541461038457806395d89b411461039757600080fd5b80635c975abb1461030a57806370a082311461031557806379cc67901461033e57600080fd5b8063313ce56711610171578063395093511161014b57806339509351146102c95780633f4ba83a146102dc57806340c10f19146102e457806342966c68146102f757600080fd5b8063313ce56714610281578063355274ea1461029057806336568abe146102b657600080fd5b806318160ddd116101ad57806318160ddd1461022457806323b872dd14610236578063248a9ca3146102495780632f2ff15d1461026c57600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063095ea7b314610211575b600080fd5b6101e76101e2366004611883565b61047a565b60405190151581526020015b60405180910390f35b6102046104a5565b6040516101f39190611920565b6101e761021f3660046117ff565b610537565b6004545b6040519081526020016101f3565b6101e76102443660046117c4565b61054d565b610228610257366004611828565b60009081526020819052604090206001015490565b61027f61027a366004611840565b6105fc565b005b604051600981526020016101f3565b7f00000000000000000000000000000000000000000000000005d423c655aa0000610228565b61027f6102c4366004611840565b610627565b6101e76102d73660046117ff565b6106a5565b61027f6106e1565b61027f6102f23660046117ff565b61077d565b61027f610305366004611828565b610816565b60075460ff166101e7565b610228610323366004611778565b6001600160a01b031660009081526002602052604090205490565b61027f61034c3660046117ff565b610823565b61027f6108a4565b61036c610367366004611862565b61093c565b6040516001600160a01b0390911681526020016101f3565b6101e7610392366004611840565b61095b565b610204610984565b610228600081565b6101e76103b53660046117ff565b610993565b6101e76103c83660046117ff565b610a2c565b6102286103db366004611828565b610a39565b6102287f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61027f610415366004611840565b610a50565b610228610428366004611792565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6102287f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60006001600160e01b03198216635a05180f60e01b148061049f575061049f82610b0f565b92915050565b6060600580546104b4906119e4565b80601f01602080910402602001604051908101604052809291908181526020018280546104e0906119e4565b801561052d5780601f106105025761010080835404028352916020019161052d565b820191906000526020600020905b81548152906001019060200180831161051057829003601f168201915b5050505050905090565b6000610544338484610b44565b50600192915050565b600061055a848484610c68565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156105e45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105f18533858403610b44565b506001949350505050565b6000828152602081905260409020600101546106188133610e43565b6106228383610ea7565b505050565b6001600160a01b03811633146106975760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016105db565b6106a18282610ec9565b5050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916105449185906106dc908690611953565b610b44565b61070b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a3361095b565b6107735760405162461bcd60e51b815260206004820152603360248201527f45524332304d696e7465725061757365723a206d75737420686176652070617560448201527273657220726f6c6520746f20756e706175736560681b60648201526084016105db565b61077b610eeb565b565b6107a77f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63361095b565b61080c5760405162461bcd60e51b815260206004820152603060248201527f45524332304d696e7465725061757365723a206d7573742068617665206d696e60448201526f1d195c881c9bdb19481d1bc81b5a5b9d60821b60648201526084016105db565b6106a18282610f7e565b6108203382610f88565b50565b600061082f8333610428565b90508181101561088d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016105db565b61089a8333848403610b44565b6106228383610f88565b6108ce7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a3361095b565b6109345760405162461bcd60e51b815260206004820152603160248201527f45524332304d696e7465725061757365723a206d75737420686176652070617560448201527073657220726f6c6520746f20706175736560781b60648201526084016105db565b61077b6110e2565b6000828152600160205260408120610954908361115d565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600680546104b4906119e4565b3360009081526003602090815260408083206001600160a01b038616845290915281205482811015610a155760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105db565b610a223385858403610b44565b5060019392505050565b6000610544338484610c68565b600081815260016020526040812061049f90611169565b600082815260208190526040902060010154610a6c8133610e43565b6106228383610ec9565b610a80828261095b565b6106a1576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055610ab63390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610954836001600160a01b038416611173565b60006001600160e01b03198216637965db0b60e01b148061049f57506301ffc9a760e01b6001600160e01b031983161461049f565b6001600160a01b038316610ba65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105db565b6001600160a01b038216610c075760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105db565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ccc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105db565b6001600160a01b038216610d2e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105db565b610d398383836111c2565b6001600160a01b03831660009081526002602052604090205481811015610db15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105db565b6001600160a01b03808516600090815260026020526040808220858503905591851681529081208054849290610de8908490611953565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e3491815260200190565b60405180910390a35b50505050565b610e4d828261095b565b6106a157610e65816001600160a01b031660146111cd565b610e708360206111cd565b604051602001610e819291906118ab565b60408051601f198184030181529082905262461bcd60e51b82526105db91600401611920565b610eb18282610a76565b60008281526001602052604090206106229082610afa565b610ed382826113af565b60008281526001602052604090206106229082611414565b60075460ff16610f345760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105db565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6106a18282611429565b6001600160a01b038216610fe85760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105db565b610ff4826000836111c2565b6001600160a01b038216600090815260026020526040902054818110156110685760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105db565b6001600160a01b038316600090815260026020526040812083830390556004805484929061109790849061198a565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60075460ff16156111285760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105db565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f613390565b600061095483836114b6565b600061049f825490565b60008181526001830160205260408120546111ba5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561049f565b50600061049f565b6106228383836114ee565b606060006111dc83600261196b565b6111e7906002611953565b67ffffffffffffffff81111561120d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611237576020820181803683370190505b509050600360fc1b8160008151811061126057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061129d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060006112c184600261196b565b6112cc906001611953565b90505b6001811115611360576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061130e57634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061133257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611359816119cd565b90506112cf565b5083156109545760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105db565b6113b9828261095b565b156106a1576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000610954836001600160a01b038416611554565b7f00000000000000000000000000000000000000000000000005d423c655aa00008161145460045490565b61145e9190611953565b11156114ac5760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a206361702065786365656465640000000000000060448201526064016105db565b6106a18282611671565b60008260000182815481106114db57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b60075460ff16156106225760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b60648201526084016105db565b6000818152600183016020526040812054801561166757600061157860018361198a565b855490915060009061158c9060019061198a565b905081811461160d5760008660000182815481106115ba57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106115eb57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061162c57634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061049f565b600091505061049f565b6001600160a01b0382166116c75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105db565b6116d3600083836111c2565b80600460008282546116e59190611953565b90915550506001600160a01b03821660009081526002602052604081208054839290611712908490611953565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80356001600160a01b038116811461177357600080fd5b919050565b600060208284031215611789578081fd5b6109548261175c565b600080604083850312156117a4578081fd5b6117ad8361175c565b91506117bb6020840161175c565b90509250929050565b6000806000606084860312156117d8578081fd5b6117e18461175c565b92506117ef6020850161175c565b9150604084013590509250925092565b60008060408385031215611811578182fd5b61181a8361175c565b946020939093013593505050565b600060208284031215611839578081fd5b5035919050565b60008060408385031215611852578182fd5b823591506117bb6020840161175c565b60008060408385031215611874578182fd5b50508035926020909101359150565b600060208284031215611894578081fd5b81356001600160e01b031981168114610954578182fd5b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516118e38160178501602088016119a1565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516119148160288401602088016119a1565b01602801949350505050565b602081526000825180602084015261193f8160408501602087016119a1565b601f01601f19169190910160400192915050565b6000821982111561196657611966611a1f565b500190565b600081600019048311821515161561198557611985611a1f565b500290565b60008282101561199c5761199c611a1f565b500390565b60005b838110156119bc5781810151838201526020016119a4565b83811115610e3d5750506000910152565b6000816119dc576119dc611a1f565b506000190190565b600181811c908216806119f857607f821691505b60208210811415611a1957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212205ca09d849eb18ef1ca2e916e8aca382118c6cdd3891a2a4a08c1cf2e0d1b490864736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000005d423c655aa0000000000000000000000000000d377cf2bc2feed9ab2da4d495856fd0957ffc108
-----Decoded View---------------
Arg [0] : cappedSupply (uint256): 420000000000000000
Arg [1] : admin (address): 0xD377CF2BC2Feed9ab2da4D495856Fd0957FFc108
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000005d423c655aa0000
Arg [1] : 000000000000000000000000d377cf2bc2feed9ab2da4d495856fd0957ffc108
Deployed Bytecode Sourcemap
50512:1561:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48709:214;;;;;;:::i;:::-;;:::i;:::-;;;3677:14:1;;3670:22;3652:41;;3640:2;3625:18;48709:214:0;;;;;;;;6054:100;;;:::i;:::-;;;;;;;:::i;8221:169::-;;;;;;:::i;:::-;;:::i;7174:108::-;7262:12;;7174:108;;;3850:25:1;;;3838:2;3823:18;7174:108:0;3805:76:1;8872:492:0;;;;;;:::i;:::-;;:::i;32364:123::-;;;;;;:::i;:::-;32430:7;32457:12;;;;;;;;;;:22;;;;32364:123;32749:147;;;;;;:::i;:::-;;:::i;:::-;;51088:92;;;51171:1;12499:36:1;;12487:2;12472:18;51088:92:0;12454:87:1;16512:83:0;16583:4;16512:83;;33797:218;;;;;;:::i;:::-;;:::i;9773:215::-;;;;;;:::i;:::-;;:::i;51362:172::-;;;:::i;51540:199::-;;;;;;:::i;:::-;;:::i;20175:91::-;;;;;;:::i;:::-;;:::i;17850:86::-;17921:7;;;;17850:86;;7345:127;;;;;;:::i;:::-;-1:-1:-1;;;;;7446:18:0;7419:7;7446:18;;;:9;:18;;;;;;;7345:127;20585:368;;;;;;:::i;:::-;;:::i;51188:166::-;;;:::i;49522:145::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3468:32:1;;;3450:51;;3438:2;3423:18;49522:145:0;3405:102:1;31249:139:0;;;;;;:::i;:::-;;:::i;6273:104::-;;;:::i;30340:49::-;;30385:4;30340:49;;10491:413;;;;;;:::i;:::-;;:::i;7685:175::-;;;;;;:::i;:::-;;:::i;49841:134::-;;;;;;:::i;:::-;;:::i;50606:62::-;;50644:24;50606:62;;33141:149;;;;;;:::i;:::-;;:::i;7923:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8039:18:0;;;8012:7;8039:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7923:151;50675:62;;50713:24;50675:62;;48709:214;48794:4;-1:-1:-1;;;;;;48818:57:0;;-1:-1:-1;;;48818:57:0;;:97;;;48879:36;48903:11;48879:23;:36::i;:::-;48811:104;48709:214;-1:-1:-1;;48709:214:0:o;6054:100::-;6108:13;6141:5;6134:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6054:100;:::o;8221:169::-;8304:4;8321:39;5140:10;8344:7;8353:6;8321:8;:39::i;:::-;-1:-1:-1;8378:4:0;8221:169;;;;:::o;8872:492::-;9012:4;9029:36;9039:6;9047:9;9058:6;9029:9;:36::i;:::-;-1:-1:-1;;;;;9105:19:0;;9078:24;9105:19;;;:11;:19;;;;;;;;5140:10;9105:33;;;;;;;;9157:26;;;;9149:79;;;;-1:-1:-1;;;9149:79:0;;7985:2:1;9149:79:0;;;7967:21:1;8024:2;8004:18;;;7997:30;8063:34;8043:18;;;8036:62;-1:-1:-1;;;8114:18:1;;;8107:38;8162:19;;9149:79:0;;;;;;;;;9264:57;9273:6;5140:10;9314:6;9295:16;:25;9264:8;:57::i;:::-;-1:-1:-1;9352:4:0;;8872:492;-1:-1:-1;;;;8872:492:0:o;32749:147::-;32430:7;32457:12;;;;;;;;;;:22;;;30831:30;30842:4;5140:10;30831;:30::i;:::-;32863:25:::1;32874:4;32880:7;32863:10;:25::i;:::-;32749:147:::0;;;:::o;33797:218::-;-1:-1:-1;;;;;33893:23:0;;5140:10;33893:23;33885:83;;;;-1:-1:-1;;;33885:83:0;;11190:2:1;33885:83:0;;;11172:21:1;11229:2;11209:18;;;11202:30;11268:34;11248:18;;;11241:62;-1:-1:-1;;;11319:18:1;;;11312:45;11374:19;;33885:83:0;11162:237:1;33885:83:0;33981:26;33993:4;33999:7;33981:11;:26::i;:::-;33797:218;;:::o;9773:215::-;5140:10;9861:4;9910:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9910:34:0;;;;;;;;;;9861:4;;9878:80;;9901:7;;9910:47;;9947:10;;9910:47;:::i;:::-;9878:8;:80::i;51362:172::-;51415:34;50713:24;5140:10;31249:139;:::i;51415:34::-;51407:98;;;;-1:-1:-1;;;51407:98:0;;7148:2:1;51407:98:0;;;7130:21:1;7187:2;7167:18;;;7160:30;7226:34;7206:18;;;7199:62;-1:-1:-1;;;7277:18:1;;;7270:49;7336:19;;51407:98:0;7120:241:1;51407:98:0;51516:10;:8;:10::i;:::-;51362:172::o;51540:199::-;51616:34;50644:24;5140:10;31249:139;:::i;51616:34::-;51608:95;;;;-1:-1:-1;;;51608:95:0;;7568:2:1;51608:95:0;;;7550:21:1;7607:2;7587:18;;;7580:30;7646:34;7626:18;;;7619:62;-1:-1:-1;;;7697:18:1;;;7690:46;7753:19;;51608:95:0;7540:238:1;51608:95:0;51714:17;51720:2;51724:6;51714:5;:17::i;20175:91::-;20231:27;5140:10;20251:6;20231:5;:27::i;:::-;20175:91;:::o;20585:368::-;20662:24;20689:32;20699:7;5140:10;7923:151;:::i;20689:32::-;20662:59;;20760:6;20740:16;:26;;20732:75;;;;-1:-1:-1;;;20732:75:0;;8812:2:1;20732:75:0;;;8794:21:1;8851:2;8831:18;;;8824:30;8890:34;8870:18;;;8863:62;-1:-1:-1;;;8941:18:1;;;8934:34;8985:19;;20732:75:0;8784:226:1;20732:75:0;20843:58;20852:7;5140:10;20894:6;20875:16;:25;20843:8;:58::i;:::-;20923:22;20929:7;20938:6;20923:5;:22::i;51188:166::-;51239:34;50713:24;5140:10;31249:139;:::i;51239:34::-;51231:96;;;;-1:-1:-1;;;51231:96:0;;8394:2:1;51231:96:0;;;8376:21:1;8433:2;8413:18;;;8406:30;8472:34;8452:18;;;8445:62;-1:-1:-1;;;8523:18:1;;;8516:47;8580:19;;51231:96:0;8366:239:1;51231:96:0;51338:8;:6;:8::i;49522:145::-;49604:7;49631:18;;;:12;:18;;;;;:28;;49653:5;49631:21;:28::i;:::-;49624:35;49522:145;-1:-1:-1;;;49522:145:0:o;31249:139::-;31327:4;31351:12;;;;;;;;;;;-1:-1:-1;;;;;31351:29:0;;;;;;;;;;;;;;;31249:139::o;6273:104::-;6329:13;6362:7;6355:14;;;;;:::i;10491:413::-;5140:10;10584:4;10628:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10628:34:0;;;;;;;;;;10681:35;;;;10673:85;;;;-1:-1:-1;;;10673:85:0;;10784:2:1;10673:85:0;;;10766:21:1;10823:2;10803:18;;;10796:30;10862:34;10842:18;;;10835:62;-1:-1:-1;;;10913:18:1;;;10906:35;10958:19;;10673:85:0;10756:227:1;10673:85:0;10794:67;5140:10;10817:7;10845:15;10826:16;:34;10794:8;:67::i;:::-;-1:-1:-1;10892:4:0;;10491:413;-1:-1:-1;;;10491:413:0:o;7685:175::-;7771:4;7788:42;5140:10;7812:9;7823:6;7788:9;:42::i;49841:134::-;49913:7;49940:18;;;:12;:18;;;;;:27;;:25;:27::i;33141:149::-;32430:7;32457:12;;;;;;;;;;:22;;;30831:30;30842:4;5140:10;30831;:30::i;:::-;33256:26:::1;33268:4;33274:7;33256:11;:26::i;35298:238::-:0;35382:22;35390:4;35396:7;35382;:22::i;:::-;35377:152;;35421:6;:12;;;;;;;;;;;-1:-1:-1;;;;;35421:29:0;;;;;;;;;:36;;-1:-1:-1;;35421:36:0;35453:4;35421:36;;;35504:12;5140:10;;5060:98;35504:12;-1:-1:-1;;;;;35477:40:0;35495:7;-1:-1:-1;;;;;35477:40:0;35489:4;35477:40;;;;;;;;;;35298:238;;:::o;43619:152::-;43689:4;43713:50;43718:3;-1:-1:-1;;;;;43738:23:0;;43713:4;:50::i;30953:204::-;31038:4;-1:-1:-1;;;;;;31062:47:0;;-1:-1:-1;;;31062:47:0;;:87;;-1:-1:-1;;;;;;;;;;28481:40:0;;;31113:36;28372:157;14175:380;-1:-1:-1;;;;;14311:19:0;;14303:68;;;;-1:-1:-1;;;14303:68:0;;10379:2:1;14303:68:0;;;10361:21:1;10418:2;10398:18;;;10391:30;10457:34;10437:18;;;10430:62;-1:-1:-1;;;10508:18:1;;;10501:34;10552:19;;14303:68:0;10351:226:1;14303:68:0;-1:-1:-1;;;;;14390:21:0;;14382:68;;;;-1:-1:-1;;;14382:68:0;;5993:2:1;14382:68:0;;;5975:21:1;6032:2;6012:18;;;6005:30;6071:34;6051:18;;;6044:62;-1:-1:-1;;;6122:18:1;;;6115:32;6164:19;;14382:68:0;5965:224:1;14382:68:0;-1:-1:-1;;;;;14463:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14515:32;;3850:25:1;;;14515:32:0;;3823:18:1;14515:32:0;;;;;;;14175:380;;;:::o;11394:733::-;-1:-1:-1;;;;;11534:20:0;;11526:70;;;;-1:-1:-1;;;11526:70:0;;9619:2:1;11526:70:0;;;9601:21:1;9658:2;9638:18;;;9631:30;9697:34;9677:18;;;9670:62;-1:-1:-1;;;9748:18:1;;;9741:35;9793:19;;11526:70:0;9591:227:1;11526:70:0;-1:-1:-1;;;;;11615:23:0;;11607:71;;;;-1:-1:-1;;;11607:71:0;;4837:2:1;11607:71:0;;;4819:21:1;4876:2;4856:18;;;4849:30;4915:34;4895:18;;;4888:62;-1:-1:-1;;;4966:18:1;;;4959:33;5009:19;;11607:71:0;4809:225:1;11607:71:0;11691:47;11712:6;11720:9;11731:6;11691:20;:47::i;:::-;-1:-1:-1;;;;;11775:17:0;;11751:21;11775:17;;;:9;:17;;;;;;11811:23;;;;11803:74;;;;-1:-1:-1;;;11803:74:0;;6396:2:1;11803:74:0;;;6378:21:1;6435:2;6415:18;;;6408:30;6474:34;6454:18;;;6447:62;-1:-1:-1;;;6525:18:1;;;6518:36;6571:19;;11803:74:0;6368:228:1;11803:74:0;-1:-1:-1;;;;;11913:17:0;;;;;;;:9;:17;;;;;;11933:22;;;11913:42;;11977:20;;;;;;;;:30;;11949:6;;11913:17;11977:30;;11949:6;;11977:30;:::i;:::-;;;;;;;;12042:9;-1:-1:-1;;;;;12025:35:0;12034:6;-1:-1:-1;;;;;12025:35:0;;12053:6;12025:35;;;;3850:25:1;;3838:2;3823:18;;3805:76;12025:35:0;;;;;;;;12073:46;11394:733;;;;:::o;31678:497::-;31759:22;31767:4;31773:7;31759;:22::i;:::-;31754:414;;31947:41;31975:7;-1:-1:-1;;;;;31947:41:0;31985:2;31947:19;:41::i;:::-;32061:38;32089:4;32096:2;32061:19;:38::i;:::-;31852:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;31852:270:0;;;;;;;;;;-1:-1:-1;;;31798:358:0;;;;;;;:::i;50068:169::-;50156:31;50173:4;50179:7;50156:16;:31::i;:::-;50198:18;;;;:12;:18;;;;;:31;;50221:7;50198:22;:31::i;50331:174::-;50420:32;50438:4;50444:7;50420:17;:32::i;:::-;50463:18;;;;:12;:18;;;;;:34;;50489:7;50463:25;:34::i;18909:120::-;17921:7;;;;18445:41;;;;-1:-1:-1;;;18445:41:0;;5241:2:1;18445:41:0;;;5223:21:1;5280:2;5260:18;;;5253:30;-1:-1:-1;;;5299:18:1;;;5292:50;5359:18;;18445:41:0;5213:170:1;18445:41:0;18968:7:::1;:15:::0;;-1:-1:-1;;18968:15:0::1;::::0;;18999:22:::1;5140:10:::0;19008:12:::1;18999:22;::::0;-1:-1:-1;;;;;3468:32:1;;;3450:51;;3438:2;3423:18;18999:22:0::1;;;;;;;18909:120::o:0;51747:131::-;51847:23;51859:2;51863:6;51847:11;:23::i;13146:591::-;-1:-1:-1;;;;;13230:21:0;;13222:67;;;;-1:-1:-1;;;13222:67:0;;9217:2:1;13222:67:0;;;9199:21:1;9256:2;9236:18;;;9229:30;9295:34;9275:18;;;9268:62;-1:-1:-1;;;9346:18:1;;;9339:31;9387:19;;13222:67:0;9189:223:1;13222:67:0;13302:49;13323:7;13340:1;13344:6;13302:20;:49::i;:::-;-1:-1:-1;;;;;13389:18:0;;13364:22;13389:18;;;:9;:18;;;;;;13426:24;;;;13418:71;;;;-1:-1:-1;;;13418:71:0;;5590:2:1;13418:71:0;;;5572:21:1;5629:2;5609:18;;;5602:30;5668:34;5648:18;;;5641:62;-1:-1:-1;;;5719:18:1;;;5712:32;5761:19;;13418:71:0;5562:224:1;13418:71:0;-1:-1:-1;;;;;13525:18:0;;;;;;:9;:18;;;;;13546:23;;;13525:44;;13591:12;:22;;13563:6;;13525:18;13591:22;;13563:6;;13591:22;:::i;:::-;;;;-1:-1:-1;;13631:37:0;;3850:25:1;;;13657:1:0;;-1:-1:-1;;;;;13631:37:0;;;;;3838:2:1;3823:18;13631:37:0;;;;;;;32749:147;;;:::o;18650:118::-;17921:7;;;;18175:9;18167:38;;;;-1:-1:-1;;;18167:38:0;;6803:2:1;18167:38:0;;;6785:21:1;6842:2;6822:18;;;6815:30;-1:-1:-1;;;6861:18:1;;;6854:46;6917:18;;18167:38:0;6775:166:1;18167:38:0;18710:7:::1;:14:::0;;-1:-1:-1;;18710:14:0::1;18720:4;18710:14;::::0;;18740:20:::1;18747:12;5140:10:::0;;5060:98;44915:158;44989:7;45040:22;45044:3;45056:5;45040:3;:22::i;44444:117::-;44507:7;44534:19;44542:3;39928:18;;39845:109;37534:414;37597:4;39727:19;;;:12;;;:19;;;;;;37614:327;;-1:-1:-1;37657:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;37840:18;;37818:19;;;:12;;;:19;;;;;;:40;;;;37873:11;;37614:327;-1:-1:-1;37924:5:0;37917:12;;51886:184;52018:44;52045:4;52051:2;52055:6;52018:26;:44::i;26466:451::-;26541:13;26567:19;26599:10;26603:6;26599:1;:10;:::i;:::-;:14;;26612:1;26599:14;:::i;:::-;26589:25;;;;;;-1:-1:-1;;;26589:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26589:25:0;;26567:47;;-1:-1:-1;;;26625:6:0;26632:1;26625:9;;;;;;-1:-1:-1;;;26625:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;26625:15:0;;;;;;;;;-1:-1:-1;;;26651:6:0;26658:1;26651:9;;;;;;-1:-1:-1;;;26651:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;26651:15:0;;;;;;;;-1:-1:-1;26682:9:0;26694:10;26698:6;26694:1;:10;:::i;:::-;:14;;26707:1;26694:14;:::i;:::-;26682:26;;26677:135;26714:1;26710;:5;26677:135;;;-1:-1:-1;;;26762:5:0;26770:3;26762:11;26749:25;;;;;-1:-1:-1;;;26749:25:0;;;;;;;;;;;;26737:6;26744:1;26737:9;;;;;;-1:-1:-1;;;26737:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;26737:37:0;;;;;;;;-1:-1:-1;26799:1:0;26789:11;;;;;26717:3;;;:::i;:::-;;;26677:135;;;-1:-1:-1;26830:10:0;;26822:55;;;;-1:-1:-1;;;26822:55:0;;4476:2:1;26822:55:0;;;4458:21:1;;;4495:18;;;4488:30;4554:34;4534:18;;;4527:62;4606:18;;26822:55:0;4448:182:1;35668:239:0;35752:22;35760:4;35766:7;35752;:22::i;:::-;35748:152;;;35823:5;35791:12;;;;;;;;;;;-1:-1:-1;;;;;35791:29:0;;;;;;;;;;:37;;-1:-1:-1;;35791:37:0;;;35848:40;5140:10;;35791:12;;35848:40;;35823:5;35848:40;35668:239;;:::o;43947:158::-;44020:4;44044:53;44052:3;-1:-1:-1;;;;;44072:23:0;;44044:7;:53::i;16653:207::-;16583:4;16768:6;16746:19;7262:12;;;7174:108;16746:19;:28;;;;:::i;:::-;:37;;16738:75;;;;-1:-1:-1;;;16738:75:0;;10025:2:1;16738:75:0;;;10007:21:1;10064:2;10044:18;;;10037:30;10103:27;10083:18;;;10076:55;10148:18;;16738:75:0;9997:175:1;16738:75:0;16824:28;16836:7;16845:6;16824:11;:28::i;40308:120::-;40375:7;40402:3;:11;;40414:5;40402:18;;;;;;-1:-1:-1;;;40402:18:0;;;;;;;;;;;;;;;;;40395:25;;40308:120;;;;:::o;19517:272::-;17921:7;;;;19725:9;19717:64;;;;-1:-1:-1;;;19717:64:0;;11966:2:1;19717:64:0;;;11948:21:1;12005:2;11985:18;;;11978:30;12044:34;12024:18;;;12017:62;-1:-1:-1;;;12095:18:1;;;12088:40;12145:19;;19717:64:0;11938:232:1;38124:1420:0;38190:4;38329:19;;;:12;;;:19;;;;;;38365:15;;38361:1176;;38740:21;38764:14;38777:1;38764:10;:14;:::i;:::-;38813:18;;38740:38;;-1:-1:-1;38793:17:0;;38813:22;;38834:1;;38813:22;:::i;:::-;38793:42;;38869:13;38856:9;:26;38852:405;;38903:17;38923:3;:11;;38935:9;38923:22;;;;;;-1:-1:-1;;;38923:22:0;;;;;;;;;;;;;;;;;38903:42;;39077:9;39048:3;:11;;39060:13;39048:26;;;;;;-1:-1:-1;;;39048:26:0;;;;;;;;;;;;;;;;;;;;:38;;;;39162:23;;;:12;;;:23;;;;;:36;;;38852:405;39338:17;;:3;;:17;;;-1:-1:-1;;;39338:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;39433:3;:12;;:19;39446:5;39433:19;;;;;;;;;;;39426:26;;;39476:4;39469:11;;;;;;;38361:1176;39520:5;39513:12;;;;;12414:399;-1:-1:-1;;;;;12498:21:0;;12490:65;;;;-1:-1:-1;;;12490:65:0;;11606:2:1;12490:65:0;;;11588:21:1;11645:2;11625:18;;;11618:30;11684:33;11664:18;;;11657:61;11735:18;;12490:65:0;11578:181:1;12490:65:0;12568:49;12597:1;12601:7;12610:6;12568:20;:49::i;:::-;12646:6;12630:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;12663:18:0;;;;;;:9;:18;;;;;:28;;12685:6;;12663:18;:28;;12685:6;;12663:28;:::i;:::-;;;;-1:-1:-1;;12707:37:0;;3850:25:1;;;-1:-1:-1;;;;;12707:37:0;;;12724:1;;12707:37;;3838:2:1;3823:18;12707:37:0;;;;;;;33797:218;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:190::-;1339:6;1392:2;1380:9;1371:7;1367:23;1363:32;1360:2;;;1413:6;1405;1398:22;1360:2;-1:-1:-1;1441:23:1;;1350:120;-1:-1:-1;1350:120:1:o;1475:264::-;1543:6;1551;1604:2;1592:9;1583:7;1579:23;1575:32;1572:2;;;1625:6;1617;1610:22;1572:2;1666:9;1653:23;1643:33;;1695:38;1729:2;1718:9;1714:18;1695:38;:::i;1744:258::-;1812:6;1820;1873:2;1861:9;1852:7;1848:23;1844:32;1841:2;;;1894:6;1886;1879:22;1841:2;-1:-1:-1;;1922:23:1;;;1992:2;1977:18;;;1964:32;;-1:-1:-1;1831:171:1:o;2007:306::-;2065:6;2118:2;2106:9;2097:7;2093:23;2089:32;2086:2;;;2139:6;2131;2124:22;2086:2;2170:23;;-1:-1:-1;;;;;;2222:32:1;;2212:43;;2202:2;;2274:6;2266;2259:22;2513:786;2924:25;2919:3;2912:38;2894:3;2979:6;2973:13;2995:62;3050:6;3045:2;3040:3;3036:12;3029:4;3021:6;3017:17;2995:62;:::i;:::-;-1:-1:-1;;;3116:2:1;3076:16;;;3108:11;;;3101:40;3166:13;;3188:63;3166:13;3237:2;3229:11;;3222:4;3210:17;;3188:63;:::i;:::-;3271:17;3290:2;3267:26;;2902:397;-1:-1:-1;;;;2902:397:1:o;3886:383::-;4035:2;4024:9;4017:21;3998:4;4067:6;4061:13;4110:6;4105:2;4094:9;4090:18;4083:34;4126:66;4185:6;4180:2;4169:9;4165:18;4160:2;4152:6;4148:15;4126:66;:::i;:::-;4253:2;4232:15;-1:-1:-1;;4228:29:1;4213:45;;;;4260:2;4209:54;;4007:262;-1:-1:-1;;4007:262:1:o;12546:128::-;12586:3;12617:1;12613:6;12610:1;12607:13;12604:2;;;12623:18;;:::i;:::-;-1:-1:-1;12659:9:1;;12594:80::o;12679:168::-;12719:7;12785:1;12781;12777:6;12773:14;12770:1;12767:21;12762:1;12755:9;12748:17;12744:45;12741:2;;;12792:18;;:::i;:::-;-1:-1:-1;12832:9:1;;12731:116::o;12852:125::-;12892:4;12920:1;12917;12914:8;12911:2;;;12925:18;;:::i;:::-;-1:-1:-1;12962:9:1;;12901:76::o;12982:258::-;13054:1;13064:113;13078:6;13075:1;13072:13;13064:113;;;13154:11;;;13148:18;13135:11;;;13128:39;13100:2;13093:10;13064:113;;;13195:6;13192:1;13189:13;13186:2;;;-1:-1:-1;;13230:1:1;13212:16;;13205:27;13035:205::o;13245:136::-;13284:3;13312:5;13302:2;;13321:18;;:::i;:::-;-1:-1:-1;;;13357:18:1;;13292:89::o;13386:380::-;13465:1;13461:12;;;;13508;;;13529:2;;13583:4;13575:6;13571:17;13561:27;;13529:2;13636;13628:6;13625:14;13605:18;13602:38;13599:2;;;13682:10;13677:3;13673:20;13670:1;13663:31;13717:4;13714:1;13707:15;13745:4;13742:1;13735:15;13599:2;;13441:325;;;:::o;13771:127::-;13832:10;13827:3;13823:20;13820:1;13813:31;13863:4;13860:1;13853:15;13887:4;13884:1;13877:15
Swarm Source
ipfs://5ca09d849eb18ef1ca2e916e8aca382118c6cdd3891a2a4a08c1cf2e0d1b4908
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.