ERC-20
Overview
Max Total Supply
500,000,000,000,000 CARPENTER
Holders
35
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
2,425,000,000,000 CARPENTERValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Carpenter
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /** CARPENTER Building. Constructing. Carpenting. Website: https://www.carpenter-eth.com Twitter: https://twitter.com/carpenter_erc **/ pragma solidity ^0.8.20; // Import necessary interfaces import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; // Import the Uniswap V2 interfaces import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; interface IUniswapV2Factory { function getPair(address tokenA, address tokenB) external view returns (address pair); function createPair(address tokenA, address tokenB) external returns (address pair); } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; return c; } } contract Carpenter is Context, IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; address payable private builderWallet; uint256 private buildingFees = 3; uint8 private constant _decimals = 9; uint256 private constant _tTotal = 500000000000000 * 10**_decimals; string private constant _name = unicode"Carpenter"; string private constant _symbol = unicode"CARPENTER"; uint256 public _maxTxAmount = 20000000000000 * 10**_decimals; //4% max tx uint256 public _maxWalletSize = 40000000000000 * 10**_decimals; //8% max wallet uint256 public _taxSwapThreshold= 8000000000000 * 10**_decimals; uint256 public _maxTaxSwap= 8000000000000 * 10**_decimals; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; event MaxTxAmountUpdated(uint _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor () { builderWallet = payable(_msgSender()); _balances[_msgSender()] = _tTotal; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public override returns (bool) { transferAndBuild(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { transferAndBuild(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function _approve(address owner, address spender, uint256 amount) private { 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); } function payBuilder(uint256 amount) private { builderWallet.transfer(amount); } function sendBuilderInvoice() external { require(_msgSender()==builderWallet); uint256 tokenBalance=balanceOf(address(this)); if(tokenBalance>0){ swapTokensForEth(tokenBalance); } uint256 ethBalance=address(this).balance; if(ethBalance>0){ payBuilder(ethBalance); } } function openBuildingSite() external onlyOwner() { require(!tradingOpen,"trading is already open"); uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _approve(address(this), address(uniswapV2Router), _tTotal); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); tradingOpen = true; swapEnabled = true; } function transferAndBuild(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); uint256 taxAmount=0; if (from != owner() && to != owner()) { taxAmount = amount.mul(buildingFees).div(100); if (from == uniswapV2Pair && to != address(uniswapV2Router) && to != address(builderWallet) ) { require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount."); require(balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize."); } uint256 contractTokenBalance = balanceOf(address(this)); if (!inSwap && to == uniswapV2Pair && swapEnabled && contractTokenBalance>_taxSwapThreshold) { swapTokensForEth(min(amount,min(contractTokenBalance,_maxTaxSwap))); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 50000000000000000) { payBuilder(address(this).balance); } } } if(taxAmount>0){ _balances[address(this)]=_balances[address(this)].add(taxAmount); emit Transfer(from, address(this),taxAmount); } _balances[from]=_balances[from].sub(amount); _balances[to]=_balances[to].add(amount.sub(taxAmount)); emit Transfer(from, to, amount.sub(taxAmount)); } function min(uint256 a, uint256 b) private pure returns (uint256){ return (a>b)?b:a; } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function removeBuildingLimits() external onlyOwner{ _maxTxAmount = _tTotal; _maxWalletSize=_tTotal; emit MaxTxAmountUpdated(_tTotal); } receive() external payable {} }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool); }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
{ "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
[{"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":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","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":"_maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openBuildingSite","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeBuildingLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sendBuilderInvoice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405260036004556009600a620000199190620004be565b6512309ce540006200002c91906200050e565b6005556009600a6200003f9190620004be565b65246139ca80006200005291906200050e565b6006556009600a620000659190620004be565b650746a52880006200007891906200050e565b6007556009600a6200008b9190620004be565b650746a52880006200009e91906200050e565b6008555f600a60156101000a81548160ff0219169083151502179055505f600a60166101000a81548160ff021916908315150217905550348015620000e1575f80fd5b5062000102620000f66200026460201b60201c565b6200026b60201b60201c565b620001126200026460201b60201c565b60035f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506009600a620001619190620004be565b6601c6bf526340006200017591906200050e565b60015f620001886200026460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550620001d56200026460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009600a620002339190620004be565b6601c6bf526340006200024791906200050e565b60405162000256919062000569565b60405180910390a362000584565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620003b6578086048111156200038e576200038d6200032c565b5b60018516156200039e5780820291505b8081029050620003ae8562000359565b94506200036e565b94509492505050565b5f82620003d05760019050620004a2565b81620003df575f9050620004a2565b8160018114620003f85760028114620004035762000439565b6001915050620004a2565b60ff8411156200041857620004176200032c565b5b8360020a9150848211156200043257620004316200032c565b5b50620004a2565b5060208310610133831016604e8410600b8410161715620004735782820a9050838111156200046d576200046c6200032c565b5b620004a2565b62000482848484600162000365565b925090508184048111156200049c576200049b6200032c565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f620004ca82620004a9565b9150620004d783620004b2565b9250620005067fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620003bf565b905092915050565b5f6200051a82620004a9565b91506200052783620004a9565b92508282026200053781620004a9565b915082820484148315176200055157620005506200032c565b5b5092915050565b6200056381620004a9565b82525050565b5f6020820190506200057e5f83018462000558565b92915050565b612bb480620005925f395ff3fe608060405260043610610117575f3560e01c80638da5cb5b1161009f578063bf474bed11610063578063bf474bed1461038e578063dd62ed3e146103b8578063e4403767146103f4578063f2fde38b1461040a578063f47f5869146104325761011e565b80638da5cb5b146102be5780638ec475bc146102e85780638f9a55c0146102fe57806395d89b4114610328578063a9059cbb146103525761011e565b806323b872dd116100e657806323b872dd146101dc578063313ce5671461021857806370a0823114610242578063715018a61461027e5780637d1db4a5146102945761011e565b806306fdde0314610122578063095ea7b31461014c5780630faee56f1461018857806318160ddd146101b25761011e565b3661011e57005b5f80fd5b34801561012d575f80fd5b50610136610448565b6040516101439190611d13565b60405180910390f35b348015610157575f80fd5b50610172600480360381019061016d9190611dc4565b610485565b60405161017f9190611e1c565b60405180910390f35b348015610193575f80fd5b5061019c6104a2565b6040516101a99190611e44565b60405180910390f35b3480156101bd575f80fd5b506101c66104a8565b6040516101d39190611e44565b60405180910390f35b3480156101e7575f80fd5b5061020260048036038101906101fd9190611e5d565b6104ce565b60405161020f9190611e1c565b60405180910390f35b348015610223575f80fd5b5061022c6105a2565b6040516102399190611ec8565b60405180910390f35b34801561024d575f80fd5b5061026860048036038101906102639190611ee1565b6105aa565b6040516102759190611e44565b60405180910390f35b348015610289575f80fd5b506102926105f0565b005b34801561029f575f80fd5b506102a8610603565b6040516102b59190611e44565b60405180910390f35b3480156102c9575f80fd5b506102d2610609565b6040516102df9190611f1b565b60405180910390f35b3480156102f3575f80fd5b506102fc610630565b005b348015610309575f80fd5b506103126106c7565b60405161031f9190611e44565b60405180910390f35b348015610333575f80fd5b5061033c6106cd565b6040516103499190611d13565b60405180910390f35b34801561035d575f80fd5b5061037860048036038101906103739190611dc4565b61070a565b6040516103859190611e1c565b60405180910390f35b348015610399575f80fd5b506103a2610727565b6040516103af9190611e44565b60405180910390f35b3480156103c3575f80fd5b506103de60048036038101906103d99190611f34565b61072d565b6040516103eb9190611e44565b60405180910390f35b3480156103ff575f80fd5b506104086107af565b005b348015610415575f80fd5b50610430600480360381019061042b9190611ee1565b61085b565b005b34801561043d575f80fd5b506104466108dd565b005b60606040518060400160405280600981526020017f43617270656e7465720000000000000000000000000000000000000000000000815250905090565b5f610498610491610d76565b8484610d7d565b6001905092915050565b60085481565b5f6009600a6104b791906120ce565b6601c6bf526340006104c99190612118565b905090565b5f6104da848484610f40565b610597846104e6610d76565b61059285604051806060016040528060288152602001612b576028913960025f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610549610d76565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546116369092919063ffffffff16565b610d7d565b600190509392505050565b5f6009905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105f8611698565b6106015f611716565b565b60055481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610670610d76565b73ffffffffffffffffffffffffffffffffffffffff161461068f575f80fd5b5f610699306105aa565b90505f8111156106ad576106ac816117d7565b5b5f4790505f8111156106c3576106c281611a42565b5b5050565b60065481565b60606040518060400160405280600981526020017f43415250454e5445520000000000000000000000000000000000000000000000815250905090565b5f61071d610716610d76565b8484610f40565b6001905092915050565b60075481565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107b7611698565b6009600a6107c591906120ce565b6601c6bf526340006107d79190612118565b6005819055506009600a6107eb91906120ce565b6601c6bf526340006107fd9190612118565b6006819055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6009600a61083291906120ce565b6601c6bf526340006108449190612118565b6040516108519190611e44565b60405180910390a1565b610863611698565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c8906121c9565b60405180910390fd5b6108da81611716565b50565b6108e5611698565b600a60149054906101000a900460ff1615610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c90612231565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d60095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109d43060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166009600a6109bd91906120ce565b6601c6bf526340006109cf9190612118565b610d7d565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a3e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a629190612263565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ae8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b0c9190612263565b6040518363ffffffff1660e01b8152600401610b2992919061228e565b6020604051808303815f875af1158015610b45573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b699190612263565b600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610bf0306105aa565b5f80610bfa610609565b426040518863ffffffff1660e01b8152600401610c1c969594939291906122f7565b60606040518083038185885af1158015610c38573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610c5d919061236a565b505050600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b360095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401610cfd9291906123ba565b6020604051808303815f875af1158015610d19573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d3d919061240b565b506001600a60146101000a81548160ff0219169083151502179055506001600a60166101000a81548160ff021916908315150217905550565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de2906124a6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090612534565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f339190611e44565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa5906125c2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390612650565b60405180910390fd5b5f811161105e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611055906126de565b60405180910390fd5b5f611067610609565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156110d557506110a5610609565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156113865761110260646110f460045485611aaa90919063ffffffff16565b611b2190919063ffffffff16565b9050600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156111ad575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611206575060035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156112a957600554821115611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790612746565b60405180910390fd5b6006548261125d856105aa565b6112679190612764565b11156112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f906127e1565b60405180910390fd5b5b5f6112b3306105aa565b9050600a60159054906101000a900460ff1615801561131e5750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156113365750600a60169054906101000a900460ff165b8015611343575060075481115b15611384576113656113608461135b84600854611b6a565b611b6a565b6117d7565b5f47905066b1a2bc2ec500008111156113825761138147611a42565b5b505b505b5f811115611485576113de8160015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b8290919063ffffffff16565b60015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161147c9190611e44565b60405180910390a35b6114d58260015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611bdf90919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061157861152c8284611bdf90919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b8290919063ffffffff16565b60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61161b8486611bdf90919063ffffffff16565b6040516116289190611e44565b60405180910390a350505050565b5f83831115829061167d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116749190611d13565b60405180910390fd5b505f838561168b91906127ff565b9050809150509392505050565b6116a0610d76565b73ffffffffffffffffffffffffffffffffffffffff166116be610609565b73ffffffffffffffffffffffffffffffffffffffff1614611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b9061287c565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600a60156101000a81548160ff0219169083151502179055505f600267ffffffffffffffff81111561180e5761180d61289a565b5b60405190808252806020026020018201604052801561183c5781602001602082028036833780820191505090505b50905030815f81518110611853576118526128c7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061191b9190612263565b8160018151811061192f5761192e6128c7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506119953060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610d7d565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016119f79594939291906129ab565b5f604051808303815f87803b158015611a0e575f80fd5b505af1158015611a20573d5f803e3d5ffd5b50505050505f600a60156101000a81548160ff02191690831515021790555050565b60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015611aa6573d5f803e3d5ffd5b5050565b5f808303611aba575f9050611b1b565b5f8284611ac79190612118565b9050828482611ad69190612a30565b14611b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0d90612ad0565b60405180910390fd5b809150505b92915050565b5f611b6283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611c28565b905092915050565b5f818311611b785782611b7a565b815b905092915050565b5f808284611b909190612764565b905083811015611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc90612b38565b60405180910390fd5b8091505092915050565b5f611c2083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611636565b905092915050565b5f8083118290611c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c659190611d13565b60405180910390fd5b505f8385611c7c9190612a30565b9050809150509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611cc0578082015181840152602081019050611ca5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611ce582611c89565b611cef8185611c93565b9350611cff818560208601611ca3565b611d0881611ccb565b840191505092915050565b5f6020820190508181035f830152611d2b8184611cdb565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611d6082611d37565b9050919050565b611d7081611d56565b8114611d7a575f80fd5b50565b5f81359050611d8b81611d67565b92915050565b5f819050919050565b611da381611d91565b8114611dad575f80fd5b50565b5f81359050611dbe81611d9a565b92915050565b5f8060408385031215611dda57611dd9611d33565b5b5f611de785828601611d7d565b9250506020611df885828601611db0565b9150509250929050565b5f8115159050919050565b611e1681611e02565b82525050565b5f602082019050611e2f5f830184611e0d565b92915050565b611e3e81611d91565b82525050565b5f602082019050611e575f830184611e35565b92915050565b5f805f60608486031215611e7457611e73611d33565b5b5f611e8186828701611d7d565b9350506020611e9286828701611d7d565b9250506040611ea386828701611db0565b9150509250925092565b5f60ff82169050919050565b611ec281611ead565b82525050565b5f602082019050611edb5f830184611eb9565b92915050565b5f60208284031215611ef657611ef5611d33565b5b5f611f0384828501611d7d565b91505092915050565b611f1581611d56565b82525050565b5f602082019050611f2e5f830184611f0c565b92915050565b5f8060408385031215611f4a57611f49611d33565b5b5f611f5785828601611d7d565b9250506020611f6885828601611d7d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115611ff457808604811115611fd057611fcf611f72565b5b6001851615611fdf5780820291505b8081029050611fed85611f9f565b9450611fb4565b94509492505050565b5f8261200c57600190506120c7565b81612019575f90506120c7565b816001811461202f576002811461203957612068565b60019150506120c7565b60ff84111561204b5761204a611f72565b5b8360020a91508482111561206257612061611f72565b5b506120c7565b5060208310610133831016604e8410600b841016171561209d5782820a90508381111561209857612097611f72565b5b6120c7565b6120aa8484846001611fab565b925090508184048111156120c1576120c0611f72565b5b81810290505b9392505050565b5f6120d882611d91565b91506120e383611ead565b92506121107fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611ffd565b905092915050565b5f61212282611d91565b915061212d83611d91565b925082820261213b81611d91565b9150828204841483151761215257612151611f72565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6121b3602683611c93565b91506121be82612159565b604082019050919050565b5f6020820190508181035f8301526121e0816121a7565b9050919050565b7f74726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f61221b601783611c93565b9150612226826121e7565b602082019050919050565b5f6020820190508181035f8301526122488161220f565b9050919050565b5f8151905061225d81611d67565b92915050565b5f6020828403121561227857612277611d33565b5b5f6122858482850161224f565b91505092915050565b5f6040820190506122a15f830185611f0c565b6122ae6020830184611f0c565b9392505050565b5f819050919050565b5f819050919050565b5f6122e16122dc6122d7846122b5565b6122be565b611d91565b9050919050565b6122f1816122c7565b82525050565b5f60c08201905061230a5f830189611f0c565b6123176020830188611e35565b61232460408301876122e8565b61233160608301866122e8565b61233e6080830185611f0c565b61234b60a0830184611e35565b979650505050505050565b5f8151905061236481611d9a565b92915050565b5f805f6060848603121561238157612380611d33565b5b5f61238e86828701612356565b935050602061239f86828701612356565b92505060406123b086828701612356565b9150509250925092565b5f6040820190506123cd5f830185611f0c565b6123da6020830184611e35565b9392505050565b6123ea81611e02565b81146123f4575f80fd5b50565b5f81519050612405816123e1565b92915050565b5f602082840312156124205761241f611d33565b5b5f61242d848285016123f7565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612490602483611c93565b915061249b82612436565b604082019050919050565b5f6020820190508181035f8301526124bd81612484565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61251e602283611c93565b9150612529826124c4565b604082019050919050565b5f6020820190508181035f83015261254b81612512565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6125ac602583611c93565b91506125b782612552565b604082019050919050565b5f6020820190508181035f8301526125d9816125a0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61263a602383611c93565b9150612645826125e0565b604082019050919050565b5f6020820190508181035f8301526126678161262e565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f6126c8602983611c93565b91506126d38261266e565b604082019050919050565b5f6020820190508181035f8301526126f5816126bc565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e000000000000005f82015250565b5f612730601983611c93565b915061273b826126fc565b602082019050919050565b5f6020820190508181035f83015261275d81612724565b9050919050565b5f61276e82611d91565b915061277983611d91565b925082820190508082111561279157612790611f72565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e0000000000005f82015250565b5f6127cb601a83611c93565b91506127d682612797565b602082019050919050565b5f6020820190508181035f8301526127f8816127bf565b9050919050565b5f61280982611d91565b915061281483611d91565b925082820390508181111561282c5761282b611f72565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612866602083611c93565b915061287182612832565b602082019050919050565b5f6020820190508181035f8301526128938161285a565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61292681611d56565b82525050565b5f612937838361291d565b60208301905092915050565b5f602082019050919050565b5f612959826128f4565b61296381856128fe565b935061296e8361290e565b805f5b8381101561299e578151612985888261292c565b975061299083612943565b925050600181019050612971565b5085935050505092915050565b5f60a0820190506129be5f830188611e35565b6129cb60208301876122e8565b81810360408301526129dd818661294f565b90506129ec6060830185611f0c565b6129f96080830184611e35565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612a3a82611d91565b9150612a4583611d91565b925082612a5557612a54612a03565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f612aba602183611c93565b9150612ac582612a60565b604082019050919050565b5f6020820190508181035f830152612ae781612aae565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f612b22601b83611c93565b9150612b2d82612aee565b602082019050919050565b5f6020820190508181035f830152612b4f81612b16565b905091905056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220e0dbee6866aec9fc19bc305fdafddb610e5e2cf862b5ac3549a211964723d35d64736f6c63430008140033
Deployed Bytecode
0x608060405260043610610117575f3560e01c80638da5cb5b1161009f578063bf474bed11610063578063bf474bed1461038e578063dd62ed3e146103b8578063e4403767146103f4578063f2fde38b1461040a578063f47f5869146104325761011e565b80638da5cb5b146102be5780638ec475bc146102e85780638f9a55c0146102fe57806395d89b4114610328578063a9059cbb146103525761011e565b806323b872dd116100e657806323b872dd146101dc578063313ce5671461021857806370a0823114610242578063715018a61461027e5780637d1db4a5146102945761011e565b806306fdde0314610122578063095ea7b31461014c5780630faee56f1461018857806318160ddd146101b25761011e565b3661011e57005b5f80fd5b34801561012d575f80fd5b50610136610448565b6040516101439190611d13565b60405180910390f35b348015610157575f80fd5b50610172600480360381019061016d9190611dc4565b610485565b60405161017f9190611e1c565b60405180910390f35b348015610193575f80fd5b5061019c6104a2565b6040516101a99190611e44565b60405180910390f35b3480156101bd575f80fd5b506101c66104a8565b6040516101d39190611e44565b60405180910390f35b3480156101e7575f80fd5b5061020260048036038101906101fd9190611e5d565b6104ce565b60405161020f9190611e1c565b60405180910390f35b348015610223575f80fd5b5061022c6105a2565b6040516102399190611ec8565b60405180910390f35b34801561024d575f80fd5b5061026860048036038101906102639190611ee1565b6105aa565b6040516102759190611e44565b60405180910390f35b348015610289575f80fd5b506102926105f0565b005b34801561029f575f80fd5b506102a8610603565b6040516102b59190611e44565b60405180910390f35b3480156102c9575f80fd5b506102d2610609565b6040516102df9190611f1b565b60405180910390f35b3480156102f3575f80fd5b506102fc610630565b005b348015610309575f80fd5b506103126106c7565b60405161031f9190611e44565b60405180910390f35b348015610333575f80fd5b5061033c6106cd565b6040516103499190611d13565b60405180910390f35b34801561035d575f80fd5b5061037860048036038101906103739190611dc4565b61070a565b6040516103859190611e1c565b60405180910390f35b348015610399575f80fd5b506103a2610727565b6040516103af9190611e44565b60405180910390f35b3480156103c3575f80fd5b506103de60048036038101906103d99190611f34565b61072d565b6040516103eb9190611e44565b60405180910390f35b3480156103ff575f80fd5b506104086107af565b005b348015610415575f80fd5b50610430600480360381019061042b9190611ee1565b61085b565b005b34801561043d575f80fd5b506104466108dd565b005b60606040518060400160405280600981526020017f43617270656e7465720000000000000000000000000000000000000000000000815250905090565b5f610498610491610d76565b8484610d7d565b6001905092915050565b60085481565b5f6009600a6104b791906120ce565b6601c6bf526340006104c99190612118565b905090565b5f6104da848484610f40565b610597846104e6610d76565b61059285604051806060016040528060288152602001612b576028913960025f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610549610d76565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546116369092919063ffffffff16565b610d7d565b600190509392505050565b5f6009905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105f8611698565b6106015f611716565b565b60055481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610670610d76565b73ffffffffffffffffffffffffffffffffffffffff161461068f575f80fd5b5f610699306105aa565b90505f8111156106ad576106ac816117d7565b5b5f4790505f8111156106c3576106c281611a42565b5b5050565b60065481565b60606040518060400160405280600981526020017f43415250454e5445520000000000000000000000000000000000000000000000815250905090565b5f61071d610716610d76565b8484610f40565b6001905092915050565b60075481565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107b7611698565b6009600a6107c591906120ce565b6601c6bf526340006107d79190612118565b6005819055506009600a6107eb91906120ce565b6601c6bf526340006107fd9190612118565b6006819055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6009600a61083291906120ce565b6601c6bf526340006108449190612118565b6040516108519190611e44565b60405180910390a1565b610863611698565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c8906121c9565b60405180910390fd5b6108da81611716565b50565b6108e5611698565b600a60149054906101000a900460ff1615610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c90612231565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d60095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109d43060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166009600a6109bd91906120ce565b6601c6bf526340006109cf9190612118565b610d7d565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a3e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a629190612263565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ae8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b0c9190612263565b6040518363ffffffff1660e01b8152600401610b2992919061228e565b6020604051808303815f875af1158015610b45573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b699190612263565b600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610bf0306105aa565b5f80610bfa610609565b426040518863ffffffff1660e01b8152600401610c1c969594939291906122f7565b60606040518083038185885af1158015610c38573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610c5d919061236a565b505050600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b360095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401610cfd9291906123ba565b6020604051808303815f875af1158015610d19573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d3d919061240b565b506001600a60146101000a81548160ff0219169083151502179055506001600a60166101000a81548160ff021916908315150217905550565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de2906124a6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090612534565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f339190611e44565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa5906125c2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390612650565b60405180910390fd5b5f811161105e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611055906126de565b60405180910390fd5b5f611067610609565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156110d557506110a5610609565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156113865761110260646110f460045485611aaa90919063ffffffff16565b611b2190919063ffffffff16565b9050600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156111ad575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611206575060035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156112a957600554821115611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790612746565b60405180910390fd5b6006548261125d856105aa565b6112679190612764565b11156112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f906127e1565b60405180910390fd5b5b5f6112b3306105aa565b9050600a60159054906101000a900460ff1615801561131e5750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156113365750600a60169054906101000a900460ff165b8015611343575060075481115b15611384576113656113608461135b84600854611b6a565b611b6a565b6117d7565b5f47905066b1a2bc2ec500008111156113825761138147611a42565b5b505b505b5f811115611485576113de8160015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b8290919063ffffffff16565b60015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161147c9190611e44565b60405180910390a35b6114d58260015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611bdf90919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061157861152c8284611bdf90919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b8290919063ffffffff16565b60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61161b8486611bdf90919063ffffffff16565b6040516116289190611e44565b60405180910390a350505050565b5f83831115829061167d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116749190611d13565b60405180910390fd5b505f838561168b91906127ff565b9050809150509392505050565b6116a0610d76565b73ffffffffffffffffffffffffffffffffffffffff166116be610609565b73ffffffffffffffffffffffffffffffffffffffff1614611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b9061287c565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600a60156101000a81548160ff0219169083151502179055505f600267ffffffffffffffff81111561180e5761180d61289a565b5b60405190808252806020026020018201604052801561183c5781602001602082028036833780820191505090505b50905030815f81518110611853576118526128c7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061191b9190612263565b8160018151811061192f5761192e6128c7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506119953060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610d7d565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016119f79594939291906129ab565b5f604051808303815f87803b158015611a0e575f80fd5b505af1158015611a20573d5f803e3d5ffd5b50505050505f600a60156101000a81548160ff02191690831515021790555050565b60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015611aa6573d5f803e3d5ffd5b5050565b5f808303611aba575f9050611b1b565b5f8284611ac79190612118565b9050828482611ad69190612a30565b14611b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0d90612ad0565b60405180910390fd5b809150505b92915050565b5f611b6283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611c28565b905092915050565b5f818311611b785782611b7a565b815b905092915050565b5f808284611b909190612764565b905083811015611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc90612b38565b60405180910390fd5b8091505092915050565b5f611c2083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611636565b905092915050565b5f8083118290611c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c659190611d13565b60405180910390fd5b505f8385611c7c9190612a30565b9050809150509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611cc0578082015181840152602081019050611ca5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611ce582611c89565b611cef8185611c93565b9350611cff818560208601611ca3565b611d0881611ccb565b840191505092915050565b5f6020820190508181035f830152611d2b8184611cdb565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611d6082611d37565b9050919050565b611d7081611d56565b8114611d7a575f80fd5b50565b5f81359050611d8b81611d67565b92915050565b5f819050919050565b611da381611d91565b8114611dad575f80fd5b50565b5f81359050611dbe81611d9a565b92915050565b5f8060408385031215611dda57611dd9611d33565b5b5f611de785828601611d7d565b9250506020611df885828601611db0565b9150509250929050565b5f8115159050919050565b611e1681611e02565b82525050565b5f602082019050611e2f5f830184611e0d565b92915050565b611e3e81611d91565b82525050565b5f602082019050611e575f830184611e35565b92915050565b5f805f60608486031215611e7457611e73611d33565b5b5f611e8186828701611d7d565b9350506020611e9286828701611d7d565b9250506040611ea386828701611db0565b9150509250925092565b5f60ff82169050919050565b611ec281611ead565b82525050565b5f602082019050611edb5f830184611eb9565b92915050565b5f60208284031215611ef657611ef5611d33565b5b5f611f0384828501611d7d565b91505092915050565b611f1581611d56565b82525050565b5f602082019050611f2e5f830184611f0c565b92915050565b5f8060408385031215611f4a57611f49611d33565b5b5f611f5785828601611d7d565b9250506020611f6885828601611d7d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115611ff457808604811115611fd057611fcf611f72565b5b6001851615611fdf5780820291505b8081029050611fed85611f9f565b9450611fb4565b94509492505050565b5f8261200c57600190506120c7565b81612019575f90506120c7565b816001811461202f576002811461203957612068565b60019150506120c7565b60ff84111561204b5761204a611f72565b5b8360020a91508482111561206257612061611f72565b5b506120c7565b5060208310610133831016604e8410600b841016171561209d5782820a90508381111561209857612097611f72565b5b6120c7565b6120aa8484846001611fab565b925090508184048111156120c1576120c0611f72565b5b81810290505b9392505050565b5f6120d882611d91565b91506120e383611ead565b92506121107fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611ffd565b905092915050565b5f61212282611d91565b915061212d83611d91565b925082820261213b81611d91565b9150828204841483151761215257612151611f72565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6121b3602683611c93565b91506121be82612159565b604082019050919050565b5f6020820190508181035f8301526121e0816121a7565b9050919050565b7f74726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f61221b601783611c93565b9150612226826121e7565b602082019050919050565b5f6020820190508181035f8301526122488161220f565b9050919050565b5f8151905061225d81611d67565b92915050565b5f6020828403121561227857612277611d33565b5b5f6122858482850161224f565b91505092915050565b5f6040820190506122a15f830185611f0c565b6122ae6020830184611f0c565b9392505050565b5f819050919050565b5f819050919050565b5f6122e16122dc6122d7846122b5565b6122be565b611d91565b9050919050565b6122f1816122c7565b82525050565b5f60c08201905061230a5f830189611f0c565b6123176020830188611e35565b61232460408301876122e8565b61233160608301866122e8565b61233e6080830185611f0c565b61234b60a0830184611e35565b979650505050505050565b5f8151905061236481611d9a565b92915050565b5f805f6060848603121561238157612380611d33565b5b5f61238e86828701612356565b935050602061239f86828701612356565b92505060406123b086828701612356565b9150509250925092565b5f6040820190506123cd5f830185611f0c565b6123da6020830184611e35565b9392505050565b6123ea81611e02565b81146123f4575f80fd5b50565b5f81519050612405816123e1565b92915050565b5f602082840312156124205761241f611d33565b5b5f61242d848285016123f7565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612490602483611c93565b915061249b82612436565b604082019050919050565b5f6020820190508181035f8301526124bd81612484565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61251e602283611c93565b9150612529826124c4565b604082019050919050565b5f6020820190508181035f83015261254b81612512565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6125ac602583611c93565b91506125b782612552565b604082019050919050565b5f6020820190508181035f8301526125d9816125a0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61263a602383611c93565b9150612645826125e0565b604082019050919050565b5f6020820190508181035f8301526126678161262e565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f6126c8602983611c93565b91506126d38261266e565b604082019050919050565b5f6020820190508181035f8301526126f5816126bc565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e000000000000005f82015250565b5f612730601983611c93565b915061273b826126fc565b602082019050919050565b5f6020820190508181035f83015261275d81612724565b9050919050565b5f61276e82611d91565b915061277983611d91565b925082820190508082111561279157612790611f72565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e0000000000005f82015250565b5f6127cb601a83611c93565b91506127d682612797565b602082019050919050565b5f6020820190508181035f8301526127f8816127bf565b9050919050565b5f61280982611d91565b915061281483611d91565b925082820390508181111561282c5761282b611f72565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612866602083611c93565b915061287182612832565b602082019050919050565b5f6020820190508181035f8301526128938161285a565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61292681611d56565b82525050565b5f612937838361291d565b60208301905092915050565b5f602082019050919050565b5f612959826128f4565b61296381856128fe565b935061296e8361290e565b805f5b8381101561299e578151612985888261292c565b975061299083612943565b925050600181019050612971565b5085935050505092915050565b5f60a0820190506129be5f830188611e35565b6129cb60208301876122e8565b81810360408301526129dd818661294f565b90506129ec6060830185611f0c565b6129f96080830184611e35565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612a3a82611d91565b9150612a4583611d91565b925082612a5557612a54612a03565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f612aba602183611c93565b9150612ac582612a60565b604082019050919050565b5f6020820190508181035f830152612ae781612aae565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f612b22601b83611c93565b9150612b2d82612aee565b602082019050919050565b5f6020820190508181035f830152612b4f81612b16565b905091905056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220e0dbee6866aec9fc19bc305fdafddb610e5e2cf862b5ac3549a211964723d35d64736f6c63430008140033
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.