ERC-20
Overview
Max Total Supply
100,000,000 GOATD
Holders
133
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
7,418.489305555555555556 GOATDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
GoatedToken
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** *Submitted for verification at Etherscan.io on 2022-03-07 */ // File: contracts\libs\Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: contracts\libs\Ownable.sol pragma solidity ^0.8.0; abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } function owner() public view virtual returns (address) { return _owner; } modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } 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\libs\IERC20.sol pragma solidity >=0.4.0; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the erc20 token owner. */ function getOwner() external view returns (address); /** * @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: contracts\libs\SafeMath.sol pragma solidity ^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: contracts\libs\Address.sol pragma solidity ^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); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(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: contracts\libs\ERC20.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-ERC20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; 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 tokenName, string memory tokenSymbol) { _name = tokenName; _symbol = tokenSymbol; _decimals = 18; } /** * @dev Returns the bep token owner. */ function getOwner() external override view returns (address) { return owner(); } /** * @dev Returns the token name. */ function name() public override view returns (string memory) { return _name; } /** * @dev Returns the token decimals. */ function decimals() public override view returns (uint8) { return _decimals; } /** * @dev Returns the token symbol. */ function symbol() public override view returns (string memory) { return _symbol; } /** * @dev See {ERC20-totalSupply}. */ function totalSupply() public virtual override view returns (uint256) { return _totalSupply; } /** * @dev See {ERC20-balanceOf}. */ function balanceOf(address account) public virtual override view returns (uint256) { return _balances[account]; } /** * @dev See {ERC20-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 override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {ERC20-allowance}. */ function allowance(address owner, address spender) public override view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {ERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {ERC20-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 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 {ERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public 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 {ERC20-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 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"); _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 { require(account != address(0), "ERC20: mint to the zero address"); _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 { require(account != address(0), "ERC20: burn from the zero address"); _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 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 { 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 Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve( account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance") ); } } // File: contracts\AntiBotERC20.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @notice ERC20 standard token with anti-bot feature integrated * Blacklis feature * Max TX Amount feature * Max Wallet Amount feature */ contract AntiBotERC20 is ERC20 { using SafeMath for uint256; using Address for address; address constant DEAD = 0x000000000000000000000000000000000000dEaD; address constant ZERO = address(0); mapping(address => bool) private _isExcludedFromAntiWhales; mapping(address => bool) private _blacklist; uint256 public constant MAX_TX_AMOUNT_MIN_LIMIT = 1 ether; uint256 public constant MAX_WALLET_AMOUNT_MIN_LIMIT = 100 ether; uint256 public _maxTxAmount = 10000 ether; uint256 public _maxWalletAmount = 100000 ether; event ExcludedFromBlacklist(address indexed account); event IncludedInBlacklist(address indexed account); event ExcludedFromAntiWhales(address indexed account); event IncludedInAntiWhales(address indexed account); constructor(string memory tokenName, string memory tokenSymbol) ERC20(tokenName, tokenSymbol) { _isExcludedFromAntiWhales[_msgSender()] = true; _isExcludedFromAntiWhales[DEAD] = true; _isExcludedFromAntiWhales[ZERO] = true; _isExcludedFromAntiWhales[address(this)] = true; } /** * @notice Exclude the account from black list * @param account: the account to be excluded * @dev Only callable by owner */ function excludeFromBlacklist(address account) public onlyOwner { _blacklist[account] = false; emit ExcludedFromBlacklist(account); } /** * @notice Include the account in black list * @param account: the account to be included * @dev Only callable by owner */ function includeInBlacklist(address account) public onlyOwner { _blacklist[account] = true; emit IncludedInBlacklist(account); } /** * @notice Check if the account is included in black list * @param account: the account to be checked */ function isIncludedInBlacklist(address account) public view returns (bool) { return _blacklist[account]; } /** * @notice Exclude the account from anti whales limit * @param account: the account to be excluded * @dev Only callable by owner */ function excludeFromAntiWhales(address account) public onlyOwner { _isExcludedFromAntiWhales[account] = true; emit ExcludedFromAntiWhales(account); } /** * @notice Include the account in anti whales limit * @param account: the account to be included * @dev Only callable by owner */ function includeInAntiWhales(address account) public onlyOwner { _isExcludedFromAntiWhales[account] = false; emit IncludedInAntiWhales(account); } /** * @notice Check if the account is excluded from anti whales limit * @param account: the account to be checked */ function isExcludedFromAntiWhales(address account) public view returns (bool) { return _isExcludedFromAntiWhales[account]; } /** * @notice Set anti whales limit configuration * @param maxTxAmount: max amount of token in a transaction * @param maxWalletAmount: max amount of token can be kept in a wallet * @dev Only callable by owner */ function setAntiWhalesConfiguration( uint256 maxTxAmount, uint256 maxWalletAmount ) external onlyOwner { require( maxTxAmount >= MAX_TX_AMOUNT_MIN_LIMIT, "Max tx amount too small" ); require( maxWalletAmount >= MAX_WALLET_AMOUNT_MIN_LIMIT, "Max wallet amount too small" ); _maxTxAmount = maxTxAmount; _maxWalletAmount = maxWalletAmount; } function _transfer( address from, address to, uint256 amount ) internal virtual override { require(amount > 0, "Transfer amount must be greater than zero"); require(!_blacklist[from] && !_blacklist[to], "Transfer from or to the blacklisted account"); // Check max tx limit if (!_isExcludedFromAntiWhales[from] || !_isExcludedFromAntiWhales[to]) { require( amount <= _maxTxAmount, "Too many tokens are going to be transferred" ); } // Check max wallet amount limit if (!_isExcludedFromAntiWhales[to]) { require( balanceOf(to).add(amount) <= _maxWalletAmount, "Too many tokens are going to be stored in target account" ); } super._transfer(from, to, amount); } function recoverToken(address tokenAddress, uint256 tokenAmount) external onlyOwner { // do not allow recovering self token require(tokenAddress != address(this), "Self withdraw"); IERC20(tokenAddress).transfer(owner(), tokenAmount); } } // File: contracts\GoatedToken.sol pragma solidity ^0.8.0; contract GoatedToken is AntiBotERC20("GOATED", "GOATD") { using SafeMath for uint256; using Address for address; uint16 public constant MAX_BURN_FEE = 500; // 5% max uint16 public constant MAX_TREASURY_FEE = 500; // 5% max uint16 public constant MAX_STAKING_FEE = 500; // 5% max uint16 public constant MAX_COMMUNITY_FEE = 500; // 5% max uint16 public _burnFee = 500; // Fee for burning token uint16 public _treasuryFee = 500; // Fee for treasury pool uint16 public _stakingFee = 500; // Fee for staking rewards pool uint16 public _communityFee = 500; // Fee for community rewards pool address public _treasuryPool; address public _stakingPool; address public _communityPool; mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) private _isGoatPair; constructor() { _isExcludedFromFee[_msgSender()] = true; _mint(_msgSender(), 10**26); } function excludeFromFee(address account) external onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) external onlyOwner { _isExcludedFromFee[account] = false; } function isExcludedFromFee(address account) external view returns (bool) { return _isExcludedFromFee[account]; } function excludeFromGoatPair(address lpAddress) external onlyOwner { _isGoatPair[lpAddress] = false; } function includeInGoatPair(address lpAddress) external onlyOwner { _isGoatPair[lpAddress] = true; } function isGoatPair(address lpAddress) external view returns (bool) { return _isGoatPair[lpAddress]; } function setAllFeePercent( uint16 burnFee, uint16 treasuryFee, uint16 stakingFee, uint16 communityFee ) external onlyOwner { require(burnFee <= MAX_BURN_FEE, "Burn fee overflow"); require(treasuryFee <= MAX_TREASURY_FEE, "Treasury fee overflow"); require(stakingFee <= MAX_STAKING_FEE, "Staking fee overflow"); require(communityFee <= MAX_COMMUNITY_FEE, "Community fee overflow"); _burnFee = burnFee; _treasuryFee = treasuryFee; _stakingFee = stakingFee; _communityFee = communityFee; } function setPoolAddresses( address treasuryPool, address stakingPool, address communityPool ) external onlyOwner { require(treasuryPool != address(0), "Invalid treasury pool"); require(stakingPool != address(0), "Invalid staking pool"); require(communityPool != address(0), "Invalid community pool"); _treasuryPool = treasuryPool; _stakingPool = stakingPool; _communityPool = communityPool; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from zero address"); require(to != address(0), "ERC20: transfer to zero address"); require(amount > 0, "Transfer amount must be greater than zero"); // indicates if fee should be deducted from transfer // if any account belongs to _isExcludedFromFee account then remove the fee bool takeFee = !_isExcludedFromFee[from] && !_isExcludedFromFee[to] && _isGoatPair[to]; if (takeFee) { uint256 burnFeeAmount = amount.mul(_burnFee).div(10000); super._transfer(from, DEAD, burnFeeAmount); amount = amount.sub(burnFeeAmount); uint256 treasuryFeeAmount = amount.mul(_treasuryFee).div(10000); if (treasuryFeeAmount > 0 && _treasuryPool != address(0)) { super._transfer(from, _treasuryPool, treasuryFeeAmount); amount = amount.sub(treasuryFeeAmount); } uint256 stakingFeeAmount = amount.mul(_stakingFee).div(10000); if (stakingFeeAmount > 0 && _stakingPool != address(0)) { super._transfer(from, _stakingPool, stakingFeeAmount); amount = amount.sub(stakingFeeAmount); } uint256 communityFeeAmount = amount.mul(_communityFee).div(10000); if (communityFeeAmount > 0 && _communityPool != address(0)) { super._transfer(from, _communityPool, communityFeeAmount); amount = amount.sub(communityFeeAmount); } } super._transfer(from, to, amount); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"account","type":"address"}],"name":"ExcludedFromAntiWhales","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"ExcludedFromBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"IncludedInAntiWhales","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"IncludedInBlacklist","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":"MAX_BURN_FEE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_COMMUNITY_FEE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_STAKING_FEE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TREASURY_FEE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TX_AMOUNT_MIN_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WALLET_AMOUNT_MIN_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_communityFee","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_communityPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_stakingFee","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_stakingPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_treasuryFee","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_treasuryPool","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"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":"account","type":"address"}],"name":"excludeFromAntiWhales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"excludeFromGoatPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInAntiWhales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"includeInGoatPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromAntiWhales","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"isGoatPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isIncludedInBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"burnFee","type":"uint16"},{"internalType":"uint16","name":"treasuryFee","type":"uint16"},{"internalType":"uint16","name":"stakingFee","type":"uint16"},{"internalType":"uint16","name":"communityFee","type":"uint16"}],"name":"setAllFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"},{"internalType":"uint256","name":"maxWalletAmount","type":"uint256"}],"name":"setAntiWhalesConfiguration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"treasuryPool","type":"address"},{"internalType":"address","name":"stakingPool","type":"address"},{"internalType":"address","name":"communityPool","type":"address"}],"name":"setPoolAddresses","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
608060405269021e19e0c9bab240000060095569152d02c7e14af6800000600a556101f4600b60006101000a81548161ffff021916908361ffff1602179055506101f4600b60026101000a81548161ffff021916908361ffff1602179055506101f4600b60046101000a81548161ffff021916908361ffff1602179055506101f4600b60066101000a81548161ffff021916908361ffff160217905550348015620000a957600080fd5b506040518060400160405280600681526020017f474f4154454400000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f474f415444000000000000000000000000000000000000000000000000000000815250818160006200012a6200042460201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508160049080519060200190620001e09291906200062c565b508060059080519060200190620001f99291906200062c565b506012600660006101000a81548160ff021916908360ff16021790555050506001600760006200022e6200042460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016007600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050506001600e6000620003a16200042460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200041e620004066200042460201b60201c565b6a52b7d2dcc80cd2e40000006200042c60201b60201c565b620008de565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200049f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004969062000793565b60405180910390fd5b620004bb81600354620005c960201b620021d11790919060201c565b6003819055506200051a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620005c960201b620021d11790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005bd9190620007b5565b60405180910390a35050565b6000808284620005da9190620007e3565b90508381101562000622576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006199062000771565b60405180910390fd5b8091505092915050565b8280546200063a906200084a565b90600052602060002090601f0160209004810192826200065e5760008555620006aa565b82601f106200067957805160ff1916838001178555620006aa565b82800160010185558215620006aa579182015b82811115620006a95782518255916020019190600101906200068c565b5b509050620006b99190620006bd565b5090565b5b80821115620006d8576000816000905550600101620006be565b5090565b6000620006eb601b83620007d2565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006200072d601f83620007d2565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200076b8162000840565b82525050565b600060208201905081810360008301526200078c81620006dc565b9050919050565b60006020820190508181036000830152620007ae816200071e565b9050919050565b6000602082019050620007cc600083018462000760565b92915050565b600082825260208201905092915050565b6000620007f08262000840565b9150620007fd8362000840565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000835576200083462000880565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200086357607f821691505b602082108114156200087a5762000879620008af565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61427980620008ee6000396000f3fe608060405234801561001057600080fd5b506004361061028a5760003560e01c80637ffdc7ea1161015c578063a9059cbb116100ce578063dd62ed3e11610087578063dd62ed3e146107cd578063e62f96d8146107fd578063ea2f0b3714610819578063f2b3c80914610835578063f2fde38b14610853578063fee98cc61461086f5761028a565b8063a9059cbb14610709578063ae85028114610739578063b29a814014610757578063b9038fe114610773578063c0b0fda214610791578063dc06f1ad146107af5761028a565b80638da5cb5b116101205780638da5cb5b14610621578063931e48e61461063f57806395d89b411461065b5780639858d3da146106795780639d3fcd87146106a9578063a457c2d7146106d95761028a565b80637ffdc7ea146105915780638597600f146105af57806388bb012a146105cb578063893d20e8146105e75780638ac19222146106055761028a565b806339509351116102005780635342acb4116101b95780635342acb4146104cd5780635bbb2452146104fd5780636c0a24eb1461051b57806370a0823114610539578063715018a6146105695780637d1db4a5146105735761028a565b806339509351146103f95780633d0741101461042957806340b7566a14610447578063437823ec14610477578063459ea72d1461049357806350e8676c146104af5761028a565b806320d947e81161025257806320d947e81461033357806323b872dd1461035157806328f0b257146103815780632a62b52d1461039f578063313ce567146103bd578063368f243e146103db5761028a565b806306fdde031461028f578063095ea7b3146102ad5780630d61d129146102dd578063178872ac146102f957806318160ddd14610315575b600080fd5b61029761088b565b6040516102a49190613b6a565b60405180910390f35b6102c760048036038101906102c291906131e1565b61091d565b6040516102d49190613b4f565b60405180910390f35b6102f760048036038101906102f291906130de565b61093b565b005b610313600480360381019061030e91906130de565b610a12565b005b61031d610b2c565b60405161032a9190613ea7565b60405180910390f35b61033b610b36565b6040516103489190613ea7565b60405180910390f35b61036b60048036038101906103669190613192565b610b42565b6040516103789190613b4f565b60405180910390f35b610389610c1b565b6040516103969190613e8c565b60405180910390f35b6103a7610c2f565b6040516103b49190613e8c565b60405180910390f35b6103c5610c35565b6040516103d29190613ec2565b60405180910390f35b6103e3610c4c565b6040516103f09190613e8c565b60405180910390f35b610413600480360381019061040e91906131e1565b610c52565b6040516104209190613b4f565b60405180910390f35b610431610d05565b60405161043e9190613b0b565b60405180910390f35b610461600480360381019061045c91906130de565b610d2b565b60405161046e9190613b4f565b60405180910390f35b610491600480360381019061048c91906130de565b610d81565b005b6104ad60048036038101906104a89190613246565b610e58565b005b6104b7611082565b6040516104c49190613e8c565b60405180910390f35b6104e760048036038101906104e291906130de565b611088565b6040516104f49190613b4f565b60405180910390f35b6105056110de565b6040516105129190613b0b565b60405180910390f35b610523611104565b6040516105309190613ea7565b60405180910390f35b610553600480360381019061054e91906130de565b61110a565b6040516105609190613ea7565b60405180910390f35b610571611153565b005b61057b61128d565b6040516105889190613ea7565b60405180910390f35b610599611293565b6040516105a69190613b0b565b60405180910390f35b6105c960048036038101906105c49190613143565b6112b9565b005b6105e560048036038101906105e091906130de565b61154d565b005b6105ef611667565b6040516105fc9190613b0b565b60405180910390f35b61061f600480360381019061061a91906130de565b611676565b005b610629611790565b6040516106369190613b0b565b60405180910390f35b610659600480360381019061065491906132a9565b6117b9565b005b6106636118de565b6040516106709190613b6a565b60405180910390f35b610693600480360381019061068e91906130de565b611970565b6040516106a09190613b4f565b60405180910390f35b6106c360048036038101906106be91906130de565b6119c6565b6040516106d09190613b4f565b60405180910390f35b6106f360048036038101906106ee91906131e1565b611a1c565b6040516107009190613b4f565b60405180910390f35b610723600480360381019061071e91906131e1565b611ae9565b6040516107309190613b4f565b60405180910390f35b610741611b07565b60405161074e9190613e8c565b60405180910390f35b610771600480360381019061076c91906131e1565b611b1b565b005b61077b611c9f565b6040516107889190613ea7565b60405180910390f35b610799611cac565b6040516107a69190613e8c565b60405180910390f35b6107b7611cc0565b6040516107c49190613e8c565b60405180910390f35b6107e760048036038101906107e29190613107565b611cd4565b6040516107f49190613ea7565b60405180910390f35b610817600480360381019061081291906130de565b611d5b565b005b610833600480360381019061082e91906130de565b611e32565b005b61083d611f09565b60405161084a9190613e8c565b60405180910390f35b61086d600480360381019061086891906130de565b611f0f565b005b610889600480360381019061088491906130de565b6120b8565b005b60606004805461089a906140a4565b80601f01602080910402602001604051908101604052809291908181526020018280546108c6906140a4565b80156109135780601f106108e857610100808354040283529160200191610913565b820191906000526020600020905b8154815290600101906020018083116108f657829003601f168201915b5050505050905090565b600061093161092a61222f565b8484612237565b6001905092915050565b61094361222f565b73ffffffffffffffffffffffffffffffffffffffff16610961611790565b73ffffffffffffffffffffffffffffffffffffffff16146109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae90613cec565b60405180910390fd5b6001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610a1a61222f565b73ffffffffffffffffffffffffffffffffffffffff16610a38611790565b73ffffffffffffffffffffffffffffffffffffffff1614610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8590613cec565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fb6ef7f73baab9052ab7fc53a6a829c60fc2061319cbc5a8815cda0b168eaf23860405160405180910390a250565b6000600354905090565b670de0b6b3a764000081565b6000610b4f848484612402565b610c1084610b5b61222f565b610c0b856040518060600160405280602881526020016141f760289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bc161222f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129519092919063ffffffff16565b612237565b600190509392505050565b600b60029054906101000a900461ffff1681565b6101f481565b6000600660009054906101000a900460ff16905090565b6101f481565b6000610cfb610c5f61222f565b84610cf68560026000610c7061222f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121d190919063ffffffff16565b612237565b6001905092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610d8961222f565b73ffffffffffffffffffffffffffffffffffffffff16610da7611790565b73ffffffffffffffffffffffffffffffffffffffff1614610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490613cec565b60405180910390fd5b6001600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610e6061222f565b73ffffffffffffffffffffffffffffffffffffffff16610e7e611790565b73ffffffffffffffffffffffffffffffffffffffff1614610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90613cec565b60405180910390fd5b6101f461ffff168461ffff161115610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1890613ccc565b60405180910390fd5b6101f461ffff168361ffff161115610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6590613e4c565b60405180910390fd5b6101f461ffff168261ffff161115610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290613bac565b60405180910390fd5b6101f461ffff168161ffff161115611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90613dac565b60405180910390fd5b83600b60006101000a81548161ffff021916908361ffff16021790555082600b60026101000a81548161ffff021916908361ffff16021790555081600b60046101000a81548161ffff021916908361ffff16021790555080600b60066101000a81548161ffff021916908361ffff16021790555050505050565b6101f481565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600b60089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61115b61222f565b73ffffffffffffffffffffffffffffffffffffffff16611179611790565b73ffffffffffffffffffffffffffffffffffffffff16146111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690613cec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60095481565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112c161222f565b73ffffffffffffffffffffffffffffffffffffffff166112df611790565b73ffffffffffffffffffffffffffffffffffffffff1614611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c90613cec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c90613d8c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c90613e6c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147c90613c8c565b60405180910390fd5b82600b60086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b61155561222f565b73ffffffffffffffffffffffffffffffffffffffff16611573611790565b73ffffffffffffffffffffffffffffffffffffffff16146115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c090613cec565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f96f70f92a95a1baee76cf33fb5179d2a057804f1637981f4e4307ed748add68b60405160405180910390a250565b6000611671611790565b905090565b61167e61222f565b73ffffffffffffffffffffffffffffffffffffffff1661169c611790565b73ffffffffffffffffffffffffffffffffffffffff16146116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990613cec565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f1be493c1fe0b35ef45c72eb37db7abbbb73dfd671e5f4218085604c30f690ca860405160405180910390a250565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117c161222f565b73ffffffffffffffffffffffffffffffffffffffff166117df611790565b73ffffffffffffffffffffffffffffffffffffffff1614611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90613cec565b60405180910390fd5b670de0b6b3a7640000821015611880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187790613d4c565b60405180910390fd5b68056bc75e2d631000008110156118cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c390613d0c565b60405180910390fd5b8160098190555080600a819055505050565b6060600580546118ed906140a4565b80601f0160208091040260200160405190810160405280929190818152602001828054611919906140a4565b80156119665780601f1061193b57610100808354040283529160200191611966565b820191906000526020600020905b81548152906001019060200180831161194957829003601f168201915b5050505050905090565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000611adf611a2961222f565b84611ada8560405180606001604052806025815260200161421f6025913960026000611a5361222f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129519092919063ffffffff16565b612237565b6001905092915050565b6000611afd611af661222f565b8484612402565b6001905092915050565b600b60049054906101000a900461ffff1681565b611b2361222f565b73ffffffffffffffffffffffffffffffffffffffff16611b41611790565b73ffffffffffffffffffffffffffffffffffffffff1614611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e90613cec565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfd90613c4c565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb611c2a611790565b836040518363ffffffff1660e01b8152600401611c48929190613b26565b602060405180830381600087803b158015611c6257600080fd5b505af1158015611c76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c9a919061321d565b505050565b68056bc75e2d6310000081565b600b60009054906101000a900461ffff1681565b600b60069054906101000a900461ffff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611d6361222f565b73ffffffffffffffffffffffffffffffffffffffff16611d81611790565b73ffffffffffffffffffffffffffffffffffffffff1614611dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dce90613cec565b60405180910390fd5b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611e3a61222f565b73ffffffffffffffffffffffffffffffffffffffff16611e58611790565b73ffffffffffffffffffffffffffffffffffffffff1614611eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea590613cec565b60405180910390fd5b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6101f481565b611f1761222f565b73ffffffffffffffffffffffffffffffffffffffff16611f35611790565b73ffffffffffffffffffffffffffffffffffffffff1614611f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8290613cec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff290613bcc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6120c061222f565b73ffffffffffffffffffffffffffffffffffffffff166120de611790565b73ffffffffffffffffffffffffffffffffffffffff1614612134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212b90613cec565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167e1833734ad801e97532fe6d452adda05bf036ca3351ce1a433aa254ce50b2ac60405160405180910390a250565b60008082846121e09190613ef9565b905083811015612225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221c90613c0c565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229e90613dec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e90613bec565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123f59190613ea7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246990613c2c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d990613c6c565b60405180910390fd5b60008111612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251c90613d2c565b60405180910390fd5b6000600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156125cb5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126205750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b90508015612940576000612665612710612657600b60009054906101000a900461ffff1661ffff16866129b590919063ffffffff16565b612a3090919063ffffffff16565b90506126748561dead83612a7a565b6126878184612d4f90919063ffffffff16565b925060006126c66127106126b8600b60029054906101000a900461ffff1661ffff16876129b590919063ffffffff16565b612a3090919063ffffffff16565b90506000811180156127275750600073ffffffffffffffffffffffffffffffffffffffff16600b60089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561276f5761275986600b60089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612a7a565b61276c8185612d4f90919063ffffffff16565b93505b60006127ac61271061279e600b60049054906101000a900461ffff1661ffff16886129b590919063ffffffff16565b612a3090919063ffffffff16565b905060008111801561280d5750600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156128555761283f87600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612a7a565b6128528186612d4f90919063ffffffff16565b94505b6000612892612710612884600b60069054906101000a900461ffff1661ffff16896129b590919063ffffffff16565b612a3090919063ffffffff16565b90506000811180156128f35750600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561293b5761292588600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612a7a565b6129388187612d4f90919063ffffffff16565b95505b505050505b61294b848484612a7a565b50505050565b6000838311158290612999576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129909190613b6a565b60405180910390fd5b50600083856129a89190613fda565b9050809150509392505050565b6000808314156129c85760009050612a2a565b600082846129d69190613f80565b90508284826129e59190613f4f565b14612a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1c90613cac565b60405180910390fd5b809150505b92915050565b6000612a7283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612d99565b905092915050565b60008111612abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab490613d2c565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612b615750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9790613e2c565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580612c435750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c8e57600954811115612c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8490613e0c565b60405180910390fd5b5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612d3f57600a54612cfd82612cef8561110a565b6121d190919063ffffffff16565b1115612d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3590613d6c565b60405180910390fd5b5b612d4a838383612dfc565b505050565b6000612d9183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612951565b905092915050565b60008083118290612de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd79190613b6a565b60405180910390fd5b5060008385612def9190613f4f565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6390613dcc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed390613b8c565b60405180910390fd5b612f48816040518060600160405280602681526020016141d160269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129519092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612fdd81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121d190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161307d9190613ea7565b60405180910390a3505050565b60008135905061309981614174565b92915050565b6000815190506130ae8161418b565b92915050565b6000813590506130c3816141a2565b92915050565b6000813590506130d8816141b9565b92915050565b6000602082840312156130f057600080fd5b60006130fe8482850161308a565b91505092915050565b6000806040838503121561311a57600080fd5b60006131288582860161308a565b92505060206131398582860161308a565b9150509250929050565b60008060006060848603121561315857600080fd5b60006131668682870161308a565b93505060206131778682870161308a565b92505060406131888682870161308a565b9150509250925092565b6000806000606084860312156131a757600080fd5b60006131b58682870161308a565b93505060206131c68682870161308a565b92505060406131d7868287016130c9565b9150509250925092565b600080604083850312156131f457600080fd5b60006132028582860161308a565b9250506020613213858286016130c9565b9150509250929050565b60006020828403121561322f57600080fd5b600061323d8482850161309f565b91505092915050565b6000806000806080858703121561325c57600080fd5b600061326a878288016130b4565b945050602061327b878288016130b4565b935050604061328c878288016130b4565b925050606061329d878288016130b4565b91505092959194509250565b600080604083850312156132bc57600080fd5b60006132ca858286016130c9565b92505060206132db858286016130c9565b9150509250929050565b6132ee8161400e565b82525050565b6132fd81614020565b82525050565b600061330e82613edd565b6133188185613ee8565b9350613328818560208601614071565b61333181614163565b840191505092915050565b6000613349602383613ee8565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133af601483613ee8565b91507f5374616b696e6720666565206f766572666c6f770000000000000000000000006000830152602082019050919050565b60006133ef602683613ee8565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613455602283613ee8565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134bb601b83613ee8565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006134fb602183613ee8565b91507f45524332303a207472616e736665722066726f6d207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613561600d83613ee8565b91507f53656c66207769746864726177000000000000000000000000000000000000006000830152602082019050919050565b60006135a1601f83613ee8565b91507f45524332303a207472616e7366657220746f207a65726f2061646472657373006000830152602082019050919050565b60006135e1601683613ee8565b91507f496e76616c696420636f6d6d756e69747920706f6f6c000000000000000000006000830152602082019050919050565b6000613621602183613ee8565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613687601183613ee8565b91507f4275726e20666565206f766572666c6f770000000000000000000000000000006000830152602082019050919050565b60006136c7602083613ee8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613707601b83613ee8565b91507f4d61782077616c6c657420616d6f756e7420746f6f20736d616c6c00000000006000830152602082019050919050565b6000613747602983613ee8565b91507f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008301527f7468616e207a65726f00000000000000000000000000000000000000000000006020830152604082019050919050565b60006137ad601783613ee8565b91507f4d617820747820616d6f756e7420746f6f20736d616c6c0000000000000000006000830152602082019050919050565b60006137ed603883613ee8565b91507f546f6f206d616e7920746f6b656e732061726520676f696e6720746f2062652060008301527f73746f72656420696e20746172676574206163636f756e7400000000000000006020830152604082019050919050565b6000613853601583613ee8565b91507f496e76616c696420747265617375727920706f6f6c00000000000000000000006000830152602082019050919050565b6000613893601683613ee8565b91507f436f6d6d756e69747920666565206f766572666c6f77000000000000000000006000830152602082019050919050565b60006138d3602583613ee8565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613939602483613ee8565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061399f602b83613ee8565b91507f546f6f206d616e7920746f6b656e732061726520676f696e6720746f2062652060008301527f7472616e736665727265640000000000000000000000000000000000000000006020830152604082019050919050565b6000613a05602b83613ee8565b91507f5472616e736665722066726f6d206f7220746f2074686520626c61636b6c697360008301527f746564206163636f756e740000000000000000000000000000000000000000006020830152604082019050919050565b6000613a6b601583613ee8565b91507f547265617375727920666565206f766572666c6f7700000000000000000000006000830152602082019050919050565b6000613aab601483613ee8565b91507f496e76616c6964207374616b696e6720706f6f6c0000000000000000000000006000830152602082019050919050565b613ae78161402c565b82525050565b613af68161405a565b82525050565b613b0581614064565b82525050565b6000602082019050613b2060008301846132e5565b92915050565b6000604082019050613b3b60008301856132e5565b613b486020830184613aed565b9392505050565b6000602082019050613b6460008301846132f4565b92915050565b60006020820190508181036000830152613b848184613303565b905092915050565b60006020820190508181036000830152613ba58161333c565b9050919050565b60006020820190508181036000830152613bc5816133a2565b9050919050565b60006020820190508181036000830152613be5816133e2565b9050919050565b60006020820190508181036000830152613c0581613448565b9050919050565b60006020820190508181036000830152613c25816134ae565b9050919050565b60006020820190508181036000830152613c45816134ee565b9050919050565b60006020820190508181036000830152613c6581613554565b9050919050565b60006020820190508181036000830152613c8581613594565b9050919050565b60006020820190508181036000830152613ca5816135d4565b9050919050565b60006020820190508181036000830152613cc581613614565b9050919050565b60006020820190508181036000830152613ce58161367a565b9050919050565b60006020820190508181036000830152613d05816136ba565b9050919050565b60006020820190508181036000830152613d25816136fa565b9050919050565b60006020820190508181036000830152613d458161373a565b9050919050565b60006020820190508181036000830152613d65816137a0565b9050919050565b60006020820190508181036000830152613d85816137e0565b9050919050565b60006020820190508181036000830152613da581613846565b9050919050565b60006020820190508181036000830152613dc581613886565b9050919050565b60006020820190508181036000830152613de5816138c6565b9050919050565b60006020820190508181036000830152613e058161392c565b9050919050565b60006020820190508181036000830152613e2581613992565b9050919050565b60006020820190508181036000830152613e45816139f8565b9050919050565b60006020820190508181036000830152613e6581613a5e565b9050919050565b60006020820190508181036000830152613e8581613a9e565b9050919050565b6000602082019050613ea16000830184613ade565b92915050565b6000602082019050613ebc6000830184613aed565b92915050565b6000602082019050613ed76000830184613afc565b92915050565b600081519050919050565b600082825260208201905092915050565b6000613f048261405a565b9150613f0f8361405a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f4457613f436140d6565b5b828201905092915050565b6000613f5a8261405a565b9150613f658361405a565b925082613f7557613f74614105565b5b828204905092915050565b6000613f8b8261405a565b9150613f968361405a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fcf57613fce6140d6565b5b828202905092915050565b6000613fe58261405a565b9150613ff08361405a565b925082821015614003576140026140d6565b5b828203905092915050565b60006140198261403a565b9050919050565b60008115159050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561408f578082015181840152602081019050614074565b8381111561409e576000848401525b50505050565b600060028204905060018216806140bc57607f821691505b602082108114156140d0576140cf614134565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61417d8161400e565b811461418857600080fd5b50565b61419481614020565b811461419f57600080fd5b50565b6141ab8161402c565b81146141b657600080fd5b50565b6141c28161405a565b81146141cd57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220662a772c85bba36f55e27bf95603a6328420f6be1d351c0e1a1072ee822fee7a64736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061028a5760003560e01c80637ffdc7ea1161015c578063a9059cbb116100ce578063dd62ed3e11610087578063dd62ed3e146107cd578063e62f96d8146107fd578063ea2f0b3714610819578063f2b3c80914610835578063f2fde38b14610853578063fee98cc61461086f5761028a565b8063a9059cbb14610709578063ae85028114610739578063b29a814014610757578063b9038fe114610773578063c0b0fda214610791578063dc06f1ad146107af5761028a565b80638da5cb5b116101205780638da5cb5b14610621578063931e48e61461063f57806395d89b411461065b5780639858d3da146106795780639d3fcd87146106a9578063a457c2d7146106d95761028a565b80637ffdc7ea146105915780638597600f146105af57806388bb012a146105cb578063893d20e8146105e75780638ac19222146106055761028a565b806339509351116102005780635342acb4116101b95780635342acb4146104cd5780635bbb2452146104fd5780636c0a24eb1461051b57806370a0823114610539578063715018a6146105695780637d1db4a5146105735761028a565b806339509351146103f95780633d0741101461042957806340b7566a14610447578063437823ec14610477578063459ea72d1461049357806350e8676c146104af5761028a565b806320d947e81161025257806320d947e81461033357806323b872dd1461035157806328f0b257146103815780632a62b52d1461039f578063313ce567146103bd578063368f243e146103db5761028a565b806306fdde031461028f578063095ea7b3146102ad5780630d61d129146102dd578063178872ac146102f957806318160ddd14610315575b600080fd5b61029761088b565b6040516102a49190613b6a565b60405180910390f35b6102c760048036038101906102c291906131e1565b61091d565b6040516102d49190613b4f565b60405180910390f35b6102f760048036038101906102f291906130de565b61093b565b005b610313600480360381019061030e91906130de565b610a12565b005b61031d610b2c565b60405161032a9190613ea7565b60405180910390f35b61033b610b36565b6040516103489190613ea7565b60405180910390f35b61036b60048036038101906103669190613192565b610b42565b6040516103789190613b4f565b60405180910390f35b610389610c1b565b6040516103969190613e8c565b60405180910390f35b6103a7610c2f565b6040516103b49190613e8c565b60405180910390f35b6103c5610c35565b6040516103d29190613ec2565b60405180910390f35b6103e3610c4c565b6040516103f09190613e8c565b60405180910390f35b610413600480360381019061040e91906131e1565b610c52565b6040516104209190613b4f565b60405180910390f35b610431610d05565b60405161043e9190613b0b565b60405180910390f35b610461600480360381019061045c91906130de565b610d2b565b60405161046e9190613b4f565b60405180910390f35b610491600480360381019061048c91906130de565b610d81565b005b6104ad60048036038101906104a89190613246565b610e58565b005b6104b7611082565b6040516104c49190613e8c565b60405180910390f35b6104e760048036038101906104e291906130de565b611088565b6040516104f49190613b4f565b60405180910390f35b6105056110de565b6040516105129190613b0b565b60405180910390f35b610523611104565b6040516105309190613ea7565b60405180910390f35b610553600480360381019061054e91906130de565b61110a565b6040516105609190613ea7565b60405180910390f35b610571611153565b005b61057b61128d565b6040516105889190613ea7565b60405180910390f35b610599611293565b6040516105a69190613b0b565b60405180910390f35b6105c960048036038101906105c49190613143565b6112b9565b005b6105e560048036038101906105e091906130de565b61154d565b005b6105ef611667565b6040516105fc9190613b0b565b60405180910390f35b61061f600480360381019061061a91906130de565b611676565b005b610629611790565b6040516106369190613b0b565b60405180910390f35b610659600480360381019061065491906132a9565b6117b9565b005b6106636118de565b6040516106709190613b6a565b60405180910390f35b610693600480360381019061068e91906130de565b611970565b6040516106a09190613b4f565b60405180910390f35b6106c360048036038101906106be91906130de565b6119c6565b6040516106d09190613b4f565b60405180910390f35b6106f360048036038101906106ee91906131e1565b611a1c565b6040516107009190613b4f565b60405180910390f35b610723600480360381019061071e91906131e1565b611ae9565b6040516107309190613b4f565b60405180910390f35b610741611b07565b60405161074e9190613e8c565b60405180910390f35b610771600480360381019061076c91906131e1565b611b1b565b005b61077b611c9f565b6040516107889190613ea7565b60405180910390f35b610799611cac565b6040516107a69190613e8c565b60405180910390f35b6107b7611cc0565b6040516107c49190613e8c565b60405180910390f35b6107e760048036038101906107e29190613107565b611cd4565b6040516107f49190613ea7565b60405180910390f35b610817600480360381019061081291906130de565b611d5b565b005b610833600480360381019061082e91906130de565b611e32565b005b61083d611f09565b60405161084a9190613e8c565b60405180910390f35b61086d600480360381019061086891906130de565b611f0f565b005b610889600480360381019061088491906130de565b6120b8565b005b60606004805461089a906140a4565b80601f01602080910402602001604051908101604052809291908181526020018280546108c6906140a4565b80156109135780601f106108e857610100808354040283529160200191610913565b820191906000526020600020905b8154815290600101906020018083116108f657829003601f168201915b5050505050905090565b600061093161092a61222f565b8484612237565b6001905092915050565b61094361222f565b73ffffffffffffffffffffffffffffffffffffffff16610961611790565b73ffffffffffffffffffffffffffffffffffffffff16146109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae90613cec565b60405180910390fd5b6001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610a1a61222f565b73ffffffffffffffffffffffffffffffffffffffff16610a38611790565b73ffffffffffffffffffffffffffffffffffffffff1614610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8590613cec565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fb6ef7f73baab9052ab7fc53a6a829c60fc2061319cbc5a8815cda0b168eaf23860405160405180910390a250565b6000600354905090565b670de0b6b3a764000081565b6000610b4f848484612402565b610c1084610b5b61222f565b610c0b856040518060600160405280602881526020016141f760289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bc161222f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129519092919063ffffffff16565b612237565b600190509392505050565b600b60029054906101000a900461ffff1681565b6101f481565b6000600660009054906101000a900460ff16905090565b6101f481565b6000610cfb610c5f61222f565b84610cf68560026000610c7061222f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121d190919063ffffffff16565b612237565b6001905092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610d8961222f565b73ffffffffffffffffffffffffffffffffffffffff16610da7611790565b73ffffffffffffffffffffffffffffffffffffffff1614610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490613cec565b60405180910390fd5b6001600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610e6061222f565b73ffffffffffffffffffffffffffffffffffffffff16610e7e611790565b73ffffffffffffffffffffffffffffffffffffffff1614610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90613cec565b60405180910390fd5b6101f461ffff168461ffff161115610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1890613ccc565b60405180910390fd5b6101f461ffff168361ffff161115610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6590613e4c565b60405180910390fd5b6101f461ffff168261ffff161115610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290613bac565b60405180910390fd5b6101f461ffff168161ffff161115611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90613dac565b60405180910390fd5b83600b60006101000a81548161ffff021916908361ffff16021790555082600b60026101000a81548161ffff021916908361ffff16021790555081600b60046101000a81548161ffff021916908361ffff16021790555080600b60066101000a81548161ffff021916908361ffff16021790555050505050565b6101f481565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600b60089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61115b61222f565b73ffffffffffffffffffffffffffffffffffffffff16611179611790565b73ffffffffffffffffffffffffffffffffffffffff16146111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690613cec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60095481565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112c161222f565b73ffffffffffffffffffffffffffffffffffffffff166112df611790565b73ffffffffffffffffffffffffffffffffffffffff1614611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c90613cec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c90613d8c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c90613e6c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147c90613c8c565b60405180910390fd5b82600b60086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b61155561222f565b73ffffffffffffffffffffffffffffffffffffffff16611573611790565b73ffffffffffffffffffffffffffffffffffffffff16146115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c090613cec565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f96f70f92a95a1baee76cf33fb5179d2a057804f1637981f4e4307ed748add68b60405160405180910390a250565b6000611671611790565b905090565b61167e61222f565b73ffffffffffffffffffffffffffffffffffffffff1661169c611790565b73ffffffffffffffffffffffffffffffffffffffff16146116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990613cec565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f1be493c1fe0b35ef45c72eb37db7abbbb73dfd671e5f4218085604c30f690ca860405160405180910390a250565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117c161222f565b73ffffffffffffffffffffffffffffffffffffffff166117df611790565b73ffffffffffffffffffffffffffffffffffffffff1614611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90613cec565b60405180910390fd5b670de0b6b3a7640000821015611880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187790613d4c565b60405180910390fd5b68056bc75e2d631000008110156118cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c390613d0c565b60405180910390fd5b8160098190555080600a819055505050565b6060600580546118ed906140a4565b80601f0160208091040260200160405190810160405280929190818152602001828054611919906140a4565b80156119665780601f1061193b57610100808354040283529160200191611966565b820191906000526020600020905b81548152906001019060200180831161194957829003601f168201915b5050505050905090565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000611adf611a2961222f565b84611ada8560405180606001604052806025815260200161421f6025913960026000611a5361222f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129519092919063ffffffff16565b612237565b6001905092915050565b6000611afd611af661222f565b8484612402565b6001905092915050565b600b60049054906101000a900461ffff1681565b611b2361222f565b73ffffffffffffffffffffffffffffffffffffffff16611b41611790565b73ffffffffffffffffffffffffffffffffffffffff1614611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e90613cec565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfd90613c4c565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb611c2a611790565b836040518363ffffffff1660e01b8152600401611c48929190613b26565b602060405180830381600087803b158015611c6257600080fd5b505af1158015611c76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c9a919061321d565b505050565b68056bc75e2d6310000081565b600b60009054906101000a900461ffff1681565b600b60069054906101000a900461ffff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611d6361222f565b73ffffffffffffffffffffffffffffffffffffffff16611d81611790565b73ffffffffffffffffffffffffffffffffffffffff1614611dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dce90613cec565b60405180910390fd5b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611e3a61222f565b73ffffffffffffffffffffffffffffffffffffffff16611e58611790565b73ffffffffffffffffffffffffffffffffffffffff1614611eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea590613cec565b60405180910390fd5b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6101f481565b611f1761222f565b73ffffffffffffffffffffffffffffffffffffffff16611f35611790565b73ffffffffffffffffffffffffffffffffffffffff1614611f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8290613cec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff290613bcc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6120c061222f565b73ffffffffffffffffffffffffffffffffffffffff166120de611790565b73ffffffffffffffffffffffffffffffffffffffff1614612134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212b90613cec565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167e1833734ad801e97532fe6d452adda05bf036ca3351ce1a433aa254ce50b2ac60405160405180910390a250565b60008082846121e09190613ef9565b905083811015612225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221c90613c0c565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229e90613dec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e90613bec565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123f59190613ea7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246990613c2c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d990613c6c565b60405180910390fd5b60008111612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251c90613d2c565b60405180910390fd5b6000600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156125cb5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126205750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b90508015612940576000612665612710612657600b60009054906101000a900461ffff1661ffff16866129b590919063ffffffff16565b612a3090919063ffffffff16565b90506126748561dead83612a7a565b6126878184612d4f90919063ffffffff16565b925060006126c66127106126b8600b60029054906101000a900461ffff1661ffff16876129b590919063ffffffff16565b612a3090919063ffffffff16565b90506000811180156127275750600073ffffffffffffffffffffffffffffffffffffffff16600b60089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561276f5761275986600b60089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612a7a565b61276c8185612d4f90919063ffffffff16565b93505b60006127ac61271061279e600b60049054906101000a900461ffff1661ffff16886129b590919063ffffffff16565b612a3090919063ffffffff16565b905060008111801561280d5750600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156128555761283f87600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612a7a565b6128528186612d4f90919063ffffffff16565b94505b6000612892612710612884600b60069054906101000a900461ffff1661ffff16896129b590919063ffffffff16565b612a3090919063ffffffff16565b90506000811180156128f35750600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561293b5761292588600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612a7a565b6129388187612d4f90919063ffffffff16565b95505b505050505b61294b848484612a7a565b50505050565b6000838311158290612999576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129909190613b6a565b60405180910390fd5b50600083856129a89190613fda565b9050809150509392505050565b6000808314156129c85760009050612a2a565b600082846129d69190613f80565b90508284826129e59190613f4f565b14612a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1c90613cac565b60405180910390fd5b809150505b92915050565b6000612a7283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612d99565b905092915050565b60008111612abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab490613d2c565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612b615750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9790613e2c565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580612c435750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c8e57600954811115612c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8490613e0c565b60405180910390fd5b5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612d3f57600a54612cfd82612cef8561110a565b6121d190919063ffffffff16565b1115612d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3590613d6c565b60405180910390fd5b5b612d4a838383612dfc565b505050565b6000612d9183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612951565b905092915050565b60008083118290612de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd79190613b6a565b60405180910390fd5b5060008385612def9190613f4f565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6390613dcc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed390613b8c565b60405180910390fd5b612f48816040518060600160405280602681526020016141d160269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129519092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612fdd81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121d190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161307d9190613ea7565b60405180910390a3505050565b60008135905061309981614174565b92915050565b6000815190506130ae8161418b565b92915050565b6000813590506130c3816141a2565b92915050565b6000813590506130d8816141b9565b92915050565b6000602082840312156130f057600080fd5b60006130fe8482850161308a565b91505092915050565b6000806040838503121561311a57600080fd5b60006131288582860161308a565b92505060206131398582860161308a565b9150509250929050565b60008060006060848603121561315857600080fd5b60006131668682870161308a565b93505060206131778682870161308a565b92505060406131888682870161308a565b9150509250925092565b6000806000606084860312156131a757600080fd5b60006131b58682870161308a565b93505060206131c68682870161308a565b92505060406131d7868287016130c9565b9150509250925092565b600080604083850312156131f457600080fd5b60006132028582860161308a565b9250506020613213858286016130c9565b9150509250929050565b60006020828403121561322f57600080fd5b600061323d8482850161309f565b91505092915050565b6000806000806080858703121561325c57600080fd5b600061326a878288016130b4565b945050602061327b878288016130b4565b935050604061328c878288016130b4565b925050606061329d878288016130b4565b91505092959194509250565b600080604083850312156132bc57600080fd5b60006132ca858286016130c9565b92505060206132db858286016130c9565b9150509250929050565b6132ee8161400e565b82525050565b6132fd81614020565b82525050565b600061330e82613edd565b6133188185613ee8565b9350613328818560208601614071565b61333181614163565b840191505092915050565b6000613349602383613ee8565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133af601483613ee8565b91507f5374616b696e6720666565206f766572666c6f770000000000000000000000006000830152602082019050919050565b60006133ef602683613ee8565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613455602283613ee8565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134bb601b83613ee8565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006134fb602183613ee8565b91507f45524332303a207472616e736665722066726f6d207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613561600d83613ee8565b91507f53656c66207769746864726177000000000000000000000000000000000000006000830152602082019050919050565b60006135a1601f83613ee8565b91507f45524332303a207472616e7366657220746f207a65726f2061646472657373006000830152602082019050919050565b60006135e1601683613ee8565b91507f496e76616c696420636f6d6d756e69747920706f6f6c000000000000000000006000830152602082019050919050565b6000613621602183613ee8565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613687601183613ee8565b91507f4275726e20666565206f766572666c6f770000000000000000000000000000006000830152602082019050919050565b60006136c7602083613ee8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613707601b83613ee8565b91507f4d61782077616c6c657420616d6f756e7420746f6f20736d616c6c00000000006000830152602082019050919050565b6000613747602983613ee8565b91507f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008301527f7468616e207a65726f00000000000000000000000000000000000000000000006020830152604082019050919050565b60006137ad601783613ee8565b91507f4d617820747820616d6f756e7420746f6f20736d616c6c0000000000000000006000830152602082019050919050565b60006137ed603883613ee8565b91507f546f6f206d616e7920746f6b656e732061726520676f696e6720746f2062652060008301527f73746f72656420696e20746172676574206163636f756e7400000000000000006020830152604082019050919050565b6000613853601583613ee8565b91507f496e76616c696420747265617375727920706f6f6c00000000000000000000006000830152602082019050919050565b6000613893601683613ee8565b91507f436f6d6d756e69747920666565206f766572666c6f77000000000000000000006000830152602082019050919050565b60006138d3602583613ee8565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613939602483613ee8565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061399f602b83613ee8565b91507f546f6f206d616e7920746f6b656e732061726520676f696e6720746f2062652060008301527f7472616e736665727265640000000000000000000000000000000000000000006020830152604082019050919050565b6000613a05602b83613ee8565b91507f5472616e736665722066726f6d206f7220746f2074686520626c61636b6c697360008301527f746564206163636f756e740000000000000000000000000000000000000000006020830152604082019050919050565b6000613a6b601583613ee8565b91507f547265617375727920666565206f766572666c6f7700000000000000000000006000830152602082019050919050565b6000613aab601483613ee8565b91507f496e76616c6964207374616b696e6720706f6f6c0000000000000000000000006000830152602082019050919050565b613ae78161402c565b82525050565b613af68161405a565b82525050565b613b0581614064565b82525050565b6000602082019050613b2060008301846132e5565b92915050565b6000604082019050613b3b60008301856132e5565b613b486020830184613aed565b9392505050565b6000602082019050613b6460008301846132f4565b92915050565b60006020820190508181036000830152613b848184613303565b905092915050565b60006020820190508181036000830152613ba58161333c565b9050919050565b60006020820190508181036000830152613bc5816133a2565b9050919050565b60006020820190508181036000830152613be5816133e2565b9050919050565b60006020820190508181036000830152613c0581613448565b9050919050565b60006020820190508181036000830152613c25816134ae565b9050919050565b60006020820190508181036000830152613c45816134ee565b9050919050565b60006020820190508181036000830152613c6581613554565b9050919050565b60006020820190508181036000830152613c8581613594565b9050919050565b60006020820190508181036000830152613ca5816135d4565b9050919050565b60006020820190508181036000830152613cc581613614565b9050919050565b60006020820190508181036000830152613ce58161367a565b9050919050565b60006020820190508181036000830152613d05816136ba565b9050919050565b60006020820190508181036000830152613d25816136fa565b9050919050565b60006020820190508181036000830152613d458161373a565b9050919050565b60006020820190508181036000830152613d65816137a0565b9050919050565b60006020820190508181036000830152613d85816137e0565b9050919050565b60006020820190508181036000830152613da581613846565b9050919050565b60006020820190508181036000830152613dc581613886565b9050919050565b60006020820190508181036000830152613de5816138c6565b9050919050565b60006020820190508181036000830152613e058161392c565b9050919050565b60006020820190508181036000830152613e2581613992565b9050919050565b60006020820190508181036000830152613e45816139f8565b9050919050565b60006020820190508181036000830152613e6581613a5e565b9050919050565b60006020820190508181036000830152613e8581613a9e565b9050919050565b6000602082019050613ea16000830184613ade565b92915050565b6000602082019050613ebc6000830184613aed565b92915050565b6000602082019050613ed76000830184613afc565b92915050565b600081519050919050565b600082825260208201905092915050565b6000613f048261405a565b9150613f0f8361405a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f4457613f436140d6565b5b828201905092915050565b6000613f5a8261405a565b9150613f658361405a565b925082613f7557613f74614105565b5b828204905092915050565b6000613f8b8261405a565b9150613f968361405a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fcf57613fce6140d6565b5b828202905092915050565b6000613fe58261405a565b9150613ff08361405a565b925082821015614003576140026140d6565b5b828203905092915050565b60006140198261403a565b9050919050565b60008115159050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561408f578082015181840152602081019050614074565b8381111561409e576000848401525b50505050565b600060028204905060018216806140bc57607f821691505b602082108114156140d0576140cf614134565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61417d8161400e565b811461418857600080fd5b50565b61419481614020565b811461419f57600080fd5b50565b6141ab8161402c565b81146141b657600080fd5b50565b6141c28161405a565b81146141cd57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220662a772c85bba36f55e27bf95603a6328420f6be1d351c0e1a1072ee822fee7a64736f6c63430008000033
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.