ERC-20
Overview
Max Total Supply
100,000,000,000 bitcca
Holders
5,685
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 2 Decimals)
Balance
367,878 bitccaValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
bitcciCash
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-28 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol pragma solidity ^0.8.0; /** * @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"); _approve(account, _msgSender(), currentAllowance - amount); _burn(account, amount); } } // File: @openzeppelin/contracts/security/Pausable.sol pragma solidity ^0.8.0; /** * @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()); } } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol pragma solidity ^0.8.0; /** * @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"); } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/access/AccessControl.sol pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { function hasRole(bytes32 role, address account) external view returns (bool); function getRoleAdmin(bytes32 role) external view returns (bytes32); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; } /** * @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 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 {_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 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]{20}) is missing role (0x[0-9a-f]{32})$/ * * _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]{20}) is missing role (0x[0-9a-f]{32})$/ */ 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 granted `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}. * ==== */ 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 { emit RoleAdminChanged(role, getRoleAdmin(role), adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File: @openzeppelin/contracts/utils/structs/EnumerableSet.sol pragma solidity ^0.8.0; /** * @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; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. 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) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // 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); } // 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)))); } // 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)); } } // File: @openzeppelin/contracts/access/AccessControlEnumerable.sol pragma solidity ^0.8.0; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable { function getRoleMember(bytes32 role, uint256 index) external view returns (address); function getRoleMemberCount(bytes32 role) external view returns (uint256); } /** * @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) public virtual override { super.grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {revokeRole} to track enumerable memberships */ function revokeRole(bytes32 role, address account) public virtual override { super.revokeRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {renounceRole} to track enumerable memberships */ function renounceRole(bytes32 role, address account) public virtual override { super.renounceRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {_setupRole} to track enumerable memberships */ function _setupRole(bytes32 role, address account) internal virtual override { super._setupRole(role, account); _roleMembers[role].add(account); } } // File: contracts/bitcciCash.sol pragma solidity ^0.8.0; /** * @dev {ERC20} token, including: * * - ability for holders to burn (destroy) their tokens * - a minter role that allows for token minting (creation) * - a pauser role that allows to stop all token transfers * * This contract uses {AccessControl} to lock permissioned functions using the * different roles - head to its documentation for details. * * The account that deploys the contract will be granted the minter and pauser * roles, as well as the default admin role, which will let it grant both minter * and pauser roles to other accounts. */ contract bitcciCash is Context, AccessControlEnumerable, ERC20Burnable, ERC20Pausable{ uint256 immutable private _cap; uint8 immutable private _decimals; bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); bytes32 public constant BLACKLISTED_ROLE = keccak256("BLACKLISTED_ROLE"); /** * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the * account that deploys the contract. * * See {ERC20-constructor}. */ /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor(string memory bitcciCashName, string memory bitcciCashSymbol, uint8 decimals_,uint256 cap_) ERC20(bitcciCashName, bitcciCashSymbol) { require(cap_ > 0, "ERC20Capped: cap is 0"); _cap = cap_; _decimals = decimals_; _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } function decimals() public view virtual override returns (uint8) { return _decimals; } function addBlackListed(address account) public { grantRole(BLACKLISTED_ROLE, account); } function removeBlackListed(address account) public { revokeRole(BLACKLISTED_ROLE, account); } function renounceRole(bytes32 role, address account) public virtual override { require(role != BLACKLISTED_ROLE, "bitcciCash: cannot renounce blacklisted role"); super.renounceRole(role, account); } /** * @dev Creates `amount` new tokens for `to`. * * See {ERC20-_mint}. * * Requirements: * * - the caller must have the `MINTER_ROLE`. */ function mint(address to, uint256 amount) public virtual { require(ERC20.totalSupply() + amount <= cap(), "bitcciCash: cap exceeded"); require(hasRole(MINTER_ROLE, _msgSender()), "bitcciCash: must have minter role to mint"); _mint(to, amount); } /** * @dev Pauses all token transfers. * * See {ERC20Pausable} and {Pausable-_pause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function pause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "bitcciCash: must have pauser role to pause"); _pause(); } /** * @dev Unpauses all token transfers. * * See {ERC20Pausable} and {Pausable-_unpause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function unpause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "bitcciCash: must have pauser role to unpause"); _unpause(); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Pausable) { require(!(hasRole(BLACKLISTED_ROLE, msg.sender)), "bitcciCash: sender is Blacklisted"); require(!(hasRole(BLACKLISTED_ROLE, to)),"bitcciCash: receiver is Blacklisted"); super._beforeTokenTransfer(from, to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"bitcciCashName","type":"string"},{"internalType":"string","name":"bitcciCashSymbol","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"cap_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"BLACKLISTED_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"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":"account","type":"address"}],"name":"addBlackListed","outputs":[],"stateMutability":"nonpayable","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":"address","name":"account","type":"address"}],"name":"removeBlackListed","outputs":[],"stateMutability":"nonpayable","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
60c06040523480156200001157600080fd5b506040516200243038038062002430833981016040819052620000349162000428565b8351849084906200004d906005906020850190620002d7565b50805162000063906006906020840190620002d7565b50506007805460ff191690555080620000995760405162461bcd60e51b81526004016200009090620004af565b60405180910390fd5b60808190527fff0000000000000000000000000000000000000000000000000000000000000060f883901b1660a052620000de6000620000d862000146565b6200014a565b6200010d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620000d862000146565b6200013c7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620000d862000146565b5050505062000539565b3390565b6200016182826200018d60201b62000a3d1760201c565b60008281526001602090815260409091206200018891839062000a476200019d821b17901c565b505050565b620001998282620001bd565b5050565b6000620001b4836001600160a01b03841662000247565b90505b92915050565b620001c9828262000296565b62000199576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556200020362000146565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000620002558383620002bf565b6200028d57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620001b7565b506000620001b7565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60009081526001919091016020526040902054151590565b828054620002e590620004e6565b90600052602060002090601f01602090048101928262000309576000855562000354565b82601f106200032457805160ff191683800117855562000354565b8280016001018555821562000354579182015b828111156200035457825182559160200191906001019062000337565b506200036292915062000366565b5090565b5b8082111562000362576000815560010162000367565b600082601f8301126200038e578081fd5b81516001600160401b0380821115620003ab57620003ab62000523565b6040516020601f8401601f1916820181018381118382101715620003d357620003d362000523565b6040528382528584018101871015620003ea578485fd5b8492505b838310156200040d5785830181015182840182015291820191620003ee565b838311156200041e57848185840101525b5095945050505050565b600080600080608085870312156200043e578384fd5b84516001600160401b038082111562000455578586fd5b62000463888389016200037d565b9550602087015191508082111562000479578485fd5b5062000488878288016200037d565b935050604085015160ff811681146200049f578283fd5b6060959095015193969295505050565b60208082526015908201527f45524332304361707065643a2063617020697320300000000000000000000000604082015260600190565b600281046001821680620004fb57607f821691505b602082108114156200051d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160f81c611ece6200056260003960006105f90152600061061d0152611ece6000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c806362b199c51161010f578063a457c2d7116100a2578063d547741f11610071578063d547741f146103dc578063dd62ed3e146103ef578063e63ab1e914610402578063f1807fd21461040a576101f0565b8063a457c2d71461039b578063a9059cbb146103ae578063ca15c873146103c1578063d5391393146103d4576101f0565b80639010d07c116100de5780639010d07c1461035857806391d148541461037857806395d89b411461038b578063a217fddf14610393576101f0565b806362b199c51461032257806370a082311461032a57806379cc67901461033d5780638456cb5914610350576101f0565b8063313ce567116101875780633f4ba83a116101565780633f4ba83a146102ec57806340c10f19146102f457806342966c68146103075780635c975abb1461031a576101f0565b8063313ce567146102a9578063355274ea146102be57806336568abe146102c657806339509351146102d9576101f0565b80631a332cbf116101c35780631a332cbf1461025b57806323b872dd14610270578063248a9ca3146102835780632f2ff15d14610296576101f0565b806301ffc9a7146101f557806306fdde031461021e578063095ea7b31461023357806318160ddd14610246575b600080fd5b61020861020336600461165f565b61041d565b6040516102159190611710565b60405180910390f35b61022661044a565b6040516102159190611724565b6102086102413660046115db565b6104dc565b61024e6104fa565b604051610215919061171b565b61026e610269366004611554565b610500565b005b61020861027e3660046115a0565b61051b565b61024e610291366004611604565b6105bb565b61026e6102a436600461161c565b6105d0565b6102b16105f7565b6040516102159190611d84565b61024e61061b565b61026e6102d436600461161c565b61063f565b6102086102e73660046115db565b61067b565b61026e6106ca565b61026e6103023660046115db565b61071c565b61026e610315366004611604565b6107a7565b6102086107b8565b61024e6107c1565b61024e610338366004611554565b6107d3565b61026e61034b3660046115db565b6107ee565b61026e61083e565b61036b61036636600461163e565b61088e565b60405161021591906116fc565b61020861038636600461161c565b6108ad565b6102266108d6565b61024e6108e5565b6102086103a93660046115db565b6108ea565b6102086103bc3660046115db565b610965565b61024e6103cf366004611604565b610979565b61024e610990565b61026e6103ea36600461161c565b6109b4565b61024e6103fd36600461156e565b6109d6565b61024e610a01565b61026e610418366004611554565b610a25565b60006001600160e01b03198216635a05180f60e01b1480610442575061044282610a5c565b90505b919050565b60606005805461045990611e27565b80601f016020809104026020016040519081016040528092919081815260200182805461048590611e27565b80156104d25780601f106104a7576101008083540402835291602001916104d2565b820191906000526020600020905b8154815290600101906020018083116104b557829003601f168201915b5050505050905090565b60006104f06104e9610a81565b8484610a85565b5060015b92915050565b60045490565b610518600080516020611e79833981519152826105d0565b50565b6000610528848484610b39565b6001600160a01b038416600090815260036020526040812081610549610a81565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156105955760405162461bcd60e51b815260040161058c90611b19565b60405180910390fd5b6105b0856105a1610a81565b6105ab8685611dc9565b610a85565b506001949350505050565b60009081526020819052604090206001015490565b6105da8282610c61565b60008281526001602052604090206105f29082610a47565b505050565b7f000000000000000000000000000000000000000000000000000000000000000090565b7f000000000000000000000000000000000000000000000000000000000000000090565b600080516020611e7983398151915282141561066d5760405162461bcd60e51b815260040161058c9061197e565b6106778282610c85565b5050565b60006104f0610688610a81565b848460036000610696610a81565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546105ab9190611d92565b6106f67f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610386610a81565b6107125760405162461bcd60e51b815260040161058c90611acd565b61071a610c8f565b565b61072461061b565b8161072d6104fa565b6107379190611d92565b11156107555760405162461bcd60e51b815260040161058c906118c3565b6107817f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610386610a81565b61079d5760405162461bcd60e51b815260040161058c90611a10565b6106778282610cfd565b6105186107b2610a81565b82610dbd565b60075460ff1690565b600080516020611e7983398151915281565b6001600160a01b031660009081526002602052604090205490565b60006107fc836103fd610a81565b90508181101561081e5760405162461bcd60e51b815260040161058c90611b61565b6108348361082a610a81565b6105ab8585611dc9565b6105f28383610dbd565b61086a7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610386610a81565b6108865760405162461bcd60e51b815260040161058c90611a83565b61071a610ea3565b60008281526001602052604081206108a69083610efe565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60606006805461045990611e27565b600081565b600080600360006108f9610a81565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156109455760405162461bcd60e51b815260040161058c90611c6f565b61095b610950610a81565b856105ab8685611dc9565b5060019392505050565b60006104f0610972610a81565b8484610b39565b600081815260016020526040812061044290610f0a565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6109be8282610f15565b60008281526001602052604090206105f29082610f34565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610518600080516020611e79833981519152826109b4565b6106778282610f49565b60006108a6836001600160a01b038416610fce565b60006001600160e01b03198216637965db0b60e01b1480610442575061044282611018565b3390565b6001600160a01b038316610aab5760405162461bcd60e51b815260040161058c90611c2b565b6001600160a01b038216610ad15760405162461bcd60e51b815260040161058c9061193c565b6001600160a01b0380841660008181526003602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610b2c90859061171b565b60405180910390a3505050565b6001600160a01b038316610b5f5760405162461bcd60e51b815260040161058c90611be6565b6001600160a01b038216610b855760405162461bcd60e51b815260040161058c90611811565b610b90838383611031565b6001600160a01b03831660009081526002602052604090205481811015610bc95760405162461bcd60e51b815260040161058c906119ca565b610bd38282611dc9565b6001600160a01b038086166000908152600260205260408082209390935590851681529081208054849290610c09908490611d92565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c53919061171b565b60405180910390a350505050565b610c6a826105bb565b610c7b81610c76610a81565b6110a6565b6105f28383610f49565b6109be828261110a565b610c976107b8565b610cb35760405162461bcd60e51b815260040161058c90611895565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610ce6610a81565b604051610cf391906116fc565b60405180910390a1565b6001600160a01b038216610d235760405162461bcd60e51b815260040161058c90611d03565b610d2f60008383611031565b8060046000828254610d419190611d92565b90915550506001600160a01b03821660009081526002602052604081208054839290610d6e908490611d92565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610db190859061171b565b60405180910390a35050565b6001600160a01b038216610de35760405162461bcd60e51b815260040161058c90611ba5565b610def82600083611031565b6001600160a01b03821660009081526002602052604090205481811015610e285760405162461bcd60e51b815260040161058c906118fa565b610e328282611dc9565b6001600160a01b03841660009081526002602052604081209190915560048054849290610e60908490611dc9565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b2c90869061171b565b610eab6107b8565b15610ec85760405162461bcd60e51b815260040161058c90611a59565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610ce6610a81565b60006108a6838361114c565b6000610442826111a5565b610f1e826105bb565b610f2a81610c76610a81565b6105f283836111a9565b60006108a6836001600160a01b03841661122c565b610f5382826108ad565b610677576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055610f8a610a81565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610fda8383611343565b611010575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556104f4565b5060006104f4565b6001600160e01b031981166301ffc9a760e01b14919050565b611049600080516020611e79833981519152336108ad565b156110665760405162461bcd60e51b815260040161058c90611854565b61107e600080516020611e79833981519152836108ad565b1561109b5760405162461bcd60e51b815260040161058c90611757565b6105f283838361135b565b6110b082826108ad565b610677576110c8816001600160a01b0316601461138b565b6110d383602061138b565b6040516020016110e4929190611687565b60408051601f198184030181529082905262461bcd60e51b825261058c91600401611724565b611112610a81565b6001600160a01b0316816001600160a01b0316146111425760405162461bcd60e51b815260040161058c90611cb4565b61067782826111a9565b8154600090821061116f5760405162461bcd60e51b815260040161058c9061179a565b82600001828154811061119257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b5490565b6111b382826108ad565b15610677576000828152602081815260408083206001600160a01b03851684529091529020805460ff191690556111e8610a81565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60008181526001830160205260408120548015611339576000611250600183611dc9565b855490915060009061126490600190611dc9565b9050600086600001828154811061128b57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106112bc57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600189019091526040902084905586548790806112fd57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506104f4565b60009150506104f4565b60009081526001919091016020526040902054151590565b6113668383836105f2565b61136e6107b8565b156105f25760405162461bcd60e51b815260040161058c90611d3a565b6060600061139a836002611daa565b6113a5906002611d92565b67ffffffffffffffff8111156113cb57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156113f5576020820181803683370190505b509050600360fc1b8160008151811061141e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061145b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600061147f846002611daa565b61148a906001611d92565b90505b600181111561151e576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106114cc57634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106114f057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9361151781611e10565b905061148d565b5083156108a65760405162461bcd60e51b815260040161058c906117dc565b80356001600160a01b038116811461044557600080fd5b600060208284031215611565578081fd5b6108a68261153d565b60008060408385031215611580578081fd5b6115898361153d565b91506115976020840161153d565b90509250929050565b6000806000606084860312156115b4578081fd5b6115bd8461153d565b92506115cb6020850161153d565b9150604084013590509250925092565b600080604083850312156115ed578182fd5b6115f68361153d565b946020939093013593505050565b600060208284031215611615578081fd5b5035919050565b6000806040838503121561162e578182fd5b823591506115976020840161153d565b60008060408385031215611650578182fd5b50508035926020909101359150565b600060208284031215611670578081fd5b81356001600160e01b0319811681146108a6578182fd5b60007f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000825283516116bf816017850160208801611de0565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516116f0816028840160208801611de0565b01602801949350505050565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b6000602082528251806020840152611743816040850160208701611de0565b601f01601f19169190910160400192915050565b60208082526023908201527f626974636369436173683a20726563656976657220697320426c61636b6c69736040820152621d195960ea1b606082015260800190565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526021908201527f626974636369436173683a2073656e64657220697320426c61636b6c697374656040820152601960fa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526018908201527f626974636369436173683a206361702065786365656465640000000000000000604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252602c908201527f626974636369436173683a2063616e6e6f742072656e6f756e636520626c616360408201526b6b6c697374656420726f6c6560a01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526029908201527f626974636369436173683a206d7573742068617665206d696e74657220726f6c60408201526819481d1bc81b5a5b9d60ba1b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252602a908201527f626974636369436173683a206d75737420686176652070617573657220726f6c6040820152696520746f20706175736560b01b606082015260800190565b6020808252602c908201527f626974636369436173683a206d75737420686176652070617573657220726f6c60408201526b6520746f20756e706175736560a01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604082015263616e636560e01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252602a908201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686040820152691a5b19481c185d5cd95960b21b606082015260800190565b60ff91909116815260200190565b60008219821115611da557611da5611e62565b500190565b6000816000190483118215151615611dc457611dc4611e62565b500290565b600082821015611ddb57611ddb611e62565b500390565b60005b83811015611dfb578181015183820152602001611de3565b83811115611e0a576000848401525b50505050565b600081611e1f57611e1f611e62565b506000190190565b600281046001821680611e3b57607f821691505b60208210811415611e5c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe548c7f0307ab2a7ea894e5c7e8c5353cc750bb9385ee2e945f189a9a83daa8eda2646970667358221220f968f37a0c6f84434463d6961320e61a50b536cedda1f59f08a8faaa0f986c7964736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000009184e72a000000000000000000000000000000000000000000000000000000000000000000b626974636369206361736800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066269746363610000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101f05760003560e01c806362b199c51161010f578063a457c2d7116100a2578063d547741f11610071578063d547741f146103dc578063dd62ed3e146103ef578063e63ab1e914610402578063f1807fd21461040a576101f0565b8063a457c2d71461039b578063a9059cbb146103ae578063ca15c873146103c1578063d5391393146103d4576101f0565b80639010d07c116100de5780639010d07c1461035857806391d148541461037857806395d89b411461038b578063a217fddf14610393576101f0565b806362b199c51461032257806370a082311461032a57806379cc67901461033d5780638456cb5914610350576101f0565b8063313ce567116101875780633f4ba83a116101565780633f4ba83a146102ec57806340c10f19146102f457806342966c68146103075780635c975abb1461031a576101f0565b8063313ce567146102a9578063355274ea146102be57806336568abe146102c657806339509351146102d9576101f0565b80631a332cbf116101c35780631a332cbf1461025b57806323b872dd14610270578063248a9ca3146102835780632f2ff15d14610296576101f0565b806301ffc9a7146101f557806306fdde031461021e578063095ea7b31461023357806318160ddd14610246575b600080fd5b61020861020336600461165f565b61041d565b6040516102159190611710565b60405180910390f35b61022661044a565b6040516102159190611724565b6102086102413660046115db565b6104dc565b61024e6104fa565b604051610215919061171b565b61026e610269366004611554565b610500565b005b61020861027e3660046115a0565b61051b565b61024e610291366004611604565b6105bb565b61026e6102a436600461161c565b6105d0565b6102b16105f7565b6040516102159190611d84565b61024e61061b565b61026e6102d436600461161c565b61063f565b6102086102e73660046115db565b61067b565b61026e6106ca565b61026e6103023660046115db565b61071c565b61026e610315366004611604565b6107a7565b6102086107b8565b61024e6107c1565b61024e610338366004611554565b6107d3565b61026e61034b3660046115db565b6107ee565b61026e61083e565b61036b61036636600461163e565b61088e565b60405161021591906116fc565b61020861038636600461161c565b6108ad565b6102266108d6565b61024e6108e5565b6102086103a93660046115db565b6108ea565b6102086103bc3660046115db565b610965565b61024e6103cf366004611604565b610979565b61024e610990565b61026e6103ea36600461161c565b6109b4565b61024e6103fd36600461156e565b6109d6565b61024e610a01565b61026e610418366004611554565b610a25565b60006001600160e01b03198216635a05180f60e01b1480610442575061044282610a5c565b90505b919050565b60606005805461045990611e27565b80601f016020809104026020016040519081016040528092919081815260200182805461048590611e27565b80156104d25780601f106104a7576101008083540402835291602001916104d2565b820191906000526020600020905b8154815290600101906020018083116104b557829003601f168201915b5050505050905090565b60006104f06104e9610a81565b8484610a85565b5060015b92915050565b60045490565b610518600080516020611e79833981519152826105d0565b50565b6000610528848484610b39565b6001600160a01b038416600090815260036020526040812081610549610a81565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156105955760405162461bcd60e51b815260040161058c90611b19565b60405180910390fd5b6105b0856105a1610a81565b6105ab8685611dc9565b610a85565b506001949350505050565b60009081526020819052604090206001015490565b6105da8282610c61565b60008281526001602052604090206105f29082610a47565b505050565b7f000000000000000000000000000000000000000000000000000000000000000290565b7f000000000000000000000000000000000000000000000000000009184e72a00090565b600080516020611e7983398151915282141561066d5760405162461bcd60e51b815260040161058c9061197e565b6106778282610c85565b5050565b60006104f0610688610a81565b848460036000610696610a81565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546105ab9190611d92565b6106f67f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610386610a81565b6107125760405162461bcd60e51b815260040161058c90611acd565b61071a610c8f565b565b61072461061b565b8161072d6104fa565b6107379190611d92565b11156107555760405162461bcd60e51b815260040161058c906118c3565b6107817f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610386610a81565b61079d5760405162461bcd60e51b815260040161058c90611a10565b6106778282610cfd565b6105186107b2610a81565b82610dbd565b60075460ff1690565b600080516020611e7983398151915281565b6001600160a01b031660009081526002602052604090205490565b60006107fc836103fd610a81565b90508181101561081e5760405162461bcd60e51b815260040161058c90611b61565b6108348361082a610a81565b6105ab8585611dc9565b6105f28383610dbd565b61086a7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610386610a81565b6108865760405162461bcd60e51b815260040161058c90611a83565b61071a610ea3565b60008281526001602052604081206108a69083610efe565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60606006805461045990611e27565b600081565b600080600360006108f9610a81565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156109455760405162461bcd60e51b815260040161058c90611c6f565b61095b610950610a81565b856105ab8685611dc9565b5060019392505050565b60006104f0610972610a81565b8484610b39565b600081815260016020526040812061044290610f0a565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6109be8282610f15565b60008281526001602052604090206105f29082610f34565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610518600080516020611e79833981519152826109b4565b6106778282610f49565b60006108a6836001600160a01b038416610fce565b60006001600160e01b03198216637965db0b60e01b1480610442575061044282611018565b3390565b6001600160a01b038316610aab5760405162461bcd60e51b815260040161058c90611c2b565b6001600160a01b038216610ad15760405162461bcd60e51b815260040161058c9061193c565b6001600160a01b0380841660008181526003602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610b2c90859061171b565b60405180910390a3505050565b6001600160a01b038316610b5f5760405162461bcd60e51b815260040161058c90611be6565b6001600160a01b038216610b855760405162461bcd60e51b815260040161058c90611811565b610b90838383611031565b6001600160a01b03831660009081526002602052604090205481811015610bc95760405162461bcd60e51b815260040161058c906119ca565b610bd38282611dc9565b6001600160a01b038086166000908152600260205260408082209390935590851681529081208054849290610c09908490611d92565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c53919061171b565b60405180910390a350505050565b610c6a826105bb565b610c7b81610c76610a81565b6110a6565b6105f28383610f49565b6109be828261110a565b610c976107b8565b610cb35760405162461bcd60e51b815260040161058c90611895565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610ce6610a81565b604051610cf391906116fc565b60405180910390a1565b6001600160a01b038216610d235760405162461bcd60e51b815260040161058c90611d03565b610d2f60008383611031565b8060046000828254610d419190611d92565b90915550506001600160a01b03821660009081526002602052604081208054839290610d6e908490611d92565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610db190859061171b565b60405180910390a35050565b6001600160a01b038216610de35760405162461bcd60e51b815260040161058c90611ba5565b610def82600083611031565b6001600160a01b03821660009081526002602052604090205481811015610e285760405162461bcd60e51b815260040161058c906118fa565b610e328282611dc9565b6001600160a01b03841660009081526002602052604081209190915560048054849290610e60908490611dc9565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b2c90869061171b565b610eab6107b8565b15610ec85760405162461bcd60e51b815260040161058c90611a59565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610ce6610a81565b60006108a6838361114c565b6000610442826111a5565b610f1e826105bb565b610f2a81610c76610a81565b6105f283836111a9565b60006108a6836001600160a01b03841661122c565b610f5382826108ad565b610677576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055610f8a610a81565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610fda8383611343565b611010575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556104f4565b5060006104f4565b6001600160e01b031981166301ffc9a760e01b14919050565b611049600080516020611e79833981519152336108ad565b156110665760405162461bcd60e51b815260040161058c90611854565b61107e600080516020611e79833981519152836108ad565b1561109b5760405162461bcd60e51b815260040161058c90611757565b6105f283838361135b565b6110b082826108ad565b610677576110c8816001600160a01b0316601461138b565b6110d383602061138b565b6040516020016110e4929190611687565b60408051601f198184030181529082905262461bcd60e51b825261058c91600401611724565b611112610a81565b6001600160a01b0316816001600160a01b0316146111425760405162461bcd60e51b815260040161058c90611cb4565b61067782826111a9565b8154600090821061116f5760405162461bcd60e51b815260040161058c9061179a565b82600001828154811061119257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b5490565b6111b382826108ad565b15610677576000828152602081815260408083206001600160a01b03851684529091529020805460ff191690556111e8610a81565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60008181526001830160205260408120548015611339576000611250600183611dc9565b855490915060009061126490600190611dc9565b9050600086600001828154811061128b57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106112bc57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600189019091526040902084905586548790806112fd57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506104f4565b60009150506104f4565b60009081526001919091016020526040902054151590565b6113668383836105f2565b61136e6107b8565b156105f25760405162461bcd60e51b815260040161058c90611d3a565b6060600061139a836002611daa565b6113a5906002611d92565b67ffffffffffffffff8111156113cb57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156113f5576020820181803683370190505b509050600360fc1b8160008151811061141e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061145b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600061147f846002611daa565b61148a906001611d92565b90505b600181111561151e576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106114cc57634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106114f057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9361151781611e10565b905061148d565b5083156108a65760405162461bcd60e51b815260040161058c906117dc565b80356001600160a01b038116811461044557600080fd5b600060208284031215611565578081fd5b6108a68261153d565b60008060408385031215611580578081fd5b6115898361153d565b91506115976020840161153d565b90509250929050565b6000806000606084860312156115b4578081fd5b6115bd8461153d565b92506115cb6020850161153d565b9150604084013590509250925092565b600080604083850312156115ed578182fd5b6115f68361153d565b946020939093013593505050565b600060208284031215611615578081fd5b5035919050565b6000806040838503121561162e578182fd5b823591506115976020840161153d565b60008060408385031215611650578182fd5b50508035926020909101359150565b600060208284031215611670578081fd5b81356001600160e01b0319811681146108a6578182fd5b60007f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000825283516116bf816017850160208801611de0565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516116f0816028840160208801611de0565b01602801949350505050565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b6000602082528251806020840152611743816040850160208701611de0565b601f01601f19169190910160400192915050565b60208082526023908201527f626974636369436173683a20726563656976657220697320426c61636b6c69736040820152621d195960ea1b606082015260800190565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526021908201527f626974636369436173683a2073656e64657220697320426c61636b6c697374656040820152601960fa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526018908201527f626974636369436173683a206361702065786365656465640000000000000000604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252602c908201527f626974636369436173683a2063616e6e6f742072656e6f756e636520626c616360408201526b6b6c697374656420726f6c6560a01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526029908201527f626974636369436173683a206d7573742068617665206d696e74657220726f6c60408201526819481d1bc81b5a5b9d60ba1b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252602a908201527f626974636369436173683a206d75737420686176652070617573657220726f6c6040820152696520746f20706175736560b01b606082015260800190565b6020808252602c908201527f626974636369436173683a206d75737420686176652070617573657220726f6c60408201526b6520746f20756e706175736560a01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604082015263616e636560e01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252602a908201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686040820152691a5b19481c185d5cd95960b21b606082015260800190565b60ff91909116815260200190565b60008219821115611da557611da5611e62565b500190565b6000816000190483118215151615611dc457611dc4611e62565b500290565b600082821015611ddb57611ddb611e62565b500390565b60005b83811015611dfb578181015183820152602001611de3565b83811115611e0a576000848401525b50505050565b600081611e1f57611e1f611e62565b506000190190565b600281046001821680611e3b57607f821691505b60208210811415611e5c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe548c7f0307ab2a7ea894e5c7e8c5353cc750bb9385ee2e945f189a9a83daa8eda2646970667358221220f968f37a0c6f84434463d6961320e61a50b536cedda1f59f08a8faaa0f986c7964736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000009184e72a000000000000000000000000000000000000000000000000000000000000000000b626974636369206361736800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066269746363610000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : bitcciCashName (string): bitcci cash
Arg [1] : bitcciCashSymbol (string): bitcca
Arg [2] : decimals_ (uint8): 2
Arg [3] : cap_ (uint256): 10000000000000
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [3] : 000000000000000000000000000000000000000000000000000009184e72a000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 6269746363692063617368000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 6269746363610000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
45612:3504:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42622:227;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6528:100;;;:::i;:::-;;;;;;;:::i;8695:169::-;;;;;;:::i;:::-;;:::i;7648:108::-;;;:::i;:::-;;;;;;;:::i;47019:103::-;;;;;;:::i;:::-;;:::i;:::-;;9346:422;;;;;;:::i;:::-;;:::i;28934:123::-;;;;;;:::i;:::-;;:::i;43993:165::-;;;;;;:::i;:::-;;:::i;46911:100::-;;;:::i;:::-;;;;;;;:::i;46822:83::-;;;:::i;47245:255::-;;;;;;:::i;:::-;;:::i;10177:215::-;;;;;;:::i;:::-;;:::i;48568:165::-;;;:::i;47700:277::-;;;;;;:::i;:::-;;:::i;15790:91::-;;;;;;:::i;:::-;;:::i;17614:86::-;;;:::i;45921:72::-;;;:::i;7819:127::-;;;;;;:::i;:::-;;:::i;16200:332::-;;;;;;:::i;:::-;;:::i;48191:159::-;;;:::i;43448:145::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27932:139::-;;;;;;:::i;:::-;;:::i;6747:104::-;;;:::i;25897:49::-;;;:::i;10895:377::-;;;;;;:::i;:::-;;:::i;8159:175::-;;;;;;:::i;:::-;;:::i;43767:134::-;;;;;;:::i;:::-;;:::i;45783:62::-;;;:::i;44251:170::-;;;;;;:::i;:::-;;:::i;8397:151::-;;;;;;:::i;:::-;;:::i;45852:62::-;;;:::i;47130:107::-;;;;;;:::i;:::-;;:::i;42622:227::-;42707:4;-1:-1:-1;;;;;;42731:57:0;;-1:-1:-1;;;42731:57:0;;:110;;;42805:36;42829:11;42805:23;:36::i;:::-;42724:117;;42622:227;;;;:::o;6528:100::-;6582:13;6615:5;6608:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6528:100;:::o;8695:169::-;8778:4;8795:39;8804:12;:10;:12::i;:::-;8818:7;8827:6;8795:8;:39::i;:::-;-1:-1:-1;8852:4:0;8695:169;;;;;:::o;7648:108::-;7736:12;;7648:108;:::o;47019:103::-;47078:36;-1:-1:-1;;;;;;;;;;;47106:7:0;47078:9;:36::i;:::-;47019:103;:::o;9346:422::-;9452:4;9469:36;9479:6;9487:9;9498:6;9469:9;:36::i;:::-;-1:-1:-1;;;;;9545:19:0;;9518:24;9545:19;;;:11;:19;;;;;9518:24;9565:12;:10;:12::i;:::-;-1:-1:-1;;;;;9545:33:0;-1:-1:-1;;;;;9545:33:0;;;;;;;;;;;;;9518:60;;9617:6;9597:16;:26;;9589:79;;;;-1:-1:-1;;;9589:79:0;;;;;;;:::i;:::-;;;;;;;;;9679:57;9688:6;9696:12;:10;:12::i;:::-;9710:25;9729:6;9710:16;:25;:::i;:::-;9679:8;:57::i;:::-;-1:-1:-1;9756:4:0;;9346:422;-1:-1:-1;;;;9346:422:0:o;28934:123::-;29000:7;29027:12;;;;;;;;;;:22;;;;28934:123::o;43993:165::-;44078:30;44094:4;44100:7;44078:15;:30::i;:::-;44119:18;;;;:12;:18;;;;;:31;;44142:7;44119:22;:31::i;:::-;;43993:165;;:::o;46911:100::-;46994:9;46911:100;:::o;46822:83::-;46893:4;46822:83;:::o;47245:255::-;-1:-1:-1;;;;;;;;;;;47373:4:0;:24;;47365:81;;;;-1:-1:-1;;;47365:81:0;;;;;;;:::i;:::-;47459:33;47478:4;47484:7;47459:18;:33::i;:::-;47245:255;;:::o;10177:215::-;10265:4;10282:80;10291:12;:10;:12::i;:::-;10305:7;10351:10;10314:11;:25;10326:12;:10;:12::i;:::-;-1:-1:-1;;;;;10314:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;10314:25:0;;;:34;;;;;;;;;;:47;;;;:::i;48568:165::-;48621:34;45890:24;48642:12;:10;:12::i;48621:34::-;48613:91;;;;-1:-1:-1;;;48613:91:0;;;;;;;:::i;:::-;48715:10;:8;:10::i;:::-;48568:165::o;47700:277::-;47808:5;:3;:5::i;:::-;47798:6;47776:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:37;;47768:74;;;;-1:-1:-1;;;47768:74:0;;;;;;;:::i;:::-;47861:34;45821:24;47882:12;:10;:12::i;47861:34::-;47853:88;;;;-1:-1:-1;;;47853:88:0;;;;;;;:::i;:::-;47952:17;47958:2;47962:6;47952:5;:17::i;15790:91::-;15846:27;15852:12;:10;:12::i;:::-;15866:6;15846:5;:27::i;17614:86::-;17685:7;;;;17614:86;:::o;45921:72::-;-1:-1:-1;;;;;;;;;;;45921:72:0;:::o;7819:127::-;-1:-1:-1;;;;;7920:18:0;7893:7;7920:18;;;:9;:18;;;;;;;7819:127::o;16200:332::-;16277:24;16304:32;16314:7;16323:12;:10;:12::i;16304:32::-;16277:59;;16375:6;16355:16;:26;;16347:75;;;;-1:-1:-1;;;16347:75:0;;;;;;;:::i;:::-;16433:58;16442:7;16451:12;:10;:12::i;:::-;16465:25;16484:6;16465:16;:25;:::i;16433:58::-;16502:22;16508:7;16517:6;16502:5;:22::i;48191:159::-;48242:34;45890:24;48263:12;:10;:12::i;48242:34::-;48234:89;;;;-1:-1:-1;;;48234:89:0;;;;;;;:::i;:::-;48334:8;:6;:8::i;43448:145::-;43530:7;43557:18;;;:12;:18;;;;;:28;;43579:5;43557:21;:28::i;:::-;43550:35;43448:145;-1:-1:-1;;;43448:145:0:o;27932:139::-;28010:4;28034:12;;;;;;;;;;;-1:-1:-1;;;;;28034:29:0;;;;;;;;;;;;;;;27932:139::o;6747:104::-;6803:13;6836:7;6829:14;;;;;:::i;25897:49::-;25942:4;25897:49;:::o;10895:377::-;10988:4;11005:24;11032:11;:25;11044:12;:10;:12::i;:::-;-1:-1:-1;;;;;11032:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;11032:25:0;;;:34;;;;;;;;;;;-1:-1:-1;11085:35:0;;;;11077:85;;;;-1:-1:-1;;;11077:85:0;;;;;;;:::i;:::-;11173:67;11182:12;:10;:12::i;:::-;11196:7;11205:34;11224:15;11205:16;:34;:::i;11173:67::-;-1:-1:-1;11260:4:0;;10895:377;-1:-1:-1;;;10895:377:0:o;8159:175::-;8245:4;8262:42;8272:12;:10;:12::i;:::-;8286:9;8297:6;8262:9;:42::i;43767:134::-;43839:7;43866:18;;;:12;:18;;;;;:27;;:25;:27::i;45783:62::-;45821:24;45783:62;:::o;44251:170::-;44337:31;44354:4;44360:7;44337:16;:31::i;:::-;44379:18;;;;:12;:18;;;;;:34;;44405:7;44379:25;:34::i;8397:151::-;-1:-1:-1;;;;;8513:18:0;;;8486:7;8513:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8397:151::o;45852:62::-;45890:24;45852:62;:::o;47130:107::-;47192:37;-1:-1:-1;;;;;;;;;;;47221:7:0;47192:10;:37::i;31168:112::-;31247:25;31258:4;31264:7;31247:10;:25::i;38756:152::-;38826:4;38850:50;38855:3;-1:-1:-1;;;;;38875:23:0;;38850:4;:50::i;27623:217::-;27708:4;-1:-1:-1;;;;;;27732:47:0;;-1:-1:-1;;;27732:47:0;;:100;;;27796:36;27820:11;27796:23;:36::i;4115:98::-;4195:10;4115:98;:::o;14251:346::-;-1:-1:-1;;;;;14353:19:0;;14345:68;;;;-1:-1:-1;;;14345:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14432:21:0;;14424:68;;;;-1:-1:-1;;;14424:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14505:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;14557:32;;;;;14535:6;;14557:32;:::i;:::-;;;;;;;;14251:346;;;:::o;11762:604::-;-1:-1:-1;;;;;11868:20:0;;11860:70;;;;-1:-1:-1;;;11860:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11949:23:0;;11941:71;;;;-1:-1:-1;;;11941:71:0;;;;;;;:::i;:::-;12025:47;12046:6;12054:9;12065:6;12025:20;:47::i;:::-;-1:-1:-1;;;;;12109:17:0;;12085:21;12109:17;;;:9;:17;;;;;;12145:23;;;;12137:74;;;;-1:-1:-1;;;12137:74:0;;;;;;;:::i;:::-;12242:22;12258:6;12242:13;:22;:::i;:::-;-1:-1:-1;;;;;12222:17:0;;;;;;;:9;:17;;;;;;:42;;;;12275:20;;;;;;;;:30;;12299:6;;12222:17;12275:30;;12299:6;;12275:30;:::i;:::-;;;;;;;;12340:9;-1:-1:-1;;;;;12323:35:0;12332:6;-1:-1:-1;;;;;12323:35:0;;12351:6;12323:35;;;;;;:::i;:::-;;;;;;;;11762:604;;;;:::o;29319:147::-;29402:18;29415:4;29402:12;:18::i;:::-;27501:30;27512:4;27518:12;:10;:12::i;:::-;27501:10;:30::i;:::-;29433:25:::1;29444:4;29450:7;29433:10;:25::i;44516:174::-:0;44604:33;44623:4;44629:7;44604:18;:33::i;18673:120::-;18217:8;:6;:8::i;:::-;18209:41;;;;-1:-1:-1;;;18209:41:0;;;;;;;:::i;:::-;18732:7:::1;:15:::0;;-1:-1:-1;;18732:15:0::1;::::0;;18763:22:::1;18772:12;:10;:12::i;:::-;18763:22;;;;;;:::i;:::-;;;;;;;;18673:120::o:0;12648:338::-;-1:-1:-1;;;;;12732:21:0;;12724:65;;;;-1:-1:-1;;;12724:65:0;;;;;;;:::i;:::-;12802:49;12831:1;12835:7;12844:6;12802:20;:49::i;:::-;12880:6;12864:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;12897:18:0;;;;;;:9;:18;;;;;:28;;12919:6;;12897:18;:28;;12919:6;;12897:28;:::i;:::-;;;;-1:-1:-1;;12941:37:0;;-1:-1:-1;;;;;12941:37:0;;;12958:1;;12941:37;;;;12971:6;;12941:37;:::i;:::-;;;;;;;;12648:338;;:::o;13319:494::-;-1:-1:-1;;;;;13403:21:0;;13395:67;;;;-1:-1:-1;;;13395:67:0;;;;;;;:::i;:::-;13475:49;13496:7;13513:1;13517:6;13475:20;:49::i;:::-;-1:-1:-1;;;;;13562:18:0;;13537:22;13562:18;;;:9;:18;;;;;;13599:24;;;;13591:71;;;;-1:-1:-1;;;13591:71:0;;;;;;;:::i;:::-;13694:23;13711:6;13694:14;:23;:::i;:::-;-1:-1:-1;;;;;13673:18:0;;;;;;:9;:18;;;;;:44;;;;13728:12;:22;;13744:6;;13673:18;13728:22;;13744:6;;13728:22;:::i;:::-;;;;-1:-1:-1;;13768:37:0;;13794:1;;-1:-1:-1;;;;;13768:37:0;;;;;;;13798:6;;13768:37;:::i;18414:118::-;17940:8;:6;:8::i;:::-;17939:9;17931:38;;;;-1:-1:-1;;;17931:38:0;;;;;;;:::i;:::-;18474:7:::1;:14:::0;;-1:-1:-1;;18474:14:0::1;18484:4;18474:14;::::0;;18504:20:::1;18511:12;:10;:12::i;40042:158::-:0;40116:7;40167:22;40171:3;40183:5;40167:3;:22::i;39581:117::-;39644:7;39671:19;39679:3;39671:7;:19::i;29711:149::-;29795:18;29808:4;29795:12;:18::i;:::-;27501:30;27512:4;27518:12;:10;:12::i;27501:30::-;29826:26:::1;29838:4;29844:7;29826:11;:26::i;39084:158::-:0;39157:4;39181:53;39189:3;-1:-1:-1;;;;;39209:23:0;;39181:7;:53::i;31615:229::-;31690:22;31698:4;31704:7;31690;:22::i;:::-;31685:152;;31729:6;:12;;;;;;;;;;;-1:-1:-1;;;;;31729:29:0;;;;;;;;;:36;;-1:-1:-1;;31729:36:0;31761:4;31729:36;;;31812:12;:10;:12::i;:::-;-1:-1:-1;;;;;31785:40:0;31803:7;-1:-1:-1;;;;;31785:40:0;31797:4;31785:40;;;;;;;;;;31615:229;;:::o;33811:414::-;33874:4;33896:21;33906:3;33911:5;33896:9;:21::i;:::-;33891:327;;-1:-1:-1;33934:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;34117:18;;34095:19;;;:12;;;:19;;;;;;:40;;;;34150:11;;33891:327;-1:-1:-1;34201:5:0;34194:12;;23349:157;-1:-1:-1;;;;;;23458:40:0;;-1:-1:-1;;;23458:40:0;23349:157;;;:::o;48741:372::-;48883:37;-1:-1:-1;;;;;;;;;;;48909:10:0;48883:7;:37::i;:::-;48881:40;48873:86;;;;-1:-1:-1;;;48873:86:0;;;;;;;:::i;:::-;48981:29;-1:-1:-1;;;;;;;;;;;49007:2:0;48981:7;:29::i;:::-;48979:32;48971:79;;;;-1:-1:-1;;;48971:79:0;;;;;;;:::i;:::-;49061:44;49088:4;49094:2;49098:6;49061:26;:44::i;28361:384::-;28441:22;28449:4;28455:7;28441;:22::i;:::-;28437:301;;28573:41;28601:7;-1:-1:-1;;;;;28573:41:0;28611:2;28573:19;:41::i;:::-;28671:38;28699:4;28706:2;28671:19;:38::i;:::-;28494:230;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;28494:230:0;;;;;;;;;;-1:-1:-1;;;28480:246:0;;;;;;;:::i;30367:218::-;30474:12;:10;:12::i;:::-;-1:-1:-1;;;;;30463:23:0;:7;-1:-1:-1;;;;;30463:23:0;;30455:83;;;;-1:-1:-1;;;30455:83:0;;;;;;;:::i;:::-;30551:26;30563:4;30569:7;30551:11;:26::i;36708:204::-;36803:18;;36775:7;;36803:26;-1:-1:-1;36795:73:0;;;;-1:-1:-1;;;36795:73:0;;;;;;;:::i;:::-;36886:3;:11;;36898:5;36886:18;;;;;;-1:-1:-1;;;36886:18:0;;;;;;;;;;;;;;;;;36879:25;;36708:204;;;;:::o;36255:109::-;36338:18;;36255:109::o;31852:230::-;31927:22;31935:4;31941:7;31927;:22::i;:::-;31923:152;;;31998:5;31966:12;;;;;;;;;;;-1:-1:-1;;;;;31966:29:0;;;;;;;;;:37;;-1:-1:-1;;31966:37:0;;;32050:12;:10;:12::i;:::-;-1:-1:-1;;;;;32023:40:0;32041:7;-1:-1:-1;;;;;32023:40:0;32035:4;32023:40;;;;;;;;;;31852:230;;:::o;34401:1553::-;34467:4;34606:19;;;:12;;;:19;;;;;;34642:15;;34638:1309;;35004:21;35028:14;35041:1;35028:10;:14;:::i;:::-;35077:18;;35004:38;;-1:-1:-1;35057:17:0;;35077:22;;35098:1;;35077:22;:::i;:::-;35057:42;;35344:17;35364:3;:11;;35376:9;35364:22;;;;;;-1:-1:-1;;;35364:22:0;;;;;;;;;;;;;;;;;35344:42;;35510:9;35481:3;:11;;35493:13;35481:26;;;;;;-1:-1:-1;;;35481:26:0;;;;;;;;;;;;;;;;;;;;:38;;;;35587:23;;;:12;;;:23;;;;;;:36;;;35748:17;;35587:3;;35748:17;;;-1:-1:-1;;;35748:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;35843:3;:12;;:19;35856:5;35843:19;;;;;;;;;;;35836:26;;;35886:4;35879:11;;;;;;;;34638:1309;35930:5;35923:12;;;;;36040:129;36113:4;36137:19;;;:12;;;;;:19;;;;;;:24;;;36040:129::o;19393:238::-;19502:44;19529:4;19535:2;19539:6;19502:26;:44::i;:::-;19568:8;:6;:8::i;:::-;19567:9;19559:64;;;;-1:-1:-1;;;19559:64:0;;;;;;;:::i;21246:447::-;21321:13;21347:19;21379:10;21383:6;21379:1;:10;:::i;:::-;:14;;21392:1;21379:14;:::i;:::-;21369:25;;;;;;-1:-1:-1;;;21369:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21369:25:0;;21347:47;;-1:-1:-1;;;21405:6:0;21412:1;21405:9;;;;;;-1:-1:-1;;;21405:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;21405:15:0;;;;;;;;;-1:-1:-1;;;21431:6:0;21438:1;21431:9;;;;;;-1:-1:-1;;;21431:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;21431:15:0;;;;;;;;-1:-1:-1;21462:9:0;21474:10;21478:6;21474:1;:10;:::i;:::-;:14;;21487:1;21474:14;:::i;:::-;21462:26;;21457:131;21494:1;21490;:5;21457:131;;;-1:-1:-1;;;21538:5:0;21546:3;21538:11;21529:21;;;;;-1:-1:-1;;;21529:21:0;;;;;;;;;;;;21517:6;21524:1;21517:9;;;;;;-1:-1:-1;;;21517:9:0;;;;;;;;;;;;:33;-1:-1:-1;;;;;21517:33:0;;;;;;;;-1:-1:-1;21575:1:0;21565:11;;;;;21497:3;;;:::i;:::-;;;21457:131;;;-1:-1:-1;21606:10:0;;21598:55;;;;-1:-1:-1;;;21598:55:0;;;;;;;:::i;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:1;;1364:120;-1:-1:-1;1364:120:1:o;1489:266::-;;;1618:2;1606:9;1597:7;1593:23;1589:32;1586:2;;;1639:6;1631;1624:22;1586:2;1680:9;1667:23;1657:33;;1709:40;1745:2;1734:9;1730:18;1709:40;:::i;1760:258::-;;;1889:2;1877:9;1868:7;1864:23;1860:32;1857:2;;;1910:6;1902;1895:22;1857:2;-1:-1:-1;;1938:23:1;;;2008:2;1993:18;;;1980:32;;-1:-1:-1;1847:171:1:o;2023:306::-;;2134:2;2122:9;2113:7;2109:23;2105:32;2102:2;;;2155:6;2147;2140:22;2102:2;2186:23;;-1:-1:-1;;;;;;2238:32:1;;2228:43;;2218:2;;2290:6;2282;2275:22;2529:786;;2940:25;2935:3;2928:38;2995:6;2989:13;3011:62;3066:6;3061:2;3056:3;3052:12;3045:4;3037:6;3033:17;3011:62;:::i;:::-;-1:-1:-1;;;3132:2:1;3092:16;;;3124:11;;;3117:40;3182:13;;3204:63;3182:13;3253:2;3245:11;;3238:4;3226:17;;3204:63;:::i;:::-;3287:17;3306:2;3283:26;;2918:397;-1:-1:-1;;;;2918:397:1:o;3320:203::-;-1:-1:-1;;;;;3484:32:1;;;;3466:51;;3454:2;3439:18;;3421:102::o;3528:187::-;3693:14;;3686:22;3668:41;;3656:2;3641:18;;3623:92::o;3720:177::-;3866:25;;;3854:2;3839:18;;3821:76::o;3902:383::-;;4051:2;4040:9;4033:21;4083:6;4077:13;4126:6;4121:2;4110:9;4106:18;4099:34;4142:66;4201:6;4196:2;4185:9;4181:18;4176:2;4168:6;4164:15;4142:66;:::i;:::-;4269:2;4248:15;-1:-1:-1;;4244:29:1;4229:45;;;;4276:2;4225:54;;4023:262;-1:-1:-1;;4023:262:1:o;4290:399::-;4492:2;4474:21;;;4531:2;4511:18;;;4504:30;4570:34;4565:2;4550:18;;4543:62;-1:-1:-1;;;4636:2:1;4621:18;;4614:33;4679:3;4664:19;;4464:225::o;4694:398::-;4896:2;4878:21;;;4935:2;4915:18;;;4908:30;4974:34;4969:2;4954:18;;4947:62;-1:-1:-1;;;5040:2:1;5025:18;;5018:32;5082:3;5067:19;;4868:224::o;5097:356::-;5299:2;5281:21;;;5318:18;;;5311:30;5377:34;5372:2;5357:18;;5350:62;5444:2;5429:18;;5271:182::o;5458:399::-;5660:2;5642:21;;;5699:2;5679:18;;;5672:30;5738:34;5733:2;5718:18;;5711:62;-1:-1:-1;;;5804:2:1;5789:18;;5782:33;5847:3;5832:19;;5632:225::o;5862:397::-;6064:2;6046:21;;;6103:2;6083:18;;;6076:30;6142:34;6137:2;6122:18;;6115:62;-1:-1:-1;;;6208:2:1;6193:18;;6186:31;6249:3;6234:19;;6036:223::o;6264:344::-;6466:2;6448:21;;;6505:2;6485:18;;;6478:30;-1:-1:-1;;;6539:2:1;6524:18;;6517:50;6599:2;6584:18;;6438:170::o;6613:348::-;6815:2;6797:21;;;6854:2;6834:18;;;6827:30;6893:26;6888:2;6873:18;;6866:54;6952:2;6937:18;;6787:174::o;6966:398::-;7168:2;7150:21;;;7207:2;7187:18;;;7180:30;7246:34;7241:2;7226:18;;7219:62;-1:-1:-1;;;7312:2:1;7297:18;;7290:32;7354:3;7339:19;;7140:224::o;7369:398::-;7571:2;7553:21;;;7610:2;7590:18;;;7583:30;7649:34;7644:2;7629:18;;7622:62;-1:-1:-1;;;7715:2:1;7700:18;;7693:32;7757:3;7742:19;;7543:224::o;7772:408::-;7974:2;7956:21;;;8013:2;7993:18;;;7986:30;8052:34;8047:2;8032:18;;8025:62;-1:-1:-1;;;8118:2:1;8103:18;;8096:42;8170:3;8155:19;;7946:234::o;8185:402::-;8387:2;8369:21;;;8426:2;8406:18;;;8399:30;8465:34;8460:2;8445:18;;8438:62;-1:-1:-1;;;8531:2:1;8516:18;;8509:36;8577:3;8562:19;;8359:228::o;8592:405::-;8794:2;8776:21;;;8833:2;8813:18;;;8806:30;8872:34;8867:2;8852:18;;8845:62;-1:-1:-1;;;8938:2:1;8923:18;;8916:39;8987:3;8972:19;;8766:231::o;9002:340::-;9204:2;9186:21;;;9243:2;9223:18;;;9216:30;-1:-1:-1;;;9277:2:1;9262:18;;9255:46;9333:2;9318:18;;9176:166::o;9347:406::-;9549:2;9531:21;;;9588:2;9568:18;;;9561:30;9627:34;9622:2;9607:18;;9600:62;-1:-1:-1;;;9693:2:1;9678:18;;9671:40;9743:3;9728:19;;9521:232::o;9758:408::-;9960:2;9942:21;;;9999:2;9979:18;;;9972:30;10038:34;10033:2;10018:18;;10011:62;-1:-1:-1;;;10104:2:1;10089:18;;10082:42;10156:3;10141:19;;9932:234::o;10171:404::-;10373:2;10355:21;;;10412:2;10392:18;;;10385:30;10451:34;10446:2;10431:18;;10424:62;-1:-1:-1;;;10517:2:1;10502:18;;10495:38;10565:3;10550:19;;10345:230::o;10580:400::-;10782:2;10764:21;;;10821:2;10801:18;;;10794:30;10860:34;10855:2;10840:18;;10833:62;-1:-1:-1;;;10926:2:1;10911:18;;10904:34;10970:3;10955:19;;10754:226::o;10985:397::-;11187:2;11169:21;;;11226:2;11206:18;;;11199:30;11265:34;11260:2;11245:18;;11238:62;-1:-1:-1;;;11331:2:1;11316:18;;11309:31;11372:3;11357:19;;11159:223::o;11387:401::-;11589:2;11571:21;;;11628:2;11608:18;;;11601:30;11667:34;11662:2;11647:18;;11640:62;-1:-1:-1;;;11733:2:1;11718:18;;11711:35;11778:3;11763:19;;11561:227::o;11793:400::-;11995:2;11977:21;;;12034:2;12014:18;;;12007:30;12073:34;12068:2;12053:18;;12046:62;-1:-1:-1;;;12139:2:1;12124:18;;12117:34;12183:3;12168:19;;11967:226::o;12198:401::-;12400:2;12382:21;;;12439:2;12419:18;;;12412:30;12478:34;12473:2;12458:18;;12451:62;-1:-1:-1;;;12544:2:1;12529:18;;12522:35;12589:3;12574:19;;12372:227::o;12604:411::-;12806:2;12788:21;;;12845:2;12825:18;;;12818:30;12884:34;12879:2;12864:18;;12857:62;-1:-1:-1;;;12950:2:1;12935:18;;12928:45;13005:3;12990:19;;12778:237::o;13020:355::-;13222:2;13204:21;;;13261:2;13241:18;;;13234:30;13300:33;13295:2;13280:18;;13273:61;13366:2;13351:18;;13194:181::o;13380:406::-;13582:2;13564:21;;;13621:2;13601:18;;;13594:30;13660:34;13655:2;13640:18;;13633:62;-1:-1:-1;;;13726:2:1;13711:18;;13704:40;13776:3;13761:19;;13554:232::o;13973:184::-;14145:4;14133:17;;;;14115:36;;14103:2;14088:18;;14070:87::o;14162:128::-;;14233:1;14229:6;14226:1;14223:13;14220:2;;;14239:18;;:::i;:::-;-1:-1:-1;14275:9:1;;14210:80::o;14295:168::-;;14401:1;14397;14393:6;14389:14;14386:1;14383:21;14378:1;14371:9;14364:17;14360:45;14357:2;;;14408:18;;:::i;:::-;-1:-1:-1;14448:9:1;;14347:116::o;14468:125::-;;14536:1;14533;14530:8;14527:2;;;14541:18;;:::i;:::-;-1:-1:-1;14578:9:1;;14517:76::o;14598:258::-;14670:1;14680:113;14694:6;14691:1;14688:13;14680:113;;;14770:11;;;14764:18;14751:11;;;14744:39;14716:2;14709:10;14680:113;;;14811:6;14808:1;14805:13;14802:2;;;14846:1;14837:6;14832:3;14828:16;14821:27;14802:2;;14651:205;;;:::o;14861:136::-;;14928:5;14918:2;;14937:18;;:::i;:::-;-1:-1:-1;;;14973:18:1;;14908:89::o;15002:380::-;15087:1;15077:12;;15134:1;15124:12;;;15145:2;;15199:4;15191:6;15187:17;15177:27;;15145:2;15252;15244:6;15241:14;15221:18;15218:38;15215:2;;;15298:10;15293:3;15289:20;15286:1;15279:31;15333:4;15330:1;15323:15;15361:4;15358:1;15351:15;15215:2;;15057:325;;;:::o;15387:127::-;15448:10;15443:3;15439:20;15436:1;15429:31;15479:4;15476:1;15469:15;15503:4;15500:1;15493:15
Swarm Source
ipfs://f968f37a0c6f84434463d6961320e61a50b536cedda1f59f08a8faaa0f986c79
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.