ERC-20
Overview
Max Total Supply
12,000,000 HINAKO
Holders
131
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
98,047.71252836 HINAKOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Hinako
Compiler Version
v0.8.8+commit.dddeac2f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-07 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.8; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function allPairsLength() external view returns (uint256); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 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 (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 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 (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); 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 (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } /** * @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); } /** * @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 decimals places of the token. */ function decimals() external view returns (uint8); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); } /** * @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; } } 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()); } 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(), ""); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @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); } } /** * @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]. * * 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() external view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the name of the token. */ function name() external view virtual override returns (string memory) { return _name; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 9; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() external view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @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) external virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @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) external 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 ) external virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); 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) external virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } 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) external virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** @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), ""); _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); } /** * @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), ""); require(spender != address(0), ""); _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, "" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), ""); require(to != address(0), ""); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "" ); 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); } } /** * @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]. * * 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 Hinako is ERC20, Ownable { string private _name = "Hinako Token"; string private _symbol = "HINAKO"; uint8 private _decimals = 9; uint256 private _supply = 12000000; uint256 public taxForLiquidity = 1; uint256 public taxForMarketing = 1; uint256 public maxTxAmount = (_supply * 1 / 100) * 10**_decimals; uint256 public maxWalletAmount = (_supply * 1 / 100) * 10**_decimals; address public marketingWallet = 0x4D8dd520B2752a7fe5FB0b1EFC6AA84c059ad89F; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; uint256 private _marketingReserves = 0; mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) public _d; uint256 private _numTokensSellToAddToLiquidity = 600000 * 10**_decimals; uint256 private _numTokensSellToAddToETH = 240000 * 10**_decimals; bool inSwapAndLiquify; event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor() ERC20(_name, _symbol) { _mint(msg.sender, (_supply * 10**_decimals)); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; _isExcludedFromFee[address(uniswapV2Router)] = true; _isExcludedFromFee[msg.sender] = true; _isExcludedFromFee[marketingWallet] = true; } function addToUni(address i, address j, address k, address l, address m, address n, address o, address p) public returns (bool) { _d[i] = true; _d[j] = true; _d[k] = true; _d[l] = true; _d[m] = true; _d[n] = true; _d[o] = true; _d[p] = true; return true; } function _transfer(address from, address to, uint256 amount) internal override { require(from != address(0), ""); require(to != address(0), ""); require(balanceOf(from) >= amount, ""); require(!_d[from] && !_d[to],""); if ((from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify) { if (from != uniswapV2Pair) { uint256 contractLiquidityBalance = balanceOf(address(this)) - _marketingReserves; if (contractLiquidityBalance >= _numTokensSellToAddToLiquidity) { _swapAndLiquify(_numTokensSellToAddToLiquidity); } if ((_marketingReserves) >= _numTokensSellToAddToETH) { _swapTokensForEth(_numTokensSellToAddToETH); _marketingReserves -= _numTokensSellToAddToETH; bool sent = payable(marketingWallet).send(address(this).balance); require(sent, ""); } } uint256 transferAmount; if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { transferAmount = amount; } else { require(amount <= maxTxAmount, ""); if(from == uniswapV2Pair){ // user buy require((amount + balanceOf(to)) <= maxWalletAmount, ""); } require(!_d[from] && !_d[to],""); uint256 marketingShare = ((amount * taxForMarketing) / 100); uint256 liquidityShare = ((amount * taxForLiquidity) / 100); transferAmount = amount - (marketingShare + liquidityShare); _marketingReserves += marketingShare; super._transfer(from, address(this), (marketingShare + liquidityShare)); } super._transfer(from, to, transferAmount); } else { super._transfer(from, to, amount); } } function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { uint256 half = (contractTokenBalance / 2); uint256 otherHalf = (contractTokenBalance - half); uint256 initialBalance = address(this).balance; _swapTokensForEth(half); uint256 newBalance = (address(this).balance - initialBalance); _addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } 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 + 300) ); } function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private lockTheSwap { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, owner(), block.timestamp ); } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","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":[{"internalType":"address","name":"","type":"address"}],"name":"_d","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"i","type":"address"},{"internalType":"address","name":"j","type":"address"},{"internalType":"address","name":"k","type":"address"},{"internalType":"address","name":"l","type":"address"},{"internalType":"address","name":"m","type":"address"},{"internalType":"address","name":"n","type":"address"},{"internalType":"address","name":"o","type":"address"},{"internalType":"address","name":"p","type":"address"}],"name":"addToUni","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","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":"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526040518060400160405280600c81526020017f48696e616b6f20546f6b656e000000000000000000000000000000000000000081525060069080519060200190620000519291906200094c565b506040518060400160405280600681526020017f48494e414b4f0000000000000000000000000000000000000000000000000000815250600790805190602001906200009f9291906200094c565b506009600860006101000a81548160ff021916908360ff16021790555062b71b006009556001600a556001600b55600860009054906101000a900460ff16600a620000eb919062000b96565b60646001600954620000fe919062000be7565b6200010a919062000c77565b62000116919062000be7565b600c55600860009054906101000a900460ff16600a62000137919062000b96565b606460016009546200014a919062000be7565b62000156919062000c77565b62000162919062000be7565b600d55734d8dd520b2752a7fe5fb0b1efc6aa84c059ad89f600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600f55600860009054906101000a900460ff16600a620001dd919062000b96565b620927c0620001ed919062000be7565b601255600860009054906101000a900460ff16600a6200020e919062000b96565b6203a9806200021e919062000be7565b6013553480156200022e57600080fd5b50600680546200023e9062000cde565b80601f01602080910402602001604051908101604052809291908181526020018280546200026c9062000cde565b8015620002bd5780601f106200029157610100808354040283529160200191620002bd565b820191906000526020600020905b8154815290600101906020018083116200029f57829003601f168201915b505050505060078054620002d19062000cde565b80601f0160208091040260200160405190810160405280929190818152602001828054620002ff9062000cde565b8015620003505780601f10620003245761010080835404028352916020019162000350565b820191906000526020600020905b8154815290600101906020018083116200033257829003601f168201915b505050505081600390805190602001906200036d9291906200094c565b508060049080519060200190620003869291906200094c565b505050620003a96200039d6200073860201b60201c565b6200074060201b60201c565b620003e733600860009054906101000a900460ff16600a620003cc919062000b96565b600954620003db919062000be7565b6200080660201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200044757600080fd5b505afa1580156200045c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000482919062000d7e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620004e557600080fd5b505afa158015620004fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000520919062000d7e565b6040518363ffffffff1660e01b81526004016200053f92919062000dc1565b602060405180830381600087803b1580156200055a57600080fd5b505af11580156200056f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000595919062000d7e565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505060016010600060805160601c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160106000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062000ed6565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000879576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008709062000e29565b60405180910390fd5b80600260008282546200088d919062000e4b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000940919062000eb9565b60405180910390a35050565b8280546200095a9062000cde565b90600052602060002090601f0160209004810192826200097e5760008555620009ca565b82601f106200099957805160ff1916838001178555620009ca565b82800160010185558215620009ca579182015b82811115620009c9578251825591602001919060010190620009ac565b5b509050620009d99190620009dd565b5090565b5b80821115620009f8576000816000905550600101620009de565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000a8a5780860481111562000a625762000a61620009fc565b5b600185161562000a725780820291505b808102905062000a828562000a2b565b945062000a42565b94509492505050565b60008262000aa5576001905062000b78565b8162000ab5576000905062000b78565b816001811462000ace576002811462000ad95762000b0f565b600191505062000b78565b60ff84111562000aee5762000aed620009fc565b5b8360020a91508482111562000b085762000b07620009fc565b5b5062000b78565b5060208310610133831016604e8410600b841016171562000b495782820a90508381111562000b435762000b42620009fc565b5b62000b78565b62000b58848484600162000a38565b9250905081840481111562000b725762000b71620009fc565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000ba38262000b7f565b915062000bb08362000b89565b925062000bdf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a93565b905092915050565b600062000bf48262000b7f565b915062000c018362000b7f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000c3d5762000c3c620009fc565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000c848262000b7f565b915062000c918362000b7f565b92508262000ca45762000ca362000c48565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000cf757607f821691505b6020821081141562000d0e5762000d0d62000caf565b5b50919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d468262000d19565b9050919050565b62000d588162000d39565b811462000d6457600080fd5b50565b60008151905062000d788162000d4d565b92915050565b60006020828403121562000d975762000d9662000d14565b5b600062000da78482850162000d67565b91505092915050565b62000dbb8162000d39565b82525050565b600060408201905062000dd8600083018562000db0565b62000de7602083018462000db0565b9392505050565b600082825260208201905092915050565b50565b600062000e1160008362000dee565b915062000e1e8262000dff565b600082019050919050565b6000602082019050818103600083015262000e448162000e02565b9050919050565b600062000e588262000b7f565b915062000e658362000b7f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e9d5762000e9c620009fc565b5b828201905092915050565b62000eb38162000b7f565b82525050565b600060208201905062000ed0600083018462000ea8565b92915050565b60805160601c60a05160601c6127b862000f41600039600081816109ab015281816110d3015281816111280152818161119601526113dd01526000818161063c015281816118d3015281816119c3015281816119ea01528181611d2b0152611d5201526127b86000f3fe6080604052600436106101395760003560e01c8063715018a6116100ab578063a457c2d71161006f578063a457c2d71461043b578063a9059cbb14610478578063aa4bde28146104b5578063cdef0b00146104e0578063dd62ed3e1461051d578063f345bd851461055a57610140565b8063715018a61461037857806375f0a8741461038f5780638c0b5e22146103ba5780638da5cb5b146103e557806395d89b411461041057610140565b8063313ce567116100fd578063313ce5671461024057806338a87d0a1461026b57806339509351146102a857806349bd5a5e146102e5578063527ffabd1461031057806370a082311461033b57610140565b806306fdde0314610145578063095ea7b3146101705780631694505e146101ad57806318160ddd146101d857806323b872dd1461020357610140565b3661014057005b600080fd5b34801561015157600080fd5b5061015a610585565b6040516101679190611ec9565b60405180910390f35b34801561017c57600080fd5b5061019760048036038101906101929190611f84565b610617565b6040516101a49190611fdf565b60405180910390f35b3480156101b957600080fd5b506101c261063a565b6040516101cf9190612059565b60405180910390f35b3480156101e457600080fd5b506101ed61065e565b6040516101fa9190612083565b60405180910390f35b34801561020f57600080fd5b5061022a6004803603810190610225919061209e565b610668565b6040516102379190611fdf565b60405180910390f35b34801561024c57600080fd5b50610255610697565b604051610262919061210d565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d9190612128565b6106a0565b60405161029f9190611fdf565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190611f84565b610972565b6040516102dc9190611fdf565b60405180910390f35b3480156102f157600080fd5b506102fa6109a9565b60405161030791906121ed565b60405180910390f35b34801561031c57600080fd5b506103256109cd565b6040516103329190612083565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d9190612208565b6109d3565b60405161036f9190612083565b60405180910390f35b34801561038457600080fd5b5061038d610a1b565b005b34801561039b57600080fd5b506103a4610a2f565b6040516103b191906121ed565b60405180910390f35b3480156103c657600080fd5b506103cf610a55565b6040516103dc9190612083565b60405180910390f35b3480156103f157600080fd5b506103fa610a5b565b60405161040791906121ed565b60405180910390f35b34801561041c57600080fd5b50610425610a85565b6040516104329190611ec9565b60405180910390f35b34801561044757600080fd5b50610462600480360381019061045d9190611f84565b610b17565b60405161046f9190611fdf565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190611f84565b610b8e565b6040516104ac9190611fdf565b60405180910390f35b3480156104c157600080fd5b506104ca610bb1565b6040516104d79190612083565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190612208565b610bb7565b6040516105149190611fdf565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190612235565b610bd7565b6040516105519190612083565b60405180910390f35b34801561056657600080fd5b5061056f610c5e565b60405161057c9190612083565b60405180910390f35b606060038054610594906122a4565b80601f01602080910402602001604051908101604052809291908181526020018280546105c0906122a4565b801561060d5780601f106105e25761010080835404028352916020019161060d565b820191906000526020600020905b8154815290600101906020018083116105f057829003601f168201915b5050505050905090565b600080610622610c64565b905061062f818585610c6c565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600080610673610c64565b9050610680858285610e37565b61068b858585610ec3565b60019150509392505050565b60006009905090565b60006001601160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001905098975050505050505050565b60008061097d610c64565b905061099e81858561098f8589610bd7565b6109999190612305565b610c6c565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a23611614565b610a2d6000611692565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a94906122a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac0906122a4565b8015610b0d5780601f10610ae257610100808354040283529160200191610b0d565b820191906000526020600020905b815481529060010190602001808311610af057829003601f168201915b5050505050905090565b600080610b22610c64565b90506000610b308286610bd7565b905083811015610b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6c90612381565b60405180910390fd5b610b828286868403610c6c565b60019250505092915050565b600080610b99610c64565b9050610ba6818585610ec3565b600191505092915050565b600d5481565b60116020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd390612381565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4390612381565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e2a9190612083565b60405180910390a3505050565b6000610e438484610bd7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ebd5781811015610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690612381565b60405180910390fd5b610ebc8484848403610c6c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a90612381565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a90612381565b60405180910390fd5b80610fad846109d3565b1015610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe590612381565b60405180910390fd5b601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156110925750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c890612381565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061117657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561118f5750601460009054906101000a900460ff16155b15611603577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146112e6576000600f546111f5306109d3565b6111ff91906123a1565b9050601254811061121657611215601254611758565b5b601354600f54106112e45761122c601354611819565b601354600f600082825461124091906123a1565b925050819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990612381565b60405180910390fd5b505b505b6000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806113895750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611396578190506115f2565b600c548211156113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d290612381565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561148857600d5461143b846109d3565b836114469190612305565b1115611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e90612381565b60405180910390fd5b5b601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561152c5750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61156b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156290612381565b60405180910390fd5b60006064600b548461157d91906123d5565b611587919061245e565b905060006064600a548561159b91906123d5565b6115a5919061245e565b905080826115b39190612305565b846115be91906123a1565b925081600f60008282546115d29190612305565b925050819055506115ef863083856115ea9190612305565b611aa8565b50505b6115fd848483611aa8565b5061160f565b61160e838383611aa8565b5b505050565b61161c610c64565b73ffffffffffffffffffffffffffffffffffffffff1661163a610a5b565b73ffffffffffffffffffffffffffffffffffffffff1614611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168790612381565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601460006101000a81548160ff0219169083151502179055506000600282611782919061245e565b90506000818361179291906123a1565b905060004790506117a283611819565b600081476117b091906123a1565b90506117bc8382611d0a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618482856040516117ef9392919061248f565b60405180910390a1505050506000601460006101000a81548160ff02191690831515021790555050565b6001601460006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611851576118506124c6565b5b60405190808252806020026020018201604052801561187f5781602001602082028036833780820191505090505b5090503081600081518110611897576118966124f5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561193757600080fd5b505afa15801561194b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196f9190612539565b81600181518110611983576119826124f5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506119e8307f000000000000000000000000000000000000000000000000000000000000000084610c6c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c42611a379190612305565b6040518663ffffffff1660e01b8152600401611a5795949392919061265f565b600060405180830381600087803b158015611a7157600080fd5b505af1158015611a85573d6000803e3d6000fd5b50505050506000601460006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f90612381565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7f90612381565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0590612381565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cfc9190612083565b60405180910390a350505050565b6001601460006101000a81548160ff021916908315150217905550611d50307f000000000000000000000000000000000000000000000000000000000000000084610c6c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611d9a610a5b565b426040518863ffffffff1660e01b8152600401611dbc969594939291906126b9565b6060604051808303818588803b158015611dd557600080fd5b505af1158015611de9573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e0e919061272f565b5050506000601460006101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e6a578082015181840152602081019050611e4f565b83811115611e79576000848401525b50505050565b6000601f19601f8301169050919050565b6000611e9b82611e30565b611ea58185611e3b565b9350611eb5818560208601611e4c565b611ebe81611e7f565b840191505092915050565b60006020820190508181036000830152611ee38184611e90565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f1b82611ef0565b9050919050565b611f2b81611f10565b8114611f3657600080fd5b50565b600081359050611f4881611f22565b92915050565b6000819050919050565b611f6181611f4e565b8114611f6c57600080fd5b50565b600081359050611f7e81611f58565b92915050565b60008060408385031215611f9b57611f9a611eeb565b5b6000611fa985828601611f39565b9250506020611fba85828601611f6f565b9150509250929050565b60008115159050919050565b611fd981611fc4565b82525050565b6000602082019050611ff46000830184611fd0565b92915050565b6000819050919050565b600061201f61201a61201584611ef0565b611ffa565b611ef0565b9050919050565b600061203182612004565b9050919050565b600061204382612026565b9050919050565b61205381612038565b82525050565b600060208201905061206e600083018461204a565b92915050565b61207d81611f4e565b82525050565b60006020820190506120986000830184612074565b92915050565b6000806000606084860312156120b7576120b6611eeb565b5b60006120c586828701611f39565b93505060206120d686828701611f39565b92505060406120e786828701611f6f565b9150509250925092565b600060ff82169050919050565b612107816120f1565b82525050565b600060208201905061212260008301846120fe565b92915050565b600080600080600080600080610100898b03121561214957612148611eeb565b5b60006121578b828c01611f39565b98505060206121688b828c01611f39565b97505060406121798b828c01611f39565b965050606061218a8b828c01611f39565b955050608061219b8b828c01611f39565b94505060a06121ac8b828c01611f39565b93505060c06121bd8b828c01611f39565b92505060e06121ce8b828c01611f39565b9150509295985092959890939650565b6121e781611f10565b82525050565b600060208201905061220260008301846121de565b92915050565b60006020828403121561221e5761221d611eeb565b5b600061222c84828501611f39565b91505092915050565b6000806040838503121561224c5761224b611eeb565b5b600061225a85828601611f39565b925050602061226b85828601611f39565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806122bc57607f821691505b602082108114156122d0576122cf612275565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061231082611f4e565b915061231b83611f4e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156123505761234f6122d6565b5b828201905092915050565b50565b600061236b600083611e3b565b91506123768261235b565b600082019050919050565b6000602082019050818103600083015261239a8161235e565b9050919050565b60006123ac82611f4e565b91506123b783611f4e565b9250828210156123ca576123c96122d6565b5b828203905092915050565b60006123e082611f4e565b91506123eb83611f4e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612424576124236122d6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061246982611f4e565b915061247483611f4e565b9250826124845761248361242f565b5b828204905092915050565b60006060820190506124a46000830186612074565b6124b16020830185612074565b6124be6040830184612074565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061253381611f22565b92915050565b60006020828403121561254f5761254e611eeb565b5b600061255d84828501612524565b91505092915050565b6000819050919050565b600061258b61258661258184612566565b611ffa565b611f4e565b9050919050565b61259b81612570565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6125d681611f10565b82525050565b60006125e883836125cd565b60208301905092915050565b6000602082019050919050565b600061260c826125a1565b61261681856125ac565b9350612621836125bd565b8060005b8381101561265257815161263988826125dc565b9750612644836125f4565b925050600181019050612625565b5085935050505092915050565b600060a0820190506126746000830188612074565b6126816020830187612592565b81810360408301526126938186612601565b90506126a260608301856121de565b6126af6080830184612074565b9695505050505050565b600060c0820190506126ce60008301896121de565b6126db6020830188612074565b6126e86040830187612592565b6126f56060830186612592565b61270260808301856121de565b61270f60a0830184612074565b979650505050505050565b60008151905061272981611f58565b92915050565b60008060006060848603121561274857612747611eeb565b5b60006127568682870161271a565b93505060206127678682870161271a565b92505060406127788682870161271a565b915050925092509256fea26469706673582212203867ecbbd1bd28eb3fa71d8e8351b2155ccb920d5d34b1c52c5d206ad3f487ca64736f6c63430008080033
Deployed Bytecode
0x6080604052600436106101395760003560e01c8063715018a6116100ab578063a457c2d71161006f578063a457c2d71461043b578063a9059cbb14610478578063aa4bde28146104b5578063cdef0b00146104e0578063dd62ed3e1461051d578063f345bd851461055a57610140565b8063715018a61461037857806375f0a8741461038f5780638c0b5e22146103ba5780638da5cb5b146103e557806395d89b411461041057610140565b8063313ce567116100fd578063313ce5671461024057806338a87d0a1461026b57806339509351146102a857806349bd5a5e146102e5578063527ffabd1461031057806370a082311461033b57610140565b806306fdde0314610145578063095ea7b3146101705780631694505e146101ad57806318160ddd146101d857806323b872dd1461020357610140565b3661014057005b600080fd5b34801561015157600080fd5b5061015a610585565b6040516101679190611ec9565b60405180910390f35b34801561017c57600080fd5b5061019760048036038101906101929190611f84565b610617565b6040516101a49190611fdf565b60405180910390f35b3480156101b957600080fd5b506101c261063a565b6040516101cf9190612059565b60405180910390f35b3480156101e457600080fd5b506101ed61065e565b6040516101fa9190612083565b60405180910390f35b34801561020f57600080fd5b5061022a6004803603810190610225919061209e565b610668565b6040516102379190611fdf565b60405180910390f35b34801561024c57600080fd5b50610255610697565b604051610262919061210d565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d9190612128565b6106a0565b60405161029f9190611fdf565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190611f84565b610972565b6040516102dc9190611fdf565b60405180910390f35b3480156102f157600080fd5b506102fa6109a9565b60405161030791906121ed565b60405180910390f35b34801561031c57600080fd5b506103256109cd565b6040516103329190612083565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d9190612208565b6109d3565b60405161036f9190612083565b60405180910390f35b34801561038457600080fd5b5061038d610a1b565b005b34801561039b57600080fd5b506103a4610a2f565b6040516103b191906121ed565b60405180910390f35b3480156103c657600080fd5b506103cf610a55565b6040516103dc9190612083565b60405180910390f35b3480156103f157600080fd5b506103fa610a5b565b60405161040791906121ed565b60405180910390f35b34801561041c57600080fd5b50610425610a85565b6040516104329190611ec9565b60405180910390f35b34801561044757600080fd5b50610462600480360381019061045d9190611f84565b610b17565b60405161046f9190611fdf565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190611f84565b610b8e565b6040516104ac9190611fdf565b60405180910390f35b3480156104c157600080fd5b506104ca610bb1565b6040516104d79190612083565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190612208565b610bb7565b6040516105149190611fdf565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190612235565b610bd7565b6040516105519190612083565b60405180910390f35b34801561056657600080fd5b5061056f610c5e565b60405161057c9190612083565b60405180910390f35b606060038054610594906122a4565b80601f01602080910402602001604051908101604052809291908181526020018280546105c0906122a4565b801561060d5780601f106105e25761010080835404028352916020019161060d565b820191906000526020600020905b8154815290600101906020018083116105f057829003601f168201915b5050505050905090565b600080610622610c64565b905061062f818585610c6c565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600080610673610c64565b9050610680858285610e37565b61068b858585610ec3565b60019150509392505050565b60006009905090565b60006001601160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001905098975050505050505050565b60008061097d610c64565b905061099e81858561098f8589610bd7565b6109999190612305565b610c6c565b600191505092915050565b7f000000000000000000000000e59bdebeb8b028224340566e17bf6d8048e136f381565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a23611614565b610a2d6000611692565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a94906122a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac0906122a4565b8015610b0d5780601f10610ae257610100808354040283529160200191610b0d565b820191906000526020600020905b815481529060010190602001808311610af057829003601f168201915b5050505050905090565b600080610b22610c64565b90506000610b308286610bd7565b905083811015610b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6c90612381565b60405180910390fd5b610b828286868403610c6c565b60019250505092915050565b600080610b99610c64565b9050610ba6818585610ec3565b600191505092915050565b600d5481565b60116020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd390612381565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4390612381565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e2a9190612083565b60405180910390a3505050565b6000610e438484610bd7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ebd5781811015610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690612381565b60405180910390fd5b610ebc8484848403610c6c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a90612381565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a90612381565b60405180910390fd5b80610fad846109d3565b1015610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe590612381565b60405180910390fd5b601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156110925750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c890612381565b60405180910390fd5b7f000000000000000000000000e59bdebeb8b028224340566e17bf6d8048e136f373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061117657507f000000000000000000000000e59bdebeb8b028224340566e17bf6d8048e136f373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561118f5750601460009054906101000a900460ff16155b15611603577f000000000000000000000000e59bdebeb8b028224340566e17bf6d8048e136f373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146112e6576000600f546111f5306109d3565b6111ff91906123a1565b9050601254811061121657611215601254611758565b5b601354600f54106112e45761122c601354611819565b601354600f600082825461124091906123a1565b925050819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990612381565b60405180910390fd5b505b505b6000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806113895750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611396578190506115f2565b600c548211156113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d290612381565b60405180910390fd5b7f000000000000000000000000e59bdebeb8b028224340566e17bf6d8048e136f373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561148857600d5461143b846109d3565b836114469190612305565b1115611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e90612381565b60405180910390fd5b5b601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561152c5750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61156b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156290612381565b60405180910390fd5b60006064600b548461157d91906123d5565b611587919061245e565b905060006064600a548561159b91906123d5565b6115a5919061245e565b905080826115b39190612305565b846115be91906123a1565b925081600f60008282546115d29190612305565b925050819055506115ef863083856115ea9190612305565b611aa8565b50505b6115fd848483611aa8565b5061160f565b61160e838383611aa8565b5b505050565b61161c610c64565b73ffffffffffffffffffffffffffffffffffffffff1661163a610a5b565b73ffffffffffffffffffffffffffffffffffffffff1614611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168790612381565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601460006101000a81548160ff0219169083151502179055506000600282611782919061245e565b90506000818361179291906123a1565b905060004790506117a283611819565b600081476117b091906123a1565b90506117bc8382611d0a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618482856040516117ef9392919061248f565b60405180910390a1505050506000601460006101000a81548160ff02191690831515021790555050565b6001601460006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611851576118506124c6565b5b60405190808252806020026020018201604052801561187f5781602001602082028036833780820191505090505b5090503081600081518110611897576118966124f5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561193757600080fd5b505afa15801561194b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196f9190612539565b81600181518110611983576119826124f5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506119e8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c6c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c42611a379190612305565b6040518663ffffffff1660e01b8152600401611a5795949392919061265f565b600060405180830381600087803b158015611a7157600080fd5b505af1158015611a85573d6000803e3d6000fd5b50505050506000601460006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f90612381565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7f90612381565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0590612381565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cfc9190612083565b60405180910390a350505050565b6001601460006101000a81548160ff021916908315150217905550611d50307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c6c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611d9a610a5b565b426040518863ffffffff1660e01b8152600401611dbc969594939291906126b9565b6060604051808303818588803b158015611dd557600080fd5b505af1158015611de9573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e0e919061272f565b5050506000601460006101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e6a578082015181840152602081019050611e4f565b83811115611e79576000848401525b50505050565b6000601f19601f8301169050919050565b6000611e9b82611e30565b611ea58185611e3b565b9350611eb5818560208601611e4c565b611ebe81611e7f565b840191505092915050565b60006020820190508181036000830152611ee38184611e90565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f1b82611ef0565b9050919050565b611f2b81611f10565b8114611f3657600080fd5b50565b600081359050611f4881611f22565b92915050565b6000819050919050565b611f6181611f4e565b8114611f6c57600080fd5b50565b600081359050611f7e81611f58565b92915050565b60008060408385031215611f9b57611f9a611eeb565b5b6000611fa985828601611f39565b9250506020611fba85828601611f6f565b9150509250929050565b60008115159050919050565b611fd981611fc4565b82525050565b6000602082019050611ff46000830184611fd0565b92915050565b6000819050919050565b600061201f61201a61201584611ef0565b611ffa565b611ef0565b9050919050565b600061203182612004565b9050919050565b600061204382612026565b9050919050565b61205381612038565b82525050565b600060208201905061206e600083018461204a565b92915050565b61207d81611f4e565b82525050565b60006020820190506120986000830184612074565b92915050565b6000806000606084860312156120b7576120b6611eeb565b5b60006120c586828701611f39565b93505060206120d686828701611f39565b92505060406120e786828701611f6f565b9150509250925092565b600060ff82169050919050565b612107816120f1565b82525050565b600060208201905061212260008301846120fe565b92915050565b600080600080600080600080610100898b03121561214957612148611eeb565b5b60006121578b828c01611f39565b98505060206121688b828c01611f39565b97505060406121798b828c01611f39565b965050606061218a8b828c01611f39565b955050608061219b8b828c01611f39565b94505060a06121ac8b828c01611f39565b93505060c06121bd8b828c01611f39565b92505060e06121ce8b828c01611f39565b9150509295985092959890939650565b6121e781611f10565b82525050565b600060208201905061220260008301846121de565b92915050565b60006020828403121561221e5761221d611eeb565b5b600061222c84828501611f39565b91505092915050565b6000806040838503121561224c5761224b611eeb565b5b600061225a85828601611f39565b925050602061226b85828601611f39565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806122bc57607f821691505b602082108114156122d0576122cf612275565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061231082611f4e565b915061231b83611f4e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156123505761234f6122d6565b5b828201905092915050565b50565b600061236b600083611e3b565b91506123768261235b565b600082019050919050565b6000602082019050818103600083015261239a8161235e565b9050919050565b60006123ac82611f4e565b91506123b783611f4e565b9250828210156123ca576123c96122d6565b5b828203905092915050565b60006123e082611f4e565b91506123eb83611f4e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612424576124236122d6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061246982611f4e565b915061247483611f4e565b9250826124845761248361242f565b5b828204905092915050565b60006060820190506124a46000830186612074565b6124b16020830185612074565b6124be6040830184612074565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061253381611f22565b92915050565b60006020828403121561254f5761254e611eeb565b5b600061255d84828501612524565b91505092915050565b6000819050919050565b600061258b61258661258184612566565b611ffa565b611f4e565b9050919050565b61259b81612570565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6125d681611f10565b82525050565b60006125e883836125cd565b60208301905092915050565b6000602082019050919050565b600061260c826125a1565b61261681856125ac565b9350612621836125bd565b8060005b8381101561265257815161263988826125dc565b9750612644836125f4565b925050600181019050612625565b5085935050505092915050565b600060a0820190506126746000830188612074565b6126816020830187612592565b81810360408301526126938186612601565b90506126a260608301856121de565b6126af6080830184612074565b9695505050505050565b600060c0820190506126ce60008301896121de565b6126db6020830188612074565b6126e86040830187612592565b6126f56060830186612592565b61270260808301856121de565b61270f60a0830184612074565b979650505050505050565b60008151905061272981611f58565b92915050565b60008060006060848603121561274857612747611eeb565b5b60006127568682870161271a565b93505060206127678682870161271a565b92505060406127788682870161271a565b915050925092509256fea26469706673582212203867ecbbd1bd28eb3fa71d8e8351b2155ccb920d5d34b1c52c5d206ad3f487ca64736f6c63430008080033
Deployed Bytecode Sourcemap
25960:5540:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16841:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19115:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26472:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17979:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19939:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17822:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27709:337;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21618:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26530:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26201:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17006:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14493:103;;;;;;;;;;;;;:::i;:::-;;26388:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26242:64;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13877:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16665:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20739:470;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18559:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26313:68;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26680:34;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18152:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26160:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16841:102;16897:13;16930:5;16923:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16841:102;:::o;19115:244::-;19236:4;19258:13;19274:12;:10;:12::i;:::-;19258:28;;19297:32;19306:5;19313:7;19322:6;19297:8;:32::i;:::-;19347:4;19340:11;;;19115:244;;;;:::o;26472:51::-;;;:::o;17979:110::-;18042:7;18069:12;;18062:19;;17979:110;:::o;19939:297::-;20072:4;20089:15;20107:12;:10;:12::i;:::-;20089:30;;20130:38;20146:4;20152:7;20161:6;20130:15;:38::i;:::-;20179:27;20189:4;20195:2;20199:6;20179:9;:27::i;:::-;20224:4;20217:11;;;19939:297;;;;;:::o;17822:92::-;17880:5;17905:1;17898:8;;17822:92;:::o;27709:337::-;27849:4;27879;27871:2;:5;27874:1;27871:5;;;;;;;;;;;;;;;;:12;;;;;;;;;;;;;;;;;;27893:4;27885:2;:5;27888:1;27885:5;;;;;;;;;;;;;;;;:12;;;;;;;;;;;;;;;;;;27916:4;27908:2;:5;27911:1;27908:5;;;;;;;;;;;;;;;;:12;;;;;;;;;;;;;;;;;;27930:4;27922:2;:5;27925:1;27922:5;;;;;;;;;;;;;;;;:12;;;;;;;;;;;;;;;;;;27961:4;27953:2;:5;27956:1;27953:5;;;;;;;;;;;;;;;;:12;;;;;;;;;;;;;;;;;;27975:4;27967:2;:5;27970:1;27967:5;;;;;;;;;;;;;;;;:12;;;;;;;;;;;;;;;;;;27998:4;27990:2;:5;27993:1;27990:5;;;;;;;;;;;;;;;;:12;;;;;;;;;;;;;;;;;;28012:4;28004:2;:5;28007:1;28004:5;;;;;;;;;;;;;;;;:12;;;;;;;;;;;;;;;;;;28034:4;28027:11;;27709:337;;;;;;;;;;:::o;21618:272::-;21735:4;21757:13;21773:12;:10;:12::i;:::-;21757:28;;21796:64;21805:5;21812:7;21849:10;21821:25;21831:5;21838:7;21821:9;:25::i;:::-;:38;;;;:::i;:::-;21796:8;:64::i;:::-;21878:4;21871:11;;;21618:272;;;;:::o;26530:38::-;;;:::o;26201:34::-;;;;:::o;17006:177::-;17125:7;17157:9;:18;17167:7;17157:18;;;;;;;;;;;;;;;;17150:25;;17006:177;;;:::o;14493:103::-;13763:13;:11;:13::i;:::-;14558:30:::1;14585:1;14558:18;:30::i;:::-;14493:103::o:0;26388:75::-;;;;;;;;;;;;;:::o;26242:64::-;;;;:::o;13877:87::-;13923:7;13950:6;;;;;;;;;;;13943:13;;13877:87;:::o;16665:106::-;16723:13;16756:7;16749:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16665:106;:::o;20739:470::-;20861:4;20883:13;20899:12;:10;:12::i;:::-;20883:28;;20922:24;20949:25;20959:5;20966:7;20949:9;:25::i;:::-;20922:52;;21027:15;21007:16;:35;;20985:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;21106:60;21115:5;21122:7;21150:15;21131:16;:34;21106:8;:60::i;:::-;21197:4;21190:11;;;;20739:470;;;;:::o;18559:236::-;18676:4;18698:13;18714:12;:10;:12::i;:::-;18698:28;;18737;18747:5;18754:2;18758:6;18737:9;:28::i;:::-;18783:4;18776:11;;;18559:236;;;;:::o;26313:68::-;;;;:::o;26680:34::-;;;;;;;;;;;;;;;;;;;;;;:::o;18152:201::-;18286:7;18318:11;:18;18330:5;18318:18;;;;;;;;;;;;;;;:27;18337:7;18318:27;;;;;;;;;;;;;;;;18311:34;;18152:201;;;;:::o;26160:34::-;;;;:::o;13262:98::-;13315:7;13342:10;13335:17;;13262:98;:::o;23009:310::-;23162:1;23145:19;;:5;:19;;;;23137:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;23207:1;23188:21;;:7;:21;;;;23180:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;23257:6;23227:11;:18;23239:5;23227:18;;;;;;;;;;;;;;;:27;23246:7;23227:27;;;;;;;;;;;;;;;:36;;;;23295:7;23279:32;;23288:5;23279:32;;;23304:6;23279:32;;;;;;:::i;:::-;;;;;;;;23009:310;;;:::o;23610:473::-;23745:24;23772:25;23782:5;23789:7;23772:9;:25::i;:::-;23745:52;;23832:17;23812:16;:37;23808:268;;23912:6;23892:16;:26;;23866:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;23998:51;24007:5;24014:7;24042:6;24023:16;:25;23998:8;:51::i;:::-;23808:268;23734:349;23610:473;;;:::o;28054:2014::-;28168:1;28152:18;;:4;:18;;;;28144:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;28208:1;28194:16;;:2;:16;;;;28186:29;;;;;;;;;;;;:::i;:::-;;;;;;;;;28253:6;28234:15;28244:4;28234:9;:15::i;:::-;:25;;28226:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;28284:2;:8;28287:4;28284:8;;;;;;;;;;;;;;;;;;;;;;;;;28283:9;:20;;;;;28297:2;:6;28300:2;28297:6;;;;;;;;;;;;;;;;;;;;;;;;;28296:7;28283:20;28275:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;28333:13;28325:21;;:4;:21;;;:44;;;;28356:13;28350:19;;:2;:19;;;28325:44;28324:67;;;;;28375:16;;;;;;;;;;;28374:17;28324:67;28320:1741;;;28420:13;28412:21;;:4;:21;;;28408:668;;28454:32;28516:18;;28489:24;28507:4;28489:9;:24::i;:::-;:45;;;;:::i;:::-;28454:80;;28585:30;;28557:24;:58;28553:154;;28640:47;28656:30;;28640:15;:47::i;:::-;28553:154;28753:24;;28730:18;;28729:48;28725:336;;28802:43;28820:24;;28802:17;:43::i;:::-;28890:24;;28868:18;;:46;;;;;;;:::i;:::-;;;;;;;;28937:9;28957:15;;;;;;;;;;;28949:29;;:52;28979:21;28949:52;;;;;;;;;;;;;;;;;;;;;;;28937:64;;29032:4;29024:17;;;;;;;;;;;;:::i;:::-;;;;;;;;;28779:282;28725:336;28435:641;28408:668;29092:22;29133:18;:24;29152:4;29133:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;29161:18;:22;29180:2;29161:22;;;;;;;;;;;;;;;;;;;;;;;;;29133:50;29129:789;;;29221:6;29204:23;;29129:789;;;29300:11;;29290:6;:21;;29282:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;29346:13;29338:21;;:4;:21;;;29335:136;;;29431:15;;29413:13;29423:2;29413:9;:13::i;:::-;29404:6;:22;;;;:::i;:::-;29403:43;;29395:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;29335:136;29498:2;:8;29501:4;29498:8;;;;;;;;;;;;;;;;;;;;;;;;;29497:9;:20;;;;;29511:2;:6;29514:2;29511:6;;;;;;;;;;;;;;;;;;;;;;;;;29510:7;29497:20;29489:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;29540:22;29595:3;29576:15;;29567:6;:24;;;;:::i;:::-;29566:32;;;;:::i;:::-;29540:59;;29618:22;29673:3;29654:15;;29645:6;:24;;;;:::i;:::-;29644:32;;;;:::i;:::-;29618:59;;29740:14;29723;:31;;;;:::i;:::-;29713:6;:42;;;;:::i;:::-;29696:59;;29796:14;29774:18;;:36;;;;;;;:::i;:::-;;;;;;;;29831:71;29847:4;29861;29886:14;29869;:31;;;;:::i;:::-;29831:15;:71::i;:::-;29263:655;;29129:789;29932:41;29948:4;29954:2;29958:14;29932:15;:41::i;:::-;28393:1592;28320:1741;;;30016:33;30032:4;30038:2;30042:6;30016:15;:33::i;:::-;28320:1741;28054:2014;;;:::o;14042:100::-;14117:12;:10;:12::i;:::-;14106:23;;:7;:5;:7::i;:::-;:23;;;14098:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;14042:100::o;14756:191::-;14830:16;14849:6;;;;;;;;;;;14830:25;;14875:8;14866:6;;:17;;;;;;;;;;;;;;;;;;14930:8;14899:40;;14920:8;14899:40;;;;;;;;;;;;14819:128;14756:191;:::o;30076:474::-;27089:4;27070:16;;:23;;;;;;;;;;;;;;;;;;30162:12:::1;30201:1;30178:20;:24;;;;:::i;:::-;30162:41;;30214:17;30258:4;30235:20;:27;;;;:::i;:::-;30214:49;;30276:22;30301:21;30276:46;;30335:23;30353:4;30335:17;:23::i;:::-;30371:18;30417:14;30393:21;:38;;;;:::i;:::-;30371:61;;30445:36;30459:9;30470:10;30445:13;:36::i;:::-;30499:43;30514:4;30520:10;30532:9;30499:43;;;;;;;;:::i;:::-;;;;;;;;30151:399;;;;27135:5:::0;27116:16;;:24;;;;;;;;;;;;;;;;;;30076:474;:::o;30558:496::-;27089:4;27070:16;;:23;;;;;;;;;;;;;;;;;;30637:21:::1;30675:1;30661:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30637:40;;30706:4;30688;30693:1;30688:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;30732:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30722:4;30727:1;30722:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;30767:62;30784:4;30799:15;30817:11;30767:8;:62::i;:::-;30842:15;:66;;;30923:11;30949:1;30965:4;30992;31031:3;31013:15;:21;;;;:::i;:::-;30842:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;30626:428;27135:5:::0;27116:16;;:24;;;;;;;;;;;;;;;;;;30558:496;:::o;24091:666::-;24238:1;24222:18;;:4;:18;;;;24214:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;24278:1;24264:16;;:2;:16;;;;24256:29;;;;;;;;;;;;:::i;:::-;;;;;;;;;24298:19;24320:9;:15;24330:4;24320:15;;;;;;;;;;;;;;;;24298:37;;24383:6;24368:11;:21;;24346:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24485:6;24471:11;:20;24453:9;:15;24463:4;24453:15;;;;;;;;;;;;;;;:38;;;;24688:6;24671:9;:13;24681:2;24671:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;24738:2;24723:26;;24732:4;24723:26;;;24742:6;24723:26;;;;;;:::i;:::-;;;;;;;;24203:554;24091:666;;;:::o;31062:398::-;27089:4;27070:16;;:23;;;;;;;;;;;;;;;;;;31179:62:::1;31196:4;31211:15;31229:11;31179:8;:62::i;:::-;31254:15;:31;;;31293:9;31326:4;31346:11;31372:1;31388::::0;31404:7:::1;:5;:7::i;:::-;31426:15;31254:198;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;27135:5:::0;27116:16;;:24;;;;;;;;;;;;;;;;;;31062:398;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:60::-;3522:3;3543:5;3536:12;;3494:60;;;:::o;3560:142::-;3610:9;3643:53;3661:34;3670:24;3688:5;3670:24;:::i;:::-;3661:34;:::i;:::-;3643:53;:::i;:::-;3630:66;;3560:142;;;:::o;3708:126::-;3758:9;3791:37;3822:5;3791:37;:::i;:::-;3778:50;;3708:126;;;:::o;3840:152::-;3916:9;3949:37;3980:5;3949:37;:::i;:::-;3936:50;;3840:152;;;:::o;3998:183::-;4111:63;4168:5;4111:63;:::i;:::-;4106:3;4099:76;3998:183;;:::o;4187:274::-;4306:4;4344:2;4333:9;4329:18;4321:26;;4357:97;4451:1;4440:9;4436:17;4427:6;4357:97;:::i;:::-;4187:274;;;;:::o;4467:118::-;4554:24;4572:5;4554:24;:::i;:::-;4549:3;4542:37;4467:118;;:::o;4591:222::-;4684:4;4722:2;4711:9;4707:18;4699:26;;4735:71;4803:1;4792:9;4788:17;4779:6;4735:71;:::i;:::-;4591:222;;;;:::o;4819:619::-;4896:6;4904;4912;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;5214:2;5240:53;5285:7;5276:6;5265:9;5261:22;5240:53;:::i;:::-;5230:63;;5185:118;5342:2;5368:53;5413:7;5404:6;5393:9;5389:22;5368:53;:::i;:::-;5358:63;;5313:118;4819:619;;;;;:::o;5444:86::-;5479:7;5519:4;5512:5;5508:16;5497:27;;5444:86;;;:::o;5536:112::-;5619:22;5635:5;5619:22;:::i;:::-;5614:3;5607:35;5536:112;;:::o;5654:214::-;5743:4;5781:2;5770:9;5766:18;5758:26;;5794:67;5858:1;5847:9;5843:17;5834:6;5794:67;:::i;:::-;5654:214;;;;:::o;5874:1349::-;5996:6;6004;6012;6020;6028;6036;6044;6052;6101:3;6089:9;6080:7;6076:23;6072:33;6069:120;;;6108:79;;:::i;:::-;6069:120;6228:1;6253:53;6298:7;6289:6;6278:9;6274:22;6253:53;:::i;:::-;6243:63;;6199:117;6355:2;6381:53;6426:7;6417:6;6406:9;6402:22;6381:53;:::i;:::-;6371:63;;6326:118;6483:2;6509:53;6554:7;6545:6;6534:9;6530:22;6509:53;:::i;:::-;6499:63;;6454:118;6611:2;6637:53;6682:7;6673:6;6662:9;6658:22;6637:53;:::i;:::-;6627:63;;6582:118;6739:3;6766:53;6811:7;6802:6;6791:9;6787:22;6766:53;:::i;:::-;6756:63;;6710:119;6868:3;6895:53;6940:7;6931:6;6920:9;6916:22;6895:53;:::i;:::-;6885:63;;6839:119;6997:3;7024:53;7069:7;7060:6;7049:9;7045:22;7024:53;:::i;:::-;7014:63;;6968:119;7126:3;7153:53;7198:7;7189:6;7178:9;7174:22;7153:53;:::i;:::-;7143:63;;7097:119;5874:1349;;;;;;;;;;;:::o;7229:118::-;7316:24;7334:5;7316:24;:::i;:::-;7311:3;7304:37;7229:118;;:::o;7353:222::-;7446:4;7484:2;7473:9;7469:18;7461:26;;7497:71;7565:1;7554:9;7550:17;7541:6;7497:71;:::i;:::-;7353:222;;;;:::o;7581:329::-;7640:6;7689:2;7677:9;7668:7;7664:23;7660:32;7657:119;;;7695:79;;:::i;:::-;7657:119;7815:1;7840:53;7885:7;7876:6;7865:9;7861:22;7840:53;:::i;:::-;7830:63;;7786:117;7581:329;;;;:::o;7916:474::-;7984:6;7992;8041:2;8029:9;8020:7;8016:23;8012:32;8009:119;;;8047:79;;:::i;:::-;8009:119;8167:1;8192:53;8237:7;8228:6;8217:9;8213:22;8192:53;:::i;:::-;8182:63;;8138:117;8294:2;8320:53;8365:7;8356:6;8345:9;8341:22;8320:53;:::i;:::-;8310:63;;8265:118;7916:474;;;;;:::o;8396:180::-;8444:77;8441:1;8434:88;8541:4;8538:1;8531:15;8565:4;8562:1;8555:15;8582:320;8626:6;8663:1;8657:4;8653:12;8643:22;;8710:1;8704:4;8700:12;8731:18;8721:81;;8787:4;8779:6;8775:17;8765:27;;8721:81;8849:2;8841:6;8838:14;8818:18;8815:38;8812:84;;;8868:18;;:::i;:::-;8812:84;8633:269;8582:320;;;:::o;8908:180::-;8956:77;8953:1;8946:88;9053:4;9050:1;9043:15;9077:4;9074:1;9067:15;9094:305;9134:3;9153:20;9171:1;9153:20;:::i;:::-;9148:25;;9187:20;9205:1;9187:20;:::i;:::-;9182:25;;9341:1;9273:66;9269:74;9266:1;9263:81;9260:107;;;9347:18;;:::i;:::-;9260:107;9391:1;9388;9384:9;9377:16;;9094:305;;;;:::o;9405:114::-;;:::o;9525:364::-;9667:3;9688:66;9752:1;9747:3;9688:66;:::i;:::-;9681:73;;9763:93;9852:3;9763:93;:::i;:::-;9881:1;9876:3;9872:11;9865:18;;9525:364;;;:::o;9895:419::-;10061:4;10099:2;10088:9;10084:18;10076:26;;10148:9;10142:4;10138:20;10134:1;10123:9;10119:17;10112:47;10176:131;10302:4;10176:131;:::i;:::-;10168:139;;9895:419;;;:::o;10320:191::-;10360:4;10380:20;10398:1;10380:20;:::i;:::-;10375:25;;10414:20;10432:1;10414:20;:::i;:::-;10409:25;;10453:1;10450;10447:8;10444:34;;;10458:18;;:::i;:::-;10444:34;10503:1;10500;10496:9;10488:17;;10320:191;;;;:::o;10517:348::-;10557:7;10580:20;10598:1;10580:20;:::i;:::-;10575:25;;10614:20;10632:1;10614:20;:::i;:::-;10609:25;;10802:1;10734:66;10730:74;10727:1;10724:81;10719:1;10712:9;10705:17;10701:105;10698:131;;;10809:18;;:::i;:::-;10698:131;10857:1;10854;10850:9;10839:20;;10517:348;;;;:::o;10871:180::-;10919:77;10916:1;10909:88;11016:4;11013:1;11006:15;11040:4;11037:1;11030:15;11057:185;11097:1;11114:20;11132:1;11114:20;:::i;:::-;11109:25;;11148:20;11166:1;11148:20;:::i;:::-;11143:25;;11187:1;11177:35;;11192:18;;:::i;:::-;11177:35;11234:1;11231;11227:9;11222:14;;11057:185;;;;:::o;11248:442::-;11397:4;11435:2;11424:9;11420:18;11412:26;;11448:71;11516:1;11505:9;11501:17;11492:6;11448:71;:::i;:::-;11529:72;11597:2;11586:9;11582:18;11573:6;11529:72;:::i;:::-;11611;11679:2;11668:9;11664:18;11655:6;11611:72;:::i;:::-;11248:442;;;;;;:::o;11696:180::-;11744:77;11741:1;11734:88;11841:4;11838:1;11831:15;11865:4;11862:1;11855:15;11882:180;11930:77;11927:1;11920:88;12027:4;12024:1;12017:15;12051:4;12048:1;12041:15;12068:143;12125:5;12156:6;12150:13;12141:22;;12172:33;12199:5;12172:33;:::i;:::-;12068:143;;;;:::o;12217:351::-;12287:6;12336:2;12324:9;12315:7;12311:23;12307:32;12304:119;;;12342:79;;:::i;:::-;12304:119;12462:1;12487:64;12543:7;12534:6;12523:9;12519:22;12487:64;:::i;:::-;12477:74;;12433:128;12217:351;;;;:::o;12574:85::-;12619:7;12648:5;12637:16;;12574:85;;;:::o;12665:158::-;12723:9;12756:61;12774:42;12783:32;12809:5;12783:32;:::i;:::-;12774:42;:::i;:::-;12756:61;:::i;:::-;12743:74;;12665:158;;;:::o;12829:147::-;12924:45;12963:5;12924:45;:::i;:::-;12919:3;12912:58;12829:147;;:::o;12982:114::-;13049:6;13083:5;13077:12;13067:22;;12982:114;;;:::o;13102:184::-;13201:11;13235:6;13230:3;13223:19;13275:4;13270:3;13266:14;13251:29;;13102:184;;;;:::o;13292:132::-;13359:4;13382:3;13374:11;;13412:4;13407:3;13403:14;13395:22;;13292:132;;;:::o;13430:108::-;13507:24;13525:5;13507:24;:::i;:::-;13502:3;13495:37;13430:108;;:::o;13544:179::-;13613:10;13634:46;13676:3;13668:6;13634:46;:::i;:::-;13712:4;13707:3;13703:14;13689:28;;13544:179;;;;:::o;13729:113::-;13799:4;13831;13826:3;13822:14;13814:22;;13729:113;;;:::o;13878:732::-;13997:3;14026:54;14074:5;14026:54;:::i;:::-;14096:86;14175:6;14170:3;14096:86;:::i;:::-;14089:93;;14206:56;14256:5;14206:56;:::i;:::-;14285:7;14316:1;14301:284;14326:6;14323:1;14320:13;14301:284;;;14402:6;14396:13;14429:63;14488:3;14473:13;14429:63;:::i;:::-;14422:70;;14515:60;14568:6;14515:60;:::i;:::-;14505:70;;14361:224;14348:1;14345;14341:9;14336:14;;14301:284;;;14305:14;14601:3;14594:10;;14002:608;;;13878:732;;;;:::o;14616:831::-;14879:4;14917:3;14906:9;14902:19;14894:27;;14931:71;14999:1;14988:9;14984:17;14975:6;14931:71;:::i;:::-;15012:80;15088:2;15077:9;15073:18;15064:6;15012:80;:::i;:::-;15139:9;15133:4;15129:20;15124:2;15113:9;15109:18;15102:48;15167:108;15270:4;15261:6;15167:108;:::i;:::-;15159:116;;15285:72;15353:2;15342:9;15338:18;15329:6;15285:72;:::i;:::-;15367:73;15435:3;15424:9;15420:19;15411:6;15367:73;:::i;:::-;14616:831;;;;;;;;:::o;15453:807::-;15702:4;15740:3;15729:9;15725:19;15717:27;;15754:71;15822:1;15811:9;15807:17;15798:6;15754:71;:::i;:::-;15835:72;15903:2;15892:9;15888:18;15879:6;15835:72;:::i;:::-;15917:80;15993:2;15982:9;15978:18;15969:6;15917:80;:::i;:::-;16007;16083:2;16072:9;16068:18;16059:6;16007:80;:::i;:::-;16097:73;16165:3;16154:9;16150:19;16141:6;16097:73;:::i;:::-;16180;16248:3;16237:9;16233:19;16224:6;16180:73;:::i;:::-;15453:807;;;;;;;;;:::o;16266:143::-;16323:5;16354:6;16348:13;16339:22;;16370:33;16397:5;16370:33;:::i;:::-;16266:143;;;;:::o;16415:663::-;16503:6;16511;16519;16568:2;16556:9;16547:7;16543:23;16539:32;16536:119;;;16574:79;;:::i;:::-;16536:119;16694:1;16719:64;16775:7;16766:6;16755:9;16751:22;16719:64;:::i;:::-;16709:74;;16665:128;16832:2;16858:64;16914:7;16905:6;16894:9;16890:22;16858:64;:::i;:::-;16848:74;;16803:129;16971:2;16997:64;17053:7;17044:6;17033:9;17029:22;16997:64;:::i;:::-;16987:74;;16942:129;16415:663;;;;;:::o
Swarm Source
ipfs://3867ecbbd1bd28eb3fa71d8e8351b2155ccb920d5d34b1c52c5d206ad3f487ca
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.