Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
278,237,314.354574732562458799 CHP
Holders
103
Market
Price
$0.05 @ 0.000018 ETH (-0.43%)
Onchain Market Cap
$14,858,707.30
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,000 CHPValue
$160.21 ( ~0.0528571617713892 Eth) [0.0011%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CoinPokerChipsToken
Compiler Version
v0.7.4+commit.3f05b770
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-11-19 */ // File: contracts/IERC2612Permit.sol pragma solidity 0.7.4; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC2612Permit { /** * @dev Sets `amount` as the allowance of `spender` over `owner`'s tokens, * given `owner`'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current ERC2612 nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Counters.sol pragma solidity >=0.6.0 <0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath} * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never * directly accessed. */ library Counters { using SafeMath for uint256; struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { // The {SafeMath} overflow check can be skipped here, see the comment at the top counter._value += 1; } function decrement(Counter storage counter) internal { counter._value = counter._value.sub(1); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity >=0.6.0 <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/SafeERC20.sol pragma solidity >=0.6.0 <0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity >=0.6.0 <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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity >=0.6.0 <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 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view 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); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); 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); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol pragma solidity >=0.6.0 <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 { using SafeMath for uint256; /** * @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 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } // File: contracts/ERC20Permit.sol pragma solidity 0.7.4; abstract contract ERC20Permit is ERC20Burnable, IERC2612Permit { using Counters for Counters.Counter; mapping(address => Counters.Counter) private _nonces; // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9; bytes32 public DOMAIN_SEPARATOR; constructor() internal { uint256 chainID; assembly { chainID := chainid() } DOMAIN_SEPARATOR = keccak256( abi.encode( keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"), keccak256(bytes(name())), keccak256(bytes("1")), // Version chainID, address(this) ) ); } /** * @dev See {IERC2612Permit-permit}. * */ function permit( address owner, address spender, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual override { require(block.timestamp <= deadline, "Permit: expired deadline"); bytes32 hashStruct = keccak256( abi.encode(PERMIT_TYPEHASH, owner, spender, amount, _nonces[owner].current(), deadline) ); bytes32 _hash = keccak256(abi.encodePacked(uint16(0x1901), DOMAIN_SEPARATOR, hashStruct)); address signer = ecrecover(_hash, v, r, s); require(signer != address(0) && signer == owner, "ZeroSwapPermit: Invalid signature"); _nonces[owner].increment(); _approve(owner, spender, amount); } /** * @dev See {IERC2612Permit-nonces}. */ function nonces(address owner) public view override returns (uint256) { return _nonces[owner].current(); } } // File: contracts/CoinPokerChipsToken.sol pragma solidity 0.7.4; // import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol"; // import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/SafeERC20.sol"; // import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol"; // import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/SafeMath.sol"; /** * @title Token * @dev Burnable ERC20 Token */ contract CoinPokerChipsToken is ERC20Permit, Ownable { uint256 public constant MAX_CAP = 354786434702574732562458800; address public governance; event RecoverToken(address indexed token, address indexed destination, uint256 indexed amount); modifier onlyGovernance() { require(msg.sender == governance, "!governance"); _; } constructor() ERC20("CoinPoker Chips", "CHP") { governance = msg.sender; _mint(governance, MAX_CAP); } /** * @notice Function to set governance contract * Owner is assumed to be governance * @param _governance Address of governance contract */ function setGovernance(address _governance) public onlyGovernance { governance = _governance; } /** * @notice Function to recover funds * Owner is assumed to be governance or trusted party for helping users * @param token Address of token to be rescued * @param destination User address * @param amount Amount of tokens */ function recoverToken( address token, address destination, uint256 amount ) external onlyGovernance { require(token != destination, "Invalid address"); require(IERC20(token).transfer(destination, amount), "Retrieve failed"); emit RecoverToken(token, destination, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"destination","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RecoverToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"destination","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600f81526020016e436f696e506f6b657220436869707360881b8152506040518060400160405280600381526020016204348560ec1b81525081600390805190602001906200006e929190620003e9565b50805162000084906004906020840190620003e9565b50506005805460ff1916601217905550467f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f620000c0620001d5565b805160209182012060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606084015260808301939093523060a0808401919091528351808403909101815260c0909201909252805191012060075560006200014c6200026f565b600880546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600980546001600160a01b031916331790819055620001cf906001600160a01b03166b012578f329e4b2af2354e8b062000273565b62000495565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015620002655780601f10620002395761010080835404028352916020019162000265565b820191906000526020600020905b8154815290600101906020018083116200024757829003601f168201915b5050505050905090565b3390565b6001600160a01b038216620002cf576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620002dd6000838362000382565b620002f9816002546200038760201b62000eac1790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200032c91839062000eac62000387821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082820183811015620003e2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200042157600085556200046c565b82601f106200043c57805160ff19168380011785556200046c565b828001600101855582156200046c579182015b828111156200046c5782518255916020019190600101906200044f565b506200047a9291506200047e565b5090565b5b808211156200047a57600081556001016200047f565b61151f80620004a56000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806379cc6790116100c3578063a9059cbb1161007c578063a9059cbb146103f9578063ab033ea914610425578063d505accf1461044b578063d669e1d41461049c578063dd62ed3e146104a4578063f2fde38b146104d257610158565b806379cc6790146103355780637ecebe00146103615780638da5cb5b1461038757806395d89b411461038f578063a457c2d714610397578063a7229fd9146103c357610158565b80633644e515116101155780633644e51514610290578063395093511461029857806342966c68146102c45780635aa6e675146102e357806370a0823114610307578063715018a61461032d57610158565b806306fdde031461015d578063095ea7b3146101da57806318160ddd1461021a57806323b872dd1461023457806330adf81f1461026a578063313ce56714610272575b600080fd5b6101656104f8565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019f578181015183820152602001610187565b50505050905090810190601f1680156101cc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610206600480360360408110156101f057600080fd5b506001600160a01b03813516906020013561058e565b604080519115158252519081900360200190f35b6102226105ab565b60408051918252519081900360200190f35b6102066004803603606081101561024a57600080fd5b506001600160a01b038135811691602081013590911690604001356105b1565b610222610638565b61027a61065c565b6040805160ff9092168252519081900360200190f35b610222610665565b610206600480360360408110156102ae57600080fd5b506001600160a01b03813516906020013561066b565b6102e1600480360360208110156102da57600080fd5b50356106b9565b005b6102eb6106cd565b604080516001600160a01b039092168252519081900360200190f35b6102226004803603602081101561031d57600080fd5b50356001600160a01b03166106dc565b6102e16106f7565b6102e16004803603604081101561034b57600080fd5b506001600160a01b0381351690602001356107ab565b6102226004803603602081101561037757600080fd5b50356001600160a01b0316610805565b6102eb61082c565b61016561083b565b610206600480360360408110156103ad57600080fd5b506001600160a01b03813516906020013561089c565b6102e1600480360360608110156103d957600080fd5b506001600160a01b03813581169160208101359091169060400135610904565b6102066004803603604081101561040f57600080fd5b506001600160a01b038135169060200135610ab6565b6102e16004803603602081101561043b57600080fd5b50356001600160a01b0316610aca565b6102e1600480360360e081101561046157600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135610b39565b610222610d66565b610222600480360360408110156104ba57600080fd5b506001600160a01b0381358116916020013516610d76565b6102e1600480360360208110156104e857600080fd5b50356001600160a01b0316610da1565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105845780601f1061055957610100808354040283529160200191610584565b820191906000526020600020905b81548152906001019060200180831161056757829003601f168201915b5050505050905090565b60006105a261059b610f0d565b8484610f11565b50600192915050565b60025490565b60006105be848484610ffd565b61062e846105ca610f0d565b6106298560405180606001604052806028815260200161140f602891396001600160a01b038a16600090815260016020526040812090610608610f0d565b6001600160a01b031681526020810191909152604001600020549190611158565b610f11565b5060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60055460ff1690565b60075481565b60006105a2610678610f0d565b846106298560016000610689610f0d565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610eac565b6106ca6106c4610f0d565b826111ef565b50565b6009546001600160a01b031681565b6001600160a01b031660009081526020819052604090205490565b6106ff610f0d565b6008546001600160a01b03908116911614610761576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6008546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600880546001600160a01b0319169055565b60006107e282604051806060016040528060248152602001611437602491396107db866107d6610f0d565b610d76565b9190611158565b90506107f6836107f0610f0d565b83610f11565b61080083836111ef565b505050565b6001600160a01b0381166000908152600660205260408120610826906112eb565b92915050565b6008546001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105845780601f1061055957610100808354040283529160200191610584565b60006105a26108a9610f0d565b84610629856040518060600160405280602581526020016114c560259139600160006108d3610f0d565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611158565b6009546001600160a01b03163314610951576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b816001600160a01b0316836001600160a01b031614156109aa576040805162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b604482015290519081900360640190fd5b826001600160a01b031663a9059cbb83836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610a0157600080fd5b505af1158015610a15573d6000803e3d6000fd5b505050506040513d6020811015610a2b57600080fd5b5051610a70576040805162461bcd60e51b815260206004820152600f60248201526e14995d1c9a595d994819985a5b1959608a1b604482015290519081900360640190fd5b80826001600160a01b0316846001600160a01b03167f16a1412f01b73c390eb2548427101644aa86c1443c272f73df00fb74c48fe49960405160405180910390a4505050565b60006105a2610ac3610f0d565b8484610ffd565b6009546001600160a01b03163314610b17576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b83421115610b8e576040805162461bcd60e51b815260206004820152601860248201527f5065726d69743a206578706972656420646561646c696e650000000000000000604482015290519081900360640190fd5b6001600160a01b03871660009081526006602052604081207f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c990899089908990610bd7906112eb565b604080516020808201979097526001600160a01b0395861681830152939094166060840152608083019190915260a082015260c08082018990528251808303909101815260e08201835280519084012060075461190160f01b610100840152610102830152610122808301829052835180840390910181526101428301808552815191860191909120600091829052610162840180865281905260ff8a166101828501526101a284018990526101c28401889052935191955092936001926101e280820193601f1981019281900390910190855afa158015610cbd573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615801590610cf35750896001600160a01b0316816001600160a01b0316145b610d2e5760405162461bcd60e51b81526004018080602001828103825260218152602001806113ee6021913960400191505060405180910390fd5b6001600160a01b038a166000908152600660205260409020610d4f906112ef565b610d5a8a8a8a610f11565b50505050505050505050565b6b012578f329e4b2af2354e8b081565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610da9610f0d565b6008546001600160a01b03908116911614610e0b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610e505760405162461bcd60e51b81526004018080602001828103825260268152602001806113806026913960400191505060405180910390fd5b6008546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015610f06576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316610f565760405162461bcd60e51b81526004018080602001828103825260248152602001806114a16024913960400191505060405180910390fd5b6001600160a01b038216610f9b5760405162461bcd60e51b81526004018080602001828103825260228152602001806113a66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166110425760405162461bcd60e51b815260040180806020018281038252602581526020018061147c6025913960400191505060405180910390fd5b6001600160a01b0382166110875760405162461bcd60e51b815260040180806020018281038252602381526020018061133b6023913960400191505060405180910390fd5b611092838383610800565b6110cf816040518060600160405280602681526020016113c8602691396001600160a01b0386166000908152602081905260409020549190611158565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546110fe9082610eac565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156111e75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156111ac578181015183820152602001611194565b50505050905090810190601f1680156111d95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0382166112345760405162461bcd60e51b815260040180806020018281038252602181526020018061145b6021913960400191505060405180910390fd5b61124082600083610800565b61127d8160405180606001604052806022815260200161135e602291396001600160a01b0385166000908152602081905260409020549190611158565b6001600160a01b0383166000908152602081905260409020556002546112a390826112f8565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b5490565b80546001019055565b6000610f0683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061115856fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63655a65726f537761705065726d69743a20496e76616c6964207369676e617475726545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c37e75a042f6943914d290a4e79cd6a25e651cb02d854ceee27e4e25a01d1f9364736f6c63430007040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c806379cc6790116100c3578063a9059cbb1161007c578063a9059cbb146103f9578063ab033ea914610425578063d505accf1461044b578063d669e1d41461049c578063dd62ed3e146104a4578063f2fde38b146104d257610158565b806379cc6790146103355780637ecebe00146103615780638da5cb5b1461038757806395d89b411461038f578063a457c2d714610397578063a7229fd9146103c357610158565b80633644e515116101155780633644e51514610290578063395093511461029857806342966c68146102c45780635aa6e675146102e357806370a0823114610307578063715018a61461032d57610158565b806306fdde031461015d578063095ea7b3146101da57806318160ddd1461021a57806323b872dd1461023457806330adf81f1461026a578063313ce56714610272575b600080fd5b6101656104f8565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019f578181015183820152602001610187565b50505050905090810190601f1680156101cc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610206600480360360408110156101f057600080fd5b506001600160a01b03813516906020013561058e565b604080519115158252519081900360200190f35b6102226105ab565b60408051918252519081900360200190f35b6102066004803603606081101561024a57600080fd5b506001600160a01b038135811691602081013590911690604001356105b1565b610222610638565b61027a61065c565b6040805160ff9092168252519081900360200190f35b610222610665565b610206600480360360408110156102ae57600080fd5b506001600160a01b03813516906020013561066b565b6102e1600480360360208110156102da57600080fd5b50356106b9565b005b6102eb6106cd565b604080516001600160a01b039092168252519081900360200190f35b6102226004803603602081101561031d57600080fd5b50356001600160a01b03166106dc565b6102e16106f7565b6102e16004803603604081101561034b57600080fd5b506001600160a01b0381351690602001356107ab565b6102226004803603602081101561037757600080fd5b50356001600160a01b0316610805565b6102eb61082c565b61016561083b565b610206600480360360408110156103ad57600080fd5b506001600160a01b03813516906020013561089c565b6102e1600480360360608110156103d957600080fd5b506001600160a01b03813581169160208101359091169060400135610904565b6102066004803603604081101561040f57600080fd5b506001600160a01b038135169060200135610ab6565b6102e16004803603602081101561043b57600080fd5b50356001600160a01b0316610aca565b6102e1600480360360e081101561046157600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135610b39565b610222610d66565b610222600480360360408110156104ba57600080fd5b506001600160a01b0381358116916020013516610d76565b6102e1600480360360208110156104e857600080fd5b50356001600160a01b0316610da1565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105845780601f1061055957610100808354040283529160200191610584565b820191906000526020600020905b81548152906001019060200180831161056757829003601f168201915b5050505050905090565b60006105a261059b610f0d565b8484610f11565b50600192915050565b60025490565b60006105be848484610ffd565b61062e846105ca610f0d565b6106298560405180606001604052806028815260200161140f602891396001600160a01b038a16600090815260016020526040812090610608610f0d565b6001600160a01b031681526020810191909152604001600020549190611158565b610f11565b5060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60055460ff1690565b60075481565b60006105a2610678610f0d565b846106298560016000610689610f0d565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610eac565b6106ca6106c4610f0d565b826111ef565b50565b6009546001600160a01b031681565b6001600160a01b031660009081526020819052604090205490565b6106ff610f0d565b6008546001600160a01b03908116911614610761576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6008546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600880546001600160a01b0319169055565b60006107e282604051806060016040528060248152602001611437602491396107db866107d6610f0d565b610d76565b9190611158565b90506107f6836107f0610f0d565b83610f11565b61080083836111ef565b505050565b6001600160a01b0381166000908152600660205260408120610826906112eb565b92915050565b6008546001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105845780601f1061055957610100808354040283529160200191610584565b60006105a26108a9610f0d565b84610629856040518060600160405280602581526020016114c560259139600160006108d3610f0d565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611158565b6009546001600160a01b03163314610951576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b816001600160a01b0316836001600160a01b031614156109aa576040805162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b604482015290519081900360640190fd5b826001600160a01b031663a9059cbb83836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610a0157600080fd5b505af1158015610a15573d6000803e3d6000fd5b505050506040513d6020811015610a2b57600080fd5b5051610a70576040805162461bcd60e51b815260206004820152600f60248201526e14995d1c9a595d994819985a5b1959608a1b604482015290519081900360640190fd5b80826001600160a01b0316846001600160a01b03167f16a1412f01b73c390eb2548427101644aa86c1443c272f73df00fb74c48fe49960405160405180910390a4505050565b60006105a2610ac3610f0d565b8484610ffd565b6009546001600160a01b03163314610b17576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b83421115610b8e576040805162461bcd60e51b815260206004820152601860248201527f5065726d69743a206578706972656420646561646c696e650000000000000000604482015290519081900360640190fd5b6001600160a01b03871660009081526006602052604081207f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c990899089908990610bd7906112eb565b604080516020808201979097526001600160a01b0395861681830152939094166060840152608083019190915260a082015260c08082018990528251808303909101815260e08201835280519084012060075461190160f01b610100840152610102830152610122808301829052835180840390910181526101428301808552815191860191909120600091829052610162840180865281905260ff8a166101828501526101a284018990526101c28401889052935191955092936001926101e280820193601f1981019281900390910190855afa158015610cbd573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615801590610cf35750896001600160a01b0316816001600160a01b0316145b610d2e5760405162461bcd60e51b81526004018080602001828103825260218152602001806113ee6021913960400191505060405180910390fd5b6001600160a01b038a166000908152600660205260409020610d4f906112ef565b610d5a8a8a8a610f11565b50505050505050505050565b6b012578f329e4b2af2354e8b081565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610da9610f0d565b6008546001600160a01b03908116911614610e0b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610e505760405162461bcd60e51b81526004018080602001828103825260268152602001806113806026913960400191505060405180910390fd5b6008546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015610f06576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316610f565760405162461bcd60e51b81526004018080602001828103825260248152602001806114a16024913960400191505060405180910390fd5b6001600160a01b038216610f9b5760405162461bcd60e51b81526004018080602001828103825260228152602001806113a66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166110425760405162461bcd60e51b815260040180806020018281038252602581526020018061147c6025913960400191505060405180910390fd5b6001600160a01b0382166110875760405162461bcd60e51b815260040180806020018281038252602381526020018061133b6023913960400191505060405180910390fd5b611092838383610800565b6110cf816040518060600160405280602681526020016113c8602691396001600160a01b0386166000908152602081905260409020549190611158565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546110fe9082610eac565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156111e75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156111ac578181015183820152602001611194565b50505050905090810190601f1680156111d95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0382166112345760405162461bcd60e51b815260040180806020018281038252602181526020018061145b6021913960400191505060405180910390fd5b61124082600083610800565b61127d8160405180606001604052806022815260200161135e602291396001600160a01b0385166000908152602081905260409020549190611158565b6001600160a01b0383166000908152602081905260409020556002546112a390826112f8565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b5490565b80546001019055565b6000610f0683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061115856fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63655a65726f537761705065726d69743a20496e76616c6964207369676e617475726545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c37e75a042f6943914d290a4e79cd6a25e651cb02d854ceee27e4e25a01d1f9364736f6c63430007040033
Deployed Bytecode Sourcemap
40727:1408:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28027:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30133:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30133:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;29102:100;;;:::i;:::-;;;;;;;;;;;;;;;;30784:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30784:321:0;;;;;;;;;;;;;;;;;:::i;38441:108::-;;;:::i;28954:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38558:31;;;:::i;31514:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31514:218:0;;;;;;;;:::i;37375:91::-;;;;;;;;;;;;;;;;-1:-1:-1;37375:91:0;;:::i;:::-;;40857:25;;;:::i;:::-;;;;-1:-1:-1;;;;;40857:25:0;;;;;;;;;;;;;;29265:119;;;;;;;;;;;;;;;;-1:-1:-1;29265:119:0;-1:-1:-1;;;;;29265:119:0;;:::i;25305:148::-;;;:::i;37785:295::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37785:295:0;;;;;;;;:::i;40003:120::-;;;;;;;;;;;;;;;;-1:-1:-1;40003:120:0;-1:-1:-1;;;;;40003:120:0;;:::i;24663:79::-;;;:::i;28229:87::-;;;:::i;32235:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32235:269:0;;;;;;;;:::i;41795:337::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;41795:337:0;;;;;;;;;;;;;;;;;:::i;29597:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29597:175:0;;;;;;;;:::i;41410:109::-;;;;;;;;;;;;;;;;-1:-1:-1;41410:109:0;-1:-1:-1;;;;;41410:109:0;;:::i;39154:781::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39154:781:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;40787:61::-;;;:::i;29835:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29835:151:0;;;;;;;;;;:::i;25608:244::-;;;;;;;;;;;;;;;;-1:-1:-1;25608:244:0;-1:-1:-1;;;;;25608:244:0;;:::i;28027:83::-;28097:5;28090:12;;;;;;;;-1:-1:-1;;28090:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28064:13;;28090:12;;28097:5;;28090:12;;28097:5;28090:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28027:83;:::o;30133:169::-;30216:4;30233:39;30242:12;:10;:12::i;:::-;30256:7;30265:6;30233:8;:39::i;:::-;-1:-1:-1;30290:4:0;30133:169;;;;:::o;29102:100::-;29182:12;;29102:100;:::o;30784:321::-;30890:4;30907:36;30917:6;30925:9;30936:6;30907:9;:36::i;:::-;30954:121;30963:6;30971:12;:10;:12::i;:::-;30985:89;31023:6;30985:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30985:19:0;;;;;;:11;:19;;;;;;31005:12;:10;:12::i;:::-;-1:-1:-1;;;;;30985:33:0;;;;;;;;;;;;-1:-1:-1;30985:33:0;;;:89;:37;:89::i;:::-;30954:8;:121::i;:::-;-1:-1:-1;31093:4:0;30784:321;;;;;:::o;38441:108::-;38483:66;38441:108;:::o;28954:83::-;29020:9;;;;28954:83;:::o;38558:31::-;;;;:::o;31514:218::-;31602:4;31619:83;31628:12;:10;:12::i;:::-;31642:7;31651:50;31690:10;31651:11;:25;31663:12;:10;:12::i;:::-;-1:-1:-1;;;;;31651:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31651:25:0;;;:34;;;;;;;;;;;:38;:50::i;37375:91::-;37431:27;37437:12;:10;:12::i;:::-;37451:6;37431:5;:27::i;:::-;37375:91;:::o;40857:25::-;;;-1:-1:-1;;;;;40857:25:0;;:::o;29265:119::-;-1:-1:-1;;;;;29358:18:0;29331:7;29358:18;;;;;;;;;;;;29265:119::o;25305:148::-;24885:12;:10;:12::i;:::-;24875:6;;-1:-1:-1;;;;;24875:6:0;;;:22;;;24867:67;;;;;-1:-1:-1;;;24867:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25396:6:::1;::::0;25375:40:::1;::::0;25412:1:::1;::::0;-1:-1:-1;;;;;25396:6:0::1;::::0;25375:40:::1;::::0;25412:1;;25375:40:::1;25426:6;:19:::0;;-1:-1:-1;;;;;;25426:19:0::1;::::0;;25305:148::o;37785:295::-;37862:26;37891:84;37928:6;37891:84;;;;;;;;;;;;;;;;;:32;37901:7;37910:12;:10;:12::i;:::-;37891:9;:32::i;:::-;:36;:84;:36;:84::i;:::-;37862:113;;37988:51;37997:7;38006:12;:10;:12::i;:::-;38020:18;37988:8;:51::i;:::-;38050:22;38056:7;38065:6;38050:5;:22::i;:::-;37785:295;;;:::o;40003:120::-;-1:-1:-1;;;;;40091:14:0;;40064:7;40091:14;;;:7;:14;;;;;:24;;:22;:24::i;:::-;40084:31;40003:120;-1:-1:-1;;40003:120:0:o;24663:79::-;24728:6;;-1:-1:-1;;;;;24728:6:0;24663:79;:::o;28229:87::-;28301:7;28294:14;;;;;;;;-1:-1:-1;;28294:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28268:13;;28294:14;;28301:7;;28294:14;;28301:7;28294:14;;;;;;;;;;;;;;;;;;;;;;;;32235:269;32328:4;32345:129;32354:12;:10;:12::i;:::-;32368:7;32377:96;32416:15;32377:96;;;;;;;;;;;;;;;;;:11;:25;32389:12;:10;:12::i;:::-;-1:-1:-1;;;;;32377:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;32377:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;41795:337::-;41053:10;;-1:-1:-1;;;;;41053:10:0;41039;:24;41031:48;;;;;-1:-1:-1;;;41031:48:0;;;;;;;;;;;;-1:-1:-1;;;41031:48:0;;;;;;;;;;;;;;;41955:11:::1;-1:-1:-1::0;;;;;41946:20:0::1;:5;-1:-1:-1::0;;;;;41946:20:0::1;;;41938:48;;;::::0;;-1:-1:-1;;;41938:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;41938:48:0;;;;;;;;;;;;;::::1;;42012:5;-1:-1:-1::0;;;;;42005:22:0::1;;42028:11;42041:6;42005:43;;;;;;;;;;;;;-1:-1:-1::0;;;;;42005:43:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;42005:43:0;41997:71:::1;;;::::0;;-1:-1:-1;;;41997:71:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;41997:71:0;;;;;;;;;;;;;::::1;;42117:6;42104:11;-1:-1:-1::0;;;;;42084:40:0::1;42097:5;-1:-1:-1::0;;;;;42084:40:0::1;;;;;;;;;;;41795:337:::0;;;:::o;29597:175::-;29683:4;29700:42;29710:12;:10;:12::i;:::-;29724:9;29735:6;29700:9;:42::i;41410:109::-;41053:10;;-1:-1:-1;;;;;41053:10:0;41039;:24;41031:48;;;;;-1:-1:-1;;;41031:48:0;;;;;;;;;;;;-1:-1:-1;;;41031:48:0;;;;;;;;;;;;;;;41487:10:::1;:24:::0;;-1:-1:-1;;;;;;41487:24:0::1;-1:-1:-1::0;;;;;41487:24:0;;;::::1;::::0;;;::::1;::::0;;41410:109::o;39154:781::-;39399:8;39380:15;:27;;39372:64;;;;;-1:-1:-1;;;39372:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39546:14:0;;39449:18;39546:14;;;:7;:14;;;;;38483:66;;39522:5;;39529:7;;39538:6;;39546:24;;:22;:24::i;:::-;39494:87;;;;;;;;;;;-1:-1:-1;;;;;39494:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39470:122;;;;;;39664:16;;-1:-1:-1;;;39631:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39621:73;;;;;;;;;-1:-1:-1;39724:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39470:122;;-1:-1:-1;39621:73:0;;39724:25;;;;;;;-1:-1:-1;;39724:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;39724:25:0;;-1:-1:-1;;39724:25:0;;;-1:-1:-1;;;;;;;39768:20:0;;;;;;:39;;;39802:5;-1:-1:-1;;;;;39792:15:0;:6;-1:-1:-1;;;;;39792:15:0;;39768:39;39760:85;;;;-1:-1:-1;;;39760:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39858:14:0;;;;;;:7;:14;;;;;:26;;:24;:26::i;:::-;39895:32;39904:5;39911:7;39920:6;39895:8;:32::i;:::-;39154:781;;;;;;;;;;:::o;40787:61::-;40821:27;40787:61;:::o;29835:151::-;-1:-1:-1;;;;;29951:18:0;;;29924:7;29951:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29835:151::o;25608:244::-;24885:12;:10;:12::i;:::-;24875:6;;-1:-1:-1;;;;;24875:6:0;;;:22;;;24867:67;;;;;-1:-1:-1;;;24867:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25697:22:0;::::1;25689:73;;;;-1:-1:-1::0;;;25689:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25799:6;::::0;25778:38:::1;::::0;-1:-1:-1;;;;;25778:38:0;;::::1;::::0;25799:6:::1;::::0;25778:38:::1;::::0;25799:6:::1;::::0;25778:38:::1;25827:6;:17:::0;;-1:-1:-1;;;;;;25827:17:0::1;-1:-1:-1::0;;;;;25827:17:0;;;::::1;::::0;;;::::1;::::0;;25608:244::o;10001:181::-;10059:7;10091:5;;;10115:6;;;;10107:46;;;;;-1:-1:-1;;;10107:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;10173:1;10001:181;-1:-1:-1;;;10001:181:0:o;23198:106::-;23286:10;23198:106;:::o;35382:346::-;-1:-1:-1;;;;;35484:19:0;;35476:68;;;;-1:-1:-1;;;35476:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35563:21:0;;35555:68;;;;-1:-1:-1;;;35555:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35636:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;35688:32;;;;;;;;;;;;;;;;;35382:346;;;:::o;32994:539::-;-1:-1:-1;;;;;33100:20:0;;33092:70;;;;-1:-1:-1;;;33092:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33181:23:0;;33173:71;;;;-1:-1:-1;;;33173:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33257:47;33278:6;33286:9;33297:6;33257:20;:47::i;:::-;33337:71;33359:6;33337:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33337:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;33317:17:0;;;:9;:17;;;;;;;;;;;:91;;;;33442:20;;;;;;;:32;;33467:6;33442:24;:32::i;:::-;-1:-1:-1;;;;;33419:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;33490:35;;;;;;;33419:20;;33490:35;;;;;;;;;;;;;32994:539;;;:::o;10904:192::-;10990:7;11026:12;11018:6;;;;11010:29;;;;-1:-1:-1;;;11010:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11062:5:0;;;10904:192::o;34526:418::-;-1:-1:-1;;;;;34610:21:0;;34602:67;;;;-1:-1:-1;;;34602:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34682:49;34703:7;34720:1;34724:6;34682:20;:49::i;:::-;34765:68;34788:6;34765:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34765:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;34744:18:0;;:9;:18;;;;;;;;;;:89;34859:12;;:24;;34876:6;34859:16;:24::i;:::-;34844:12;:39;34899:37;;;;;;;;34925:1;;-1:-1:-1;;;;;34899:37:0;;;;;;;;;;;;34526:418;;:::o;15586:114::-;15678:14;;15586:114::o;15708:181::-;15862:19;;15880:1;15862:19;;;15708:181::o;10465:136::-;10523:7;10550:43;10554:1;10557;10550:43;;;;;;;;;;;;;;;;;:3;:43::i
Swarm Source
ipfs://c37e75a042f6943914d290a4e79cd6a25e651cb02d854ceee27e4e25a01d1f93
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.