Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
10,000,000 JAIL
Holders
17
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000001 JAILValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EspressoToken
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-01 */ // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File @uniswap/v2-core/contracts/interfaces/[email protected] pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File @uniswap/v2-core/contracts/interfaces/[email protected] pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // File contracts/EspressoToken.sol pragma solidity ^0.8.9; contract EspressoToken is ERC20, Ownable { address private WETH; address public constant uniswapV2Router02 = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; IUniswapV2Pair public pairContract; IUniswapV2Router02 public router; address public pair; mapping(address => uint256) private buyBlock; bool public tradeEnabled = false; address private feeReceiverOwner; address private feeReceiverAdmin; uint16 public feeAdminPercentage = 100; uint16 public feeOwnerInitialPercentageBuy = 0; uint16 public feeOwnerInitialPercentageSell = 0; uint16 public feeOwnerPercentageBuy = 0; uint16 public feeOwnerPercentageSell = 0; uint16 public burnFeePercentage = 0; uint256 private collectedAdmin = 0; uint256 public maxTokenAmountPerWallet = 0; uint256 public maxTokenAmountPerTransaction = 0; uint256 private buyCount = 0; uint256 private initialBuyCountTreshold = 0; uint256 public swapTreshold; bool private inSwap = false; modifier lockTheSwap() { inSwap = true; _; inSwap = false; } constructor( string memory _name, string memory _symbol, uint256 _supply, uint16 _ownerPercentageInitalSupply, address _feeReceiverAdmin, address _feeReceiverOwner, uint256 _swapTreshold, uint16 _feeAdminPercentage ) ERC20(_name, _symbol) { require(_ownerPercentageInitalSupply < 10000, "Percentage exceeds 100"); router = IUniswapV2Router02(uniswapV2Router02); WETH = router.WETH(); pair = IUniswapV2Factory(router.factory()).createPair(WETH, address(this)); pairContract = IUniswapV2Pair(pair); feeReceiverAdmin = _feeReceiverAdmin; feeReceiverOwner = _feeReceiverOwner; swapTreshold = _swapTreshold; feeAdminPercentage = _feeAdminPercentage; uint256 ownerReceiverSupply = (_supply * _ownerPercentageInitalSupply) / 10000; _approve(address(this), uniswapV2Router02, type(uint256).max); _approve(address(this), pair, type(uint256).max); _approve(msg.sender, uniswapV2Router02, type(uint256).max); _mint(msg.sender, (_supply - ownerReceiverSupply) * 10 ** decimals()); _mint(_feeReceiverOwner, ownerReceiverSupply * 10 ** decimals()); } function setMaxTokenAmountPerTransaction(uint256 amount) public onlyOwner { maxTokenAmountPerTransaction = amount * 10 ** decimals(); } function setMaxTokenAmountPerWallet(uint256 amount) public onlyOwner { maxTokenAmountPerWallet = amount * 10 ** decimals(); } function setBurnFeePercentage(uint16 percentage) public onlyOwner { require((feeAdminPercentage + feeOwnerPercentageSell + percentage) < 10000, "Percentage exceeds 100"); require((feeAdminPercentage + feeOwnerPercentageBuy + percentage) < 10000, "Percentage exceeds 100"); burnFeePercentage = percentage; } function setBuyCountTreshold(uint256 treshold) public onlyOwner { initialBuyCountTreshold = treshold; } function setFeeOwnerInitialPercentageBuy(uint16 percentage) public onlyOwner { require((feeAdminPercentage + burnFeePercentage + percentage) < 10000, "Percentage exceeds 100"); feeOwnerInitialPercentageBuy = percentage; } function setFeeOwnerInitialPercentageSell(uint16 percentage) public onlyOwner { require((feeAdminPercentage + burnFeePercentage + percentage) < 10000, "Percentage exceeds 100"); feeOwnerInitialPercentageSell = percentage; } function setFeeOwnerPercentageBuy(uint16 percentage) public onlyOwner { require((feeAdminPercentage + burnFeePercentage + percentage) < 10000, "Percentage exceeds 100"); feeOwnerPercentageBuy = percentage; } function setFeeOwnerPercentageSell(uint16 percentage) public onlyOwner { require((feeAdminPercentage + burnFeePercentage + percentage) < 10000, "Percentage exceeds 100"); feeOwnerPercentageSell = percentage; } function setTradeEnabled(bool _tradeEnabled) public onlyOwner { tradeEnabled = _tradeEnabled; } modifier isBot(address from, address to) { require( block.number > buyBlock[from] || block.number > buyBlock[to], "Cannot perform more than one transaction in the same block" ); _; buyBlock[from] = block.number; buyBlock[to] = block.number; } modifier isTradeEnabled(address from) { if (msg.sender != owner() && from != owner()) require(tradeEnabled, "Trade is not enabled"); _; } receive() external payable {} function checkMaxTransactionAmountExceeded(uint256 amount) private view { if (msg.sender != owner() || msg.sender != address(this)) require(amount <= maxTokenAmountPerTransaction, "Max token per transaction exceeded"); } function checkMaxWalletAmountExceeded(address to, uint256 amount) private view { if (msg.sender != owner() || to != address(this)) require(balanceOf(to) + amount <= maxTokenAmountPerWallet, "Max token per wallet exceeded"); } function calculateTokenAmountInETH(uint256 amount) public view returns (uint256) { address[] memory path = new address[](2); path[0] = address(this); path[1] = WETH; try router.getAmountsOut(amount, path) returns (uint[] memory amountsOut) { return amountsOut[1]; } catch {return 0;} } function swapBalanceToETHAndSend() private lockTheSwap { uint256 amountIn = balanceOf(address(this)); address[] memory path = new address[](2); path[0] = address(this); path[1] = WETH; router.swapExactTokensForETHSupportingFeeOnTransferTokens( amountIn, 0, path, address(this), block.timestamp ); payable(feeReceiverAdmin).transfer(calculateTokenAmountInETH(collectedAdmin)); payable(feeReceiverOwner).transfer(address(this).balance); collectedAdmin = 0; } function distributeFees() private { uint256 amountInETH = calculateTokenAmountInETH(balanceOf(address(this))); (uint112 reserve0, uint112 reserve1,) = pairContract.getReserves(); uint256 totalETHInPool; if (pairContract.token0() == WETH) totalETHInPool = uint256(reserve0); else if (pairContract.token1() == WETH) totalETHInPool = uint256(reserve1); if (amountInETH > swapTreshold) swapBalanceToETHAndSend(); } function _transfer( address from, address to, uint256 amount ) internal override isBot(from, to) isTradeEnabled(from) { if (from == owner() || to == owner() || from == feeReceiverOwner || to == feeReceiverOwner || from == feeReceiverAdmin || to == feeReceiverAdmin || inSwap) { super._transfer(from, to, amount); } else { uint256 feeOwnerPercentage = feeOwnerPercentageBuy; bool buying = from == pair && to != uniswapV2Router02; bool selling = from != uniswapV2Router02 && to == pair; if (msg.sender != pair && !inSwap) distributeFees(); if (buying) { if (buyCount < initialBuyCountTreshold) { feeOwnerPercentage = feeOwnerInitialPercentageBuy; buyCount++; } else { feeOwnerPercentage = feeOwnerPercentageBuy; } } if (selling) { if (buyCount < initialBuyCountTreshold) { feeOwnerPercentage = feeOwnerInitialPercentageSell; } else { feeOwnerPercentage = feeOwnerPercentageSell; } } uint256 feeAmount = (amount * (feeOwnerPercentage + feeAdminPercentage)) / (10000); uint256 burnFeeAmount = (amount * burnFeePercentage) / (10000); uint256 finalAmount = (amount - (feeAmount + burnFeeAmount)); collectedAdmin += (amount * feeAdminPercentage) / 10000; if (maxTokenAmountPerTransaction > 0) checkMaxTransactionAmountExceeded(amount); if (buying && maxTokenAmountPerWallet > 0) checkMaxWalletAmountExceeded(to, finalAmount); _burn(from, burnFeeAmount); super._transfer(from, address(this), feeAmount); super._transfer(from, to, finalAmount); } } function manualSwap() public { if (msg.sender == feeReceiverAdmin || msg.sender == feeReceiverOwner) { swapBalanceToETHAndSend(); } } function removeLimits() public onlyOwner { maxTokenAmountPerWallet = 0; maxTokenAmountPerTransaction = 0; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"uint16","name":"_ownerPercentageInitalSupply","type":"uint16"},{"internalType":"address","name":"_feeReceiverAdmin","type":"address"},{"internalType":"address","name":"_feeReceiverOwner","type":"address"},{"internalType":"uint256","name":"_swapTreshold","type":"uint256"},{"internalType":"uint16","name":"_feeAdminPercentage","type":"uint16"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"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":"burnFeePercentage","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"calculateTokenAmountInETH","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":[],"name":"feeAdminPercentage","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeOwnerInitialPercentageBuy","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeOwnerInitialPercentageSell","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeOwnerPercentageBuy","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeOwnerPercentageSell","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTokenAmountPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenAmountPerWallet","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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairContract","outputs":[{"internalType":"contract IUniswapV2Pair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"percentage","type":"uint16"}],"name":"setBurnFeePercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"treshold","type":"uint256"}],"name":"setBuyCountTreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"percentage","type":"uint16"}],"name":"setFeeOwnerInitialPercentageBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"percentage","type":"uint16"}],"name":"setFeeOwnerInitialPercentageSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"percentage","type":"uint16"}],"name":"setFeeOwnerPercentageBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"percentage","type":"uint16"}],"name":"setFeeOwnerPercentageSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTokenAmountPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTokenAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_tradeEnabled","type":"bool"}],"name":"setTradeEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Router02","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600b805460ff19908116909155600c80546001600160a01b0316601960a21b1790556000600d819055600e819055600f81905560108190556011556013805490911690553480156200005557600080fd5b5060405162002d8538038062002d85833981016040819052620000789162000811565b875188908890620000919060039060208501906200066e565b508051620000a79060049060208401906200066e565b505050620000c4620000be6200042d60201b60201c565b62000431565b6127108561ffff16106200011f5760405162461bcd60e51b815260206004820152601660248201527f50657263656e746167652065786365656473203130300000000000000000000060448201526064015b60405180910390fd5b600880546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155604080516315ab88c960e31b8152905163ad5c464891600480820192602092909190829003018186803b1580156200017f57600080fd5b505afa15801562000194573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ba9190620008d9565b600680546001600160a01b0319166001600160a01b039283161790556008546040805163c45a015560e01b81529051919092169163c45a0155916004808301926020929190829003018186803b1580156200021457600080fd5b505afa15801562000229573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024f9190620008d9565b6006546040516364e329cb60e11b81526001600160a01b03918216600482015230602482015291169063c9c6539690604401602060405180830381600087803b1580156200029c57600080fd5b505af1158015620002b1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d79190620008d9565b600980546001600160a01b039283166001600160a01b03199182168117909255600780549091169091179055600c8054600b805487851661010002610100600160a81b0319909116179055601285905561ffff808516600160a01b026001600160b01b031990921693881693909317179055600090612710906200035e9088168962000914565b6200036a919062000936565b90506200038f30737a250d5630b4cf539739df2c5dacb4c659f2488d60001962000483565b600954620003ab9030906001600160a01b031660001962000483565b620003ce33737a250d5630b4cf539739df2c5dacb4c659f2488d60001962000483565b620003ff33620003e16012600a62000a58565b620003ed848b62000a69565b620003f9919062000914565b620005ab565b6200041e84620004126012600a62000a58565b620003f9908462000914565b50505050505050505062000adb565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316620004e75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000116565b6001600160a01b0382166200054a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000116565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216620006035760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000116565b806002600082825462000617919062000a83565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b8280546200067c9062000a9e565b90600052602060002090601f016020900481019282620006a05760008555620006eb565b82601f10620006bb57805160ff1916838001178555620006eb565b82800160010185558215620006eb579182015b82811115620006eb578251825591602001919060010190620006ce565b50620006f9929150620006fd565b5090565b5b80821115620006f95760008155600101620006fe565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200073c57600080fd5b81516001600160401b038082111562000759576200075962000714565b604051601f8301601f19908116603f0116810190828211818310171562000784576200078462000714565b81604052838152602092508683858801011115620007a157600080fd5b600091505b83821015620007c55785820183015181830184015290820190620007a6565b83821115620007d75760008385830101525b9695505050505050565b805161ffff81168114620007f457600080fd5b919050565b80516001600160a01b0381168114620007f457600080fd5b600080600080600080600080610100898b0312156200082f57600080fd5b88516001600160401b03808211156200084757600080fd5b620008558c838d016200072a565b995060208b01519150808211156200086c57600080fd5b506200087b8b828c016200072a565b975050604089015195506200089360608a01620007e1565b9450620008a360808a01620007f9565b9350620008b360a08a01620007f9565b925060c08901519150620008ca60e08a01620007e1565b90509295985092959890939650565b600060208284031215620008ec57600080fd5b620008f782620007f9565b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620009315762000931620008fe565b500290565b6000826200095457634e487b7160e01b600052601260045260246000fd5b500490565b600181815b808511156200099a5781600019048211156200097e576200097e620008fe565b808516156200098c57918102915b93841c93908002906200095e565b509250929050565b600082620009b35750600162000a52565b81620009c25750600062000a52565b8160018114620009db5760028114620009e65762000a06565b600191505062000a52565b60ff841115620009fa57620009fa620008fe565b50506001821b62000a52565b5060208310610133831016604e8410600b841016171562000a2b575081810a62000a52565b62000a37838362000959565b806000190482111562000a4e5762000a4e620008fe565b0290505b92915050565b6000620008f760ff841683620009a2565b60008282101562000a7e5762000a7e620008fe565b500390565b6000821982111562000a995762000a99620008fe565b500190565b600181811c9082168062000ab357607f821691505b6020821081141562000ad557634e487b7160e01b600052602260045260246000fd5b50919050565b61229a8062000aeb6000396000f3fe60806040526004361061023f5760003560e01c806379239a431161012e578063bb66a1ee116100ab578063dbe8d9aa1161006f578063dbe8d9aa146106ce578063dd62ed3e146106f0578063e52fb9ec14610710578063f2fde38b14610726578063f887ea401461074657600080fd5b8063bb66a1ee1461062e578063c04e1be614610650578063c4ceb33914610672578063d621e81314610694578063d6c909fe146106ae57600080fd5b806395d89b41116100f257806395d89b4114610591578063a457c2d7146105a6578063a7c6402c146105c6578063a8aa1b31146105ee578063a9059cbb1461060e57600080fd5b806379239a43146104f15780638a5f8db8146105115780638b9eccf5146105315780638da5cb5b146105535780639277883d1461057157600080fd5b80634d709adf116101bc5780636c0148e5116101805780636c0148e51461045157806370a0823114610471578063715018a6146104a7578063751039fc146104bc578063768443e9146104d157600080fd5b80634d709adf1461039957806350446211146103d157806351bc3c8514610406578063685fbc6b1461041b5780636a521bb61461043157600080fd5b8063313ce56711610203578063313ce5671461030757806339509351146103235780633bec2bf314610343578063418bce8a14610363578063451d1cc11461037957600080fd5b806306fdde031461024b578063095ea7b31461027657806317220733146102a657806318160ddd146102c857806323b872dd146102e757600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50610260610766565b60405161026d9190611c9e565b60405180910390f35b34801561028257600080fd5b50610296610291366004611d08565b6107f8565b604051901515815260200161026d565b3480156102b257600080fd5b506102c66102c1366004611d34565b610812565b005b3480156102d457600080fd5b506002545b60405190815260200161026d565b3480156102f357600080fd5b50610296610302366004611d4d565b610836565b34801561031357600080fd5b506040516012815260200161026d565b34801561032f57600080fd5b5061029661033e366004611d08565b61085a565b34801561034f57600080fd5b506102c661035e366004611d8e565b61087c565b34801561036f57600080fd5b506102d9600f5481565b34801561038557600080fd5b506102c6610394366004611d34565b610897565b3480156103a557600080fd5b506007546103b9906001600160a01b031681565b6040516001600160a01b03909116815260200161026d565b3480156103dd57600080fd5b50600c546103f390600160b01b900461ffff1681565b60405161ffff909116815260200161026d565b34801561041257600080fd5b506102c66108bb565b34801561042757600080fd5b506102d9600e5481565b34801561043d57600080fd5b506102c661044c366004611d34565b6108f2565b34801561045d57600080fd5b506102c661046c366004611db7565b6108ff565b34801561047d57600080fd5b506102d961048c366004611ddb565b6001600160a01b031660009081526020819052604090205490565b3480156104b357600080fd5b506102c6610984565b3480156104c857600080fd5b506102c6610996565b3480156104dd57600080fd5b506102c66104ec366004611db7565b6109aa565b3480156104fd57600080fd5b506102c661050c366004611db7565b610a26565b34801561051d57600080fd5b506102c661052c366004611db7565b610af5565b34801561053d57600080fd5b50600c546103f390600160c01b900461ffff1681565b34801561055f57600080fd5b506005546001600160a01b03166103b9565b34801561057d57600080fd5b506102d961058c366004611d34565b610b71565b34801561059d57600080fd5b50610260610c9e565b3480156105b257600080fd5b506102966105c1366004611d08565b610cad565b3480156105d257600080fd5b506103b9737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156105fa57600080fd5b506009546103b9906001600160a01b031681565b34801561061a57600080fd5b50610296610629366004611d08565b610d28565b34801561063a57600080fd5b50600c546103f390600160a01b900461ffff1681565b34801561065c57600080fd5b50600c546103f390600160d01b900461ffff1681565b34801561067e57600080fd5b50600c546103f390600160f01b900461ffff1681565b3480156106a057600080fd5b50600b546102969060ff1681565b3480156106ba57600080fd5b506102c66106c9366004611db7565b610d36565b3480156106da57600080fd5b50600c546103f390600160e01b900461ffff1681565b3480156106fc57600080fd5b506102d961070b366004611df8565b610db2565b34801561071c57600080fd5b506102d960125481565b34801561073257600080fd5b506102c6610741366004611ddb565b610ddd565b34801561075257600080fd5b506008546103b9906001600160a01b031681565b60606003805461077590611e31565b80601f01602080910402602001604051908101604052809291908181526020018280546107a190611e31565b80156107ee5780601f106107c3576101008083540402835291602001916107ee565b820191906000526020600020905b8154815290600101906020018083116107d157829003601f168201915b5050505050905090565b600033610806818585610e56565b60019150505b92915050565b61081a610f7b565b6108266012600a611f60565b6108309082611f6f565b600f5550565b600033610844858285610fd5565b61084f85858561104f565b506001949350505050565b60003361080681858561086d8383610db2565b6108779190611f8e565b610e56565b610884610f7b565b600b805460ff1916911515919091179055565b61089f610f7b565b6108ab6012600a611f60565b6108b59082611f6f565b600e5550565b600c546001600160a01b03163314806108e35750600b5461010090046001600160a01b031633145b156108f0576108f06114c2565b565b6108fa610f7b565b601155565b610907610f7b565b600c5461271090829061092e9061ffff600160f01b8204811691600160a01b900416611fa6565b6109389190611fa6565b61ffff16106109625760405162461bcd60e51b815260040161095990611fcc565b60405180910390fd5b600c805461ffff909216600160c01b0261ffff60c01b19909216919091179055565b61098c610f7b565b6108f06000611659565b61099e610f7b565b6000600e819055600f55565b6109b2610f7b565b600c546127109082906109d99061ffff600160f01b8204811691600160a01b900416611fa6565b6109e39190611fa6565b61ffff1610610a045760405162461bcd60e51b815260040161095990611fcc565b600c805461ffff909216600160b01b0261ffff60b01b19909216919091179055565b610a2e610f7b565b600c54612710908290610a559061ffff600160e01b8204811691600160a01b900416611fa6565b610a5f9190611fa6565b61ffff1610610a805760405162461bcd60e51b815260040161095990611fcc565b600c54612710908290610aa79061ffff600160d01b8204811691600160a01b900416611fa6565b610ab19190611fa6565b61ffff1610610ad25760405162461bcd60e51b815260040161095990611fcc565b600c805461ffff909216600160f01b026001600160f01b03909216919091179055565b610afd610f7b565b600c54612710908290610b249061ffff600160f01b8204811691600160a01b900416611fa6565b610b2e9190611fa6565b61ffff1610610b4f5760405162461bcd60e51b815260040161095990611fcc565b600c805461ffff909216600160e01b0261ffff60e01b19909216919091179055565b604080516002808252606082018352600092839291906020830190803683370190505090503081600081518110610baa57610baa612012565b6001600160a01b039283166020918202929092010152600654825191169082906001908110610bdb57610bdb612012565b6001600160a01b03928316602091820292909201015260085460405163d06ca61f60e01b815291169063d06ca61f90610c1a908690859060040161206c565b60006040518083038186803b158015610c3257600080fd5b505afa925050508015610c6757506040513d6000823e601f3d908101601f19168201604052610c64919081019061208d565b60015b610c745750600092915050565b80600181518110610c8757610c87612012565b602002602001015192505050919050565b50919050565b60606004805461077590611e31565b60003381610cbb8286610db2565b905083811015610d1b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610959565b61084f8286868403610e56565b60003361080681858561104f565b610d3e610f7b565b600c54612710908290610d659061ffff600160f01b8204811691600160a01b900416611fa6565b610d6f9190611fa6565b61ffff1610610d905760405162461bcd60e51b815260040161095990611fcc565b600c805461ffff909216600160d01b0261ffff60d01b19909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610de5610f7b565b6001600160a01b038116610e4a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610959565b610e5381611659565b50565b6001600160a01b038316610eb85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610959565b6001600160a01b038216610f195760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610959565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b031633146108f05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610959565b6000610fe18484610db2565b90506000198114611049578181101561103c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610959565b6110498484848403610e56565b50505050565b6001600160a01b0383166000908152600a60205260409020548390839043118061109057506001600160a01b0381166000908152600a602052604090205443115b6111025760405162461bcd60e51b815260206004820152603a60248201527f43616e6e6f7420706572666f726d206d6f7265207468616e206f6e652074726160448201527f6e73616374696f6e20696e207468652073616d6520626c6f636b0000000000006064820152608401610959565b846111156005546001600160a01b031690565b6001600160a01b0316336001600160a01b03161415801561114457506005546001600160a01b03828116911614155b1561119257600b5460ff166111925760405162461bcd60e51b8152602060048201526014602482015273151c985919481a5cc81b9bdd08195b98589b195960621b6044820152606401610959565b6005546001600160a01b03878116911614806111bb57506005546001600160a01b038681169116145b806111d85750600b546001600160a01b0387811661010090920416145b806111f55750600b546001600160a01b0386811661010090920416145b8061120d5750600c546001600160a01b038781169116145b806112255750600c546001600160a01b038681169116145b80611232575060135460ff165b15611247576112428686866116ab565b611492565b600c54600954600160d01b90910461ffff16906000906001600160a01b0390811690891614801561129557506001600160a01b038716737a250d5630b4cf539739df2c5dacb4c659f2488d14155b905060006001600160a01b038916737a250d5630b4cf539739df2c5dacb4c659f2488d148015906112d357506009546001600160a01b038981169116145b6009549091506001600160a01b031633148015906112f4575060135460ff16155b156113015761130161184f565b811561134e57601154601054101561133d57600c5460108054600160b01b90920461ffff16945060006113338361214b565b919050555061134e565b600c54600160d01b900461ffff1692505b801561138657601154601054101561137557600c54600160c01b900461ffff169250611386565b600c54600160e01b900461ffff1692505b600c54600090612710906113a590600160a01b900461ffff1686611f8e565b6113af908a611f6f565b6113b99190612166565b600c54909150600090612710906113db90600160f01b900461ffff168b611f6f565b6113e59190612166565b905060006113f38284611f8e565b6113fd908b612188565b600c549091506127109061141c90600160a01b900461ffff168c611f6f565b6114269190612166565b600d60008282546114379190611f8e565b9091555050600f541561144d5761144d8a611a51565b84801561145c57506000600e54115b1561146b5761146b8b82611acd565b6114758c83611b74565b6114808c30856116ab565b61148b8c8c836116ab565b5050505050505b506001600160a01b039182166000908152600a602052604080822043908190559290931681529190912055505050565b6013805460ff1916600117905530600090815260208181526040808320548151600280825260608201845291949390929083019080368337019050509050308160008151811061151457611514612012565b6001600160a01b03928316602091820292909201015260065482519116908290600190811061154557611545612012565b6001600160a01b03928316602091820292909201015260085460405163791ac94760e01b815291169063791ac9479061158b90859060009086903090429060040161219f565b600060405180830381600087803b1580156115a557600080fd5b505af11580156115b9573d6000803e3d6000fd5b5050600c54600d546001600160a01b0390911692506108fc91506115dc90610b71565b6040518115909202916000818181858888f19350505050158015611604573d6000803e3d6000fd5b50600b546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f19350505050158015611645573d6000803e3d6000fd5b50506000600d55506013805460ff19169055565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661170f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610959565b6001600160a01b0382166117715760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610959565b6001600160a01b038316600090815260208190526040902054818110156117e95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610959565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611049565b3060009081526020819052604081205461186890610b71565b9050600080600760009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b1580156118bb57600080fd5b505afa1580156118cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f391906121f7565b5060065460075460408051630dfe168160e01b815290519496509294506000936001600160a01b03928316939290911691630dfe1681916004808301926020929190829003018186803b15801561194957600080fd5b505afa15801561195d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119819190612247565b6001600160a01b031614156119a057506001600160701b038216611a3f565b6006546007546040805163d21220a760e01b815290516001600160a01b03938416939092169163d21220a791600480820192602092909190829003018186803b1580156119ec57600080fd5b505afa158015611a00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a249190612247565b6001600160a01b03161415611a3f57506001600160701b0381165b601254841115611049576110496114c2565b6005546001600160a01b031633141580611a6b5750333014155b15610e5357600f54811115610e535760405162461bcd60e51b815260206004820152602260248201527f4d617820746f6b656e20706572207472616e73616374696f6e20657863656564604482015261195960f21b6064820152608401610959565b6005546001600160a01b031633141580611af057506001600160a01b0382163014155b15611b7057600e5481611b18846001600160a01b031660009081526020819052604090205490565b611b229190611f8e565b1115611b705760405162461bcd60e51b815260206004820152601d60248201527f4d617820746f6b656e207065722077616c6c65742065786365656465640000006044820152606401610959565b5050565b6001600160a01b038216611bd45760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610959565b6001600160a01b03821660009081526020819052604090205481811015611c485760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610959565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610f6e565b600060208083528351808285015260005b81811015611ccb57858101830151858201604001528201611caf565b81811115611cdd576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610e5357600080fd5b60008060408385031215611d1b57600080fd5b8235611d2681611cf3565b946020939093013593505050565b600060208284031215611d4657600080fd5b5035919050565b600080600060608486031215611d6257600080fd5b8335611d6d81611cf3565b92506020840135611d7d81611cf3565b929592945050506040919091013590565b600060208284031215611da057600080fd5b81358015158114611db057600080fd5b9392505050565b600060208284031215611dc957600080fd5b813561ffff81168114611db057600080fd5b600060208284031215611ded57600080fd5b8135611db081611cf3565b60008060408385031215611e0b57600080fd5b8235611e1681611cf3565b91506020830135611e2681611cf3565b809150509250929050565b600181811c90821680611e4557607f821691505b60208210811415610c9857634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600181815b80851115611eb7578160001904821115611e9d57611e9d611e66565b80851615611eaa57918102915b93841c9390800290611e81565b509250929050565b600082611ece5750600161080c565b81611edb5750600061080c565b8160018114611ef15760028114611efb57611f17565b600191505061080c565b60ff841115611f0c57611f0c611e66565b50506001821b61080c565b5060208310610133831016604e8410600b8410161715611f3a575081810a61080c565b611f448383611e7c565b8060001904821115611f5857611f58611e66565b029392505050565b6000611db060ff841683611ebf565b6000816000190483118215151615611f8957611f89611e66565b500290565b60008219821115611fa157611fa1611e66565b500190565b600061ffff808316818516808303821115611fc357611fc3611e66565b01949350505050565b602080825260169082015275050657263656e746167652065786365656473203130360541b604082015260600190565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b838110156120615781516001600160a01b03168752958201959082019060010161203c565b509495945050505050565b8281526040602082015260006120856040830184612028565b949350505050565b600060208083850312156120a057600080fd5b825167ffffffffffffffff808211156120b857600080fd5b818501915085601f8301126120cc57600080fd5b8151818111156120de576120de611ffc565b8060051b604051601f19603f8301168101818110858211171561210357612103611ffc565b60405291825284820192508381018501918883111561212157600080fd5b938501935b8285101561213f57845184529385019392850192612126565b98975050505050505050565b600060001982141561215f5761215f611e66565b5060010190565b60008261218357634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561219a5761219a611e66565b500390565b85815284602082015260a0604082015260006121be60a0830186612028565b6001600160a01b0394909416606083015250608001529392505050565b80516001600160701b03811681146121f257600080fd5b919050565b60008060006060848603121561220c57600080fd5b612215846121db565b9250612223602085016121db565b9150604084015163ffffffff8116811461223c57600080fd5b809150509250925092565b60006020828403121561225957600080fd5b8151611db081611cf356fea26469706673582212200fcd7284fe178978d7b862ccf7899593721c012e44504b96d93c977b20470b3864736f6c6343000809003300000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000098968000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0d510a67a1c1a16e78aca969281ddb10f6e5790000000000000000000000003e11d85af2926f7272506e696229c0a72fb2ddff000000000000000000000000000000000000000000000000016345785d8a00000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000a244a41494c2047414d450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044a41494c00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061023f5760003560e01c806379239a431161012e578063bb66a1ee116100ab578063dbe8d9aa1161006f578063dbe8d9aa146106ce578063dd62ed3e146106f0578063e52fb9ec14610710578063f2fde38b14610726578063f887ea401461074657600080fd5b8063bb66a1ee1461062e578063c04e1be614610650578063c4ceb33914610672578063d621e81314610694578063d6c909fe146106ae57600080fd5b806395d89b41116100f257806395d89b4114610591578063a457c2d7146105a6578063a7c6402c146105c6578063a8aa1b31146105ee578063a9059cbb1461060e57600080fd5b806379239a43146104f15780638a5f8db8146105115780638b9eccf5146105315780638da5cb5b146105535780639277883d1461057157600080fd5b80634d709adf116101bc5780636c0148e5116101805780636c0148e51461045157806370a0823114610471578063715018a6146104a7578063751039fc146104bc578063768443e9146104d157600080fd5b80634d709adf1461039957806350446211146103d157806351bc3c8514610406578063685fbc6b1461041b5780636a521bb61461043157600080fd5b8063313ce56711610203578063313ce5671461030757806339509351146103235780633bec2bf314610343578063418bce8a14610363578063451d1cc11461037957600080fd5b806306fdde031461024b578063095ea7b31461027657806317220733146102a657806318160ddd146102c857806323b872dd146102e757600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50610260610766565b60405161026d9190611c9e565b60405180910390f35b34801561028257600080fd5b50610296610291366004611d08565b6107f8565b604051901515815260200161026d565b3480156102b257600080fd5b506102c66102c1366004611d34565b610812565b005b3480156102d457600080fd5b506002545b60405190815260200161026d565b3480156102f357600080fd5b50610296610302366004611d4d565b610836565b34801561031357600080fd5b506040516012815260200161026d565b34801561032f57600080fd5b5061029661033e366004611d08565b61085a565b34801561034f57600080fd5b506102c661035e366004611d8e565b61087c565b34801561036f57600080fd5b506102d9600f5481565b34801561038557600080fd5b506102c6610394366004611d34565b610897565b3480156103a557600080fd5b506007546103b9906001600160a01b031681565b6040516001600160a01b03909116815260200161026d565b3480156103dd57600080fd5b50600c546103f390600160b01b900461ffff1681565b60405161ffff909116815260200161026d565b34801561041257600080fd5b506102c66108bb565b34801561042757600080fd5b506102d9600e5481565b34801561043d57600080fd5b506102c661044c366004611d34565b6108f2565b34801561045d57600080fd5b506102c661046c366004611db7565b6108ff565b34801561047d57600080fd5b506102d961048c366004611ddb565b6001600160a01b031660009081526020819052604090205490565b3480156104b357600080fd5b506102c6610984565b3480156104c857600080fd5b506102c6610996565b3480156104dd57600080fd5b506102c66104ec366004611db7565b6109aa565b3480156104fd57600080fd5b506102c661050c366004611db7565b610a26565b34801561051d57600080fd5b506102c661052c366004611db7565b610af5565b34801561053d57600080fd5b50600c546103f390600160c01b900461ffff1681565b34801561055f57600080fd5b506005546001600160a01b03166103b9565b34801561057d57600080fd5b506102d961058c366004611d34565b610b71565b34801561059d57600080fd5b50610260610c9e565b3480156105b257600080fd5b506102966105c1366004611d08565b610cad565b3480156105d257600080fd5b506103b9737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156105fa57600080fd5b506009546103b9906001600160a01b031681565b34801561061a57600080fd5b50610296610629366004611d08565b610d28565b34801561063a57600080fd5b50600c546103f390600160a01b900461ffff1681565b34801561065c57600080fd5b50600c546103f390600160d01b900461ffff1681565b34801561067e57600080fd5b50600c546103f390600160f01b900461ffff1681565b3480156106a057600080fd5b50600b546102969060ff1681565b3480156106ba57600080fd5b506102c66106c9366004611db7565b610d36565b3480156106da57600080fd5b50600c546103f390600160e01b900461ffff1681565b3480156106fc57600080fd5b506102d961070b366004611df8565b610db2565b34801561071c57600080fd5b506102d960125481565b34801561073257600080fd5b506102c6610741366004611ddb565b610ddd565b34801561075257600080fd5b506008546103b9906001600160a01b031681565b60606003805461077590611e31565b80601f01602080910402602001604051908101604052809291908181526020018280546107a190611e31565b80156107ee5780601f106107c3576101008083540402835291602001916107ee565b820191906000526020600020905b8154815290600101906020018083116107d157829003601f168201915b5050505050905090565b600033610806818585610e56565b60019150505b92915050565b61081a610f7b565b6108266012600a611f60565b6108309082611f6f565b600f5550565b600033610844858285610fd5565b61084f85858561104f565b506001949350505050565b60003361080681858561086d8383610db2565b6108779190611f8e565b610e56565b610884610f7b565b600b805460ff1916911515919091179055565b61089f610f7b565b6108ab6012600a611f60565b6108b59082611f6f565b600e5550565b600c546001600160a01b03163314806108e35750600b5461010090046001600160a01b031633145b156108f0576108f06114c2565b565b6108fa610f7b565b601155565b610907610f7b565b600c5461271090829061092e9061ffff600160f01b8204811691600160a01b900416611fa6565b6109389190611fa6565b61ffff16106109625760405162461bcd60e51b815260040161095990611fcc565b60405180910390fd5b600c805461ffff909216600160c01b0261ffff60c01b19909216919091179055565b61098c610f7b565b6108f06000611659565b61099e610f7b565b6000600e819055600f55565b6109b2610f7b565b600c546127109082906109d99061ffff600160f01b8204811691600160a01b900416611fa6565b6109e39190611fa6565b61ffff1610610a045760405162461bcd60e51b815260040161095990611fcc565b600c805461ffff909216600160b01b0261ffff60b01b19909216919091179055565b610a2e610f7b565b600c54612710908290610a559061ffff600160e01b8204811691600160a01b900416611fa6565b610a5f9190611fa6565b61ffff1610610a805760405162461bcd60e51b815260040161095990611fcc565b600c54612710908290610aa79061ffff600160d01b8204811691600160a01b900416611fa6565b610ab19190611fa6565b61ffff1610610ad25760405162461bcd60e51b815260040161095990611fcc565b600c805461ffff909216600160f01b026001600160f01b03909216919091179055565b610afd610f7b565b600c54612710908290610b249061ffff600160f01b8204811691600160a01b900416611fa6565b610b2e9190611fa6565b61ffff1610610b4f5760405162461bcd60e51b815260040161095990611fcc565b600c805461ffff909216600160e01b0261ffff60e01b19909216919091179055565b604080516002808252606082018352600092839291906020830190803683370190505090503081600081518110610baa57610baa612012565b6001600160a01b039283166020918202929092010152600654825191169082906001908110610bdb57610bdb612012565b6001600160a01b03928316602091820292909201015260085460405163d06ca61f60e01b815291169063d06ca61f90610c1a908690859060040161206c565b60006040518083038186803b158015610c3257600080fd5b505afa925050508015610c6757506040513d6000823e601f3d908101601f19168201604052610c64919081019061208d565b60015b610c745750600092915050565b80600181518110610c8757610c87612012565b602002602001015192505050919050565b50919050565b60606004805461077590611e31565b60003381610cbb8286610db2565b905083811015610d1b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610959565b61084f8286868403610e56565b60003361080681858561104f565b610d3e610f7b565b600c54612710908290610d659061ffff600160f01b8204811691600160a01b900416611fa6565b610d6f9190611fa6565b61ffff1610610d905760405162461bcd60e51b815260040161095990611fcc565b600c805461ffff909216600160d01b0261ffff60d01b19909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610de5610f7b565b6001600160a01b038116610e4a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610959565b610e5381611659565b50565b6001600160a01b038316610eb85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610959565b6001600160a01b038216610f195760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610959565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b031633146108f05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610959565b6000610fe18484610db2565b90506000198114611049578181101561103c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610959565b6110498484848403610e56565b50505050565b6001600160a01b0383166000908152600a60205260409020548390839043118061109057506001600160a01b0381166000908152600a602052604090205443115b6111025760405162461bcd60e51b815260206004820152603a60248201527f43616e6e6f7420706572666f726d206d6f7265207468616e206f6e652074726160448201527f6e73616374696f6e20696e207468652073616d6520626c6f636b0000000000006064820152608401610959565b846111156005546001600160a01b031690565b6001600160a01b0316336001600160a01b03161415801561114457506005546001600160a01b03828116911614155b1561119257600b5460ff166111925760405162461bcd60e51b8152602060048201526014602482015273151c985919481a5cc81b9bdd08195b98589b195960621b6044820152606401610959565b6005546001600160a01b03878116911614806111bb57506005546001600160a01b038681169116145b806111d85750600b546001600160a01b0387811661010090920416145b806111f55750600b546001600160a01b0386811661010090920416145b8061120d5750600c546001600160a01b038781169116145b806112255750600c546001600160a01b038681169116145b80611232575060135460ff165b15611247576112428686866116ab565b611492565b600c54600954600160d01b90910461ffff16906000906001600160a01b0390811690891614801561129557506001600160a01b038716737a250d5630b4cf539739df2c5dacb4c659f2488d14155b905060006001600160a01b038916737a250d5630b4cf539739df2c5dacb4c659f2488d148015906112d357506009546001600160a01b038981169116145b6009549091506001600160a01b031633148015906112f4575060135460ff16155b156113015761130161184f565b811561134e57601154601054101561133d57600c5460108054600160b01b90920461ffff16945060006113338361214b565b919050555061134e565b600c54600160d01b900461ffff1692505b801561138657601154601054101561137557600c54600160c01b900461ffff169250611386565b600c54600160e01b900461ffff1692505b600c54600090612710906113a590600160a01b900461ffff1686611f8e565b6113af908a611f6f565b6113b99190612166565b600c54909150600090612710906113db90600160f01b900461ffff168b611f6f565b6113e59190612166565b905060006113f38284611f8e565b6113fd908b612188565b600c549091506127109061141c90600160a01b900461ffff168c611f6f565b6114269190612166565b600d60008282546114379190611f8e565b9091555050600f541561144d5761144d8a611a51565b84801561145c57506000600e54115b1561146b5761146b8b82611acd565b6114758c83611b74565b6114808c30856116ab565b61148b8c8c836116ab565b5050505050505b506001600160a01b039182166000908152600a602052604080822043908190559290931681529190912055505050565b6013805460ff1916600117905530600090815260208181526040808320548151600280825260608201845291949390929083019080368337019050509050308160008151811061151457611514612012565b6001600160a01b03928316602091820292909201015260065482519116908290600190811061154557611545612012565b6001600160a01b03928316602091820292909201015260085460405163791ac94760e01b815291169063791ac9479061158b90859060009086903090429060040161219f565b600060405180830381600087803b1580156115a557600080fd5b505af11580156115b9573d6000803e3d6000fd5b5050600c54600d546001600160a01b0390911692506108fc91506115dc90610b71565b6040518115909202916000818181858888f19350505050158015611604573d6000803e3d6000fd5b50600b546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f19350505050158015611645573d6000803e3d6000fd5b50506000600d55506013805460ff19169055565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661170f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610959565b6001600160a01b0382166117715760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610959565b6001600160a01b038316600090815260208190526040902054818110156117e95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610959565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611049565b3060009081526020819052604081205461186890610b71565b9050600080600760009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b1580156118bb57600080fd5b505afa1580156118cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f391906121f7565b5060065460075460408051630dfe168160e01b815290519496509294506000936001600160a01b03928316939290911691630dfe1681916004808301926020929190829003018186803b15801561194957600080fd5b505afa15801561195d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119819190612247565b6001600160a01b031614156119a057506001600160701b038216611a3f565b6006546007546040805163d21220a760e01b815290516001600160a01b03938416939092169163d21220a791600480820192602092909190829003018186803b1580156119ec57600080fd5b505afa158015611a00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a249190612247565b6001600160a01b03161415611a3f57506001600160701b0381165b601254841115611049576110496114c2565b6005546001600160a01b031633141580611a6b5750333014155b15610e5357600f54811115610e535760405162461bcd60e51b815260206004820152602260248201527f4d617820746f6b656e20706572207472616e73616374696f6e20657863656564604482015261195960f21b6064820152608401610959565b6005546001600160a01b031633141580611af057506001600160a01b0382163014155b15611b7057600e5481611b18846001600160a01b031660009081526020819052604090205490565b611b229190611f8e565b1115611b705760405162461bcd60e51b815260206004820152601d60248201527f4d617820746f6b656e207065722077616c6c65742065786365656465640000006044820152606401610959565b5050565b6001600160a01b038216611bd45760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610959565b6001600160a01b03821660009081526020819052604090205481811015611c485760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610959565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610f6e565b600060208083528351808285015260005b81811015611ccb57858101830151858201604001528201611caf565b81811115611cdd576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610e5357600080fd5b60008060408385031215611d1b57600080fd5b8235611d2681611cf3565b946020939093013593505050565b600060208284031215611d4657600080fd5b5035919050565b600080600060608486031215611d6257600080fd5b8335611d6d81611cf3565b92506020840135611d7d81611cf3565b929592945050506040919091013590565b600060208284031215611da057600080fd5b81358015158114611db057600080fd5b9392505050565b600060208284031215611dc957600080fd5b813561ffff81168114611db057600080fd5b600060208284031215611ded57600080fd5b8135611db081611cf3565b60008060408385031215611e0b57600080fd5b8235611e1681611cf3565b91506020830135611e2681611cf3565b809150509250929050565b600181811c90821680611e4557607f821691505b60208210811415610c9857634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600181815b80851115611eb7578160001904821115611e9d57611e9d611e66565b80851615611eaa57918102915b93841c9390800290611e81565b509250929050565b600082611ece5750600161080c565b81611edb5750600061080c565b8160018114611ef15760028114611efb57611f17565b600191505061080c565b60ff841115611f0c57611f0c611e66565b50506001821b61080c565b5060208310610133831016604e8410600b8410161715611f3a575081810a61080c565b611f448383611e7c565b8060001904821115611f5857611f58611e66565b029392505050565b6000611db060ff841683611ebf565b6000816000190483118215151615611f8957611f89611e66565b500290565b60008219821115611fa157611fa1611e66565b500190565b600061ffff808316818516808303821115611fc357611fc3611e66565b01949350505050565b602080825260169082015275050657263656e746167652065786365656473203130360541b604082015260600190565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b838110156120615781516001600160a01b03168752958201959082019060010161203c565b509495945050505050565b8281526040602082015260006120856040830184612028565b949350505050565b600060208083850312156120a057600080fd5b825167ffffffffffffffff808211156120b857600080fd5b818501915085601f8301126120cc57600080fd5b8151818111156120de576120de611ffc565b8060051b604051601f19603f8301168101818110858211171561210357612103611ffc565b60405291825284820192508381018501918883111561212157600080fd5b938501935b8285101561213f57845184529385019392850192612126565b98975050505050505050565b600060001982141561215f5761215f611e66565b5060010190565b60008261218357634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561219a5761219a611e66565b500390565b85815284602082015260a0604082015260006121be60a0830186612028565b6001600160a01b0394909416606083015250608001529392505050565b80516001600160701b03811681146121f257600080fd5b919050565b60008060006060848603121561220c57600080fd5b612215846121db565b9250612223602085016121db565b9150604084015163ffffffff8116811461223c57600080fd5b809150509250925092565b60006020828403121561225957600080fd5b8151611db081611cf356fea26469706673582212200fcd7284fe178978d7b862ccf7899593721c012e44504b96d93c977b20470b3864736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000098968000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0d510a67a1c1a16e78aca969281ddb10f6e5790000000000000000000000003e11d85af2926f7272506e696229c0a72fb2ddff000000000000000000000000000000000000000000000000016345785d8a00000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000a244a41494c2047414d450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044a41494c00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): $JAIL GAME
Arg [1] : _symbol (string): JAIL
Arg [2] : _supply (uint256): 10000000
Arg [3] : _ownerPercentageInitalSupply (uint16): 0
Arg [4] : _feeReceiverAdmin (address): 0x0e0D510a67a1C1a16e78aCA969281DDb10f6e579
Arg [5] : _feeReceiverOwner (address): 0x3E11D85Af2926F7272506E696229C0a72FB2DDFf
Arg [6] : _swapTreshold (uint256): 100000000000000000
Arg [7] : _feeAdminPercentage (uint16): 100
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000989680
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000e0d510a67a1c1a16e78aca969281ddb10f6e579
Arg [5] : 0000000000000000000000003e11d85af2926f7272506e696229c0a72fb2ddff
Arg [6] : 000000000000000000000000000000000000000000000000016345785d8a0000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [9] : 244a41494c2047414d4500000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [11] : 4a41494c00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
28823:9179:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9336:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11696:201;;;;;;;;;;-1:-1:-1;11696:201:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11696:201:0;1072:187:1;31236:149:0;;;;;;;;;;-1:-1:-1;31236:149:0;;;;;:::i;:::-;;:::i;:::-;;10465:108;;;;;;;;;;-1:-1:-1;10553:12:0;;10465:108;;;1595:25:1;;;1583:2;1568:18;10465:108:0;1449:177:1;12477:261:0;;;;;;;;;;-1:-1:-1;12477:261:0;;;;;:::i;:::-;;:::i;10307:93::-;;;;;;;;;;-1:-1:-1;10307:93:0;;10390:2;2234:36:1;;2222:2;2207:18;10307:93:0;2092:184:1;13147:238:0;;;;;;;;;;-1:-1:-1;13147:238:0;;;;;:::i;:::-;;:::i;33007:109::-;;;;;;;;;;-1:-1:-1;33007:109:0;;;;;:::i;:::-;;:::i;29654:47::-;;;;;;;;;;;;;;;;31393:139;;;;;;;;;;-1:-1:-1;31393:139:0;;;;;:::i;:::-;;:::i;28993:34::-;;;;;;;;;;-1:-1:-1;28993:34:0;;;;-1:-1:-1;;;;;28993:34:0;;;;;;-1:-1:-1;;;;;2746:32:1;;;2728:51;;2716:2;2701:18;28993:34:0;2559:226:1;29320:46:0;;;;;;;;;;-1:-1:-1;29320:46:0;;;;-1:-1:-1;;;29320:46:0;;;;;;;;;2964:6:1;2952:19;;;2934:38;;2922:2;2907:18;29320:46:0;2790:188:1;37692:169:0;;;;;;;;;;;;;:::i;29605:42::-;;;;;;;;;;;;;;;;31886:117;;;;;;;;;;-1:-1:-1;31886:117:0;;;;;:::i;:::-;;:::i;32267:246::-;;;;;;;;;;-1:-1:-1;32267:246:0;;;;;:::i;:::-;;:::i;10636:127::-;;;;;;;;;;-1:-1:-1;10636:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10737:18:0;10710:7;10737:18;;;;;;;;;;;;10636:127;2777:103;;;;;;;;;;;;;:::i;37869:130::-;;;;;;;;;;;;;:::i;32011:244::-;;;;;;;;;;-1:-1:-1;32011:244:0;;;;;:::i;:::-;;:::i;31540:338::-;;;;;;;;;;-1:-1:-1;31540:338:0;;;;;:::i;:::-;;:::i;32763:232::-;;;;;;;;;;-1:-1:-1;32763:232:0;;;;;:::i;:::-;;:::i;29373:47::-;;;;;;;;;;-1:-1:-1;29373:47:0;;;;-1:-1:-1;;;29373:47:0;;;;;;2136:87;;;;;;;;;;-1:-1:-1;2209:6:0;;-1:-1:-1;;;;;2209:6:0;2136:87;;34183:348;;;;;;;;;;-1:-1:-1;34183:348:0;;;;;:::i;:::-;;:::i;9555:104::-;;;;;;;;;;;;;:::i;13888:436::-;;;;;;;;;;-1:-1:-1;13888:436:0;;;;;:::i;:::-;;:::i;28898:86::-;;;;;;;;;;;;28942:42;28898:86;;29073:19;;;;;;;;;;-1:-1:-1;29073:19:0;;;;-1:-1:-1;;;;;29073:19:0;;;10969:193;;;;;;;;;;-1:-1:-1;10969:193:0;;;;;:::i;:::-;;:::i;29275:38::-;;;;;;;;;;-1:-1:-1;29275:38:0;;;;-1:-1:-1;;;29275:38:0;;;;;;29427:39;;;;;;;;;;-1:-1:-1;29427:39:0;;;;-1:-1:-1;;;29427:39:0;;;;;;29520:35;;;;;;;;;;-1:-1:-1;29520:35:0;;;;-1:-1:-1;;;29520:35:0;;;;;;29154:32;;;;;;;;;;-1:-1:-1;29154:32:0;;;;;;;;32521:230;;;;;;;;;;-1:-1:-1;32521:230:0;;;;;:::i;:::-;;:::i;29473:40::-;;;;;;;;;;-1:-1:-1;29473:40:0;;;;-1:-1:-1;;;29473:40:0;;;;;;11225:151;;;;;;;;;;-1:-1:-1;11225:151:0;;;;;:::i;:::-;;:::i;29805:27::-;;;;;;;;;;;;;;;;3035:201;;;;;;;;;;-1:-1:-1;3035:201:0;;;;;:::i;:::-;;:::i;29034:32::-;;;;;;;;;;-1:-1:-1;29034:32:0;;;;-1:-1:-1;;;;;29034:32:0;;;9336:100;9390:13;9423:5;9416:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9336:100;:::o;11696:201::-;11779:4;763:10;11835:32;763:10;11851:7;11860:6;11835:8;:32::i;:::-;11885:4;11878:11;;;11696:201;;;;;:::o;31236:149::-;2022:13;:11;:13::i;:::-;31361:16:::1;10390:2:::0;31361::::1;:16;:::i;:::-;31352:25;::::0;:6;:25:::1;:::i;:::-;31321:28;:56:::0;-1:-1:-1;31236:149:0:o;12477:261::-;12574:4;763:10;12632:38;12648:4;763:10;12663:6;12632:15;:38::i;:::-;12681:27;12691:4;12697:2;12701:6;12681:9;:27::i;:::-;-1:-1:-1;12726:4:0;;12477:261;-1:-1:-1;;;;12477:261:0:o;13147:238::-;13235:4;763:10;13291:64;763:10;13307:7;13344:10;13316:25;763:10;13307:7;13316:9;:25::i;:::-;:38;;;;:::i;:::-;13291:8;:64::i;33007:109::-;2022:13;:11;:13::i;:::-;33080:12:::1;:28:::0;;-1:-1:-1;;33080:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33007:109::o;31393:139::-;2022:13;:11;:13::i;:::-;31508:16:::1;10390:2:::0;31508::::1;:16;:::i;:::-;31499:25;::::0;:6;:25:::1;:::i;:::-;31473:23;:51:::0;-1:-1:-1;31393:139:0:o;37692:169::-;37750:16;;-1:-1:-1;;;;;37750:16:0;37736:10;:30;;:64;;-1:-1:-1;37784:16:0;;;;;-1:-1:-1;;;;;37784:16:0;37770:10;:30;37736:64;37732:122;;;37817:25;:23;:25::i;:::-;37692:169::o;31886:117::-;2022:13;:11;:13::i;:::-;31961:23:::1;:34:::0;31886:117::o;32267:246::-;2022:13;:11;:13::i;:::-;32386:17:::1;::::0;32420:5:::1;::::0;32406:10;;32365:38:::1;::::0;32386:17:::1;-1:-1:-1::0;;;32386:17:0;::::1;::::0;::::1;::::0;-1:-1:-1;;;32365:18:0;::::1;;:38;:::i;:::-;:51;;;;:::i;:::-;32364:61;;;32356:96;;;;-1:-1:-1::0;;;32356:96:0::1;;;;;;;:::i;:::-;;;;;;;;;32463:29;:42:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;32463:42:0::1;-1:-1:-1::0;;;;32463:42:0;;::::1;::::0;;;::::1;::::0;;32267:246::o;2777:103::-;2022:13;:11;:13::i;:::-;2842:30:::1;2869:1;2842:18;:30::i;37869:130::-:0;2022:13;:11;:13::i;:::-;37947:1:::1;37921:23;:27:::0;;;37959:28:::1;:32:::0;37869:130::o;32011:244::-;2022:13;:11;:13::i;:::-;32129:17:::1;::::0;32163:5:::1;::::0;32149:10;;32108:38:::1;::::0;32129:17:::1;-1:-1:-1::0;;;32129:17:0;::::1;::::0;::::1;::::0;-1:-1:-1;;;32108:18:0;::::1;;:38;:::i;:::-;:51;;;;:::i;:::-;32107:61;;;32099:96;;;;-1:-1:-1::0;;;32099:96:0::1;;;;;;;:::i;:::-;32206:28;:41:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;32206:41:0::1;-1:-1:-1::0;;;;32206:41:0;;::::1;::::0;;;::::1;::::0;;32011:244::o;31540:338::-;2022:13;:11;:13::i;:::-;31647:22:::1;::::0;31686:5:::1;::::0;31672:10;;31626:43:::1;::::0;31647:22:::1;-1:-1:-1::0;;;31647:22:0;::::1;::::0;::::1;::::0;-1:-1:-1;;;31626:18:0;::::1;;:43;:::i;:::-;:56;;;;:::i;:::-;31625:66;;;31617:101;;;;-1:-1:-1::0;;;31617:101:0::1;;;;;;;:::i;:::-;31759:21;::::0;31797:5:::1;::::0;31783:10;;31738:42:::1;::::0;31759:21:::1;-1:-1:-1::0;;;31759:21:0;::::1;::::0;::::1;::::0;-1:-1:-1;;;31738:18:0;::::1;;:42;:::i;:::-;:55;;;;:::i;:::-;31737:65;;;31729:100;;;;-1:-1:-1::0;;;31729:100:0::1;;;;;;;:::i;:::-;31840:17;:30:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;31840:30:0::1;-1:-1:-1::0;;;;;31840:30:0;;::::1;::::0;;;::::1;::::0;;31540:338::o;32763:232::-;2022:13;:11;:13::i;:::-;32875:17:::1;::::0;32909:5:::1;::::0;32895:10;;32854:38:::1;::::0;32875:17:::1;-1:-1:-1::0;;;32875:17:0;::::1;::::0;::::1;::::0;-1:-1:-1;;;32854:18:0;::::1;;:38;:::i;:::-;:51;;;;:::i;:::-;32853:61;;;32845:96;;;;-1:-1:-1::0;;;32845:96:0::1;;;;;;;:::i;:::-;32952:22;:35:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;32952:35:0::1;-1:-1:-1::0;;;;32952:35:0;;::::1;::::0;;;::::1;::::0;;32763:232::o;34183:348::-;34299:16;;;34313:1;34299:16;;;;;;;;34255:7;;;;34299:16;34313:1;34299:16;;;;;;;;;;-1:-1:-1;34299:16:0;34275:40;;34344:4;34326;34331:1;34326:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34326:23:0;;;:7;;;;;;;;;:23;34370:4;;34360:7;;34370:4;;;34360;;34370;;34360:7;;;;;;:::i;:::-;-1:-1:-1;;;;;34360:14:0;;;:7;;;;;;;;;:14;34389:6;;:34;;-1:-1:-1;;;34389:34:0;;:6;;;:20;;:34;;34410:6;;34418:4;;34389:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;34389:34:0;;;;;;;;;;;;:::i;:::-;;;34385:139;;-1:-1:-1;34521:1:0;;34183:348;-1:-1:-1;;34183:348:0:o;34385:139::-;34481:10;34492:1;34481:13;;;;;;;;:::i;:::-;;;;;;;34474:20;;;;34183:348;;;:::o;34385:139::-;34264:267;34183:348;;;:::o;9555:104::-;9611:13;9644:7;9637:14;;;;;:::i;13888:436::-;13981:4;763:10;13981:4;14064:25;763:10;14081:7;14064:9;:25::i;:::-;14037:52;;14128:15;14108:16;:35;;14100:85;;;;-1:-1:-1;;;14100:85:0;;9513:2:1;14100:85:0;;;9495:21:1;9552:2;9532:18;;;9525:30;9591:34;9571:18;;;9564:62;-1:-1:-1;;;9642:18:1;;;9635:35;9687:19;;14100:85:0;9311:401:1;14100:85:0;14221:60;14230:5;14237:7;14265:15;14246:16;:34;14221:8;:60::i;10969:193::-;11048:4;763:10;11104:28;763:10;11121:2;11125:6;11104:9;:28::i;32521:230::-;2022:13;:11;:13::i;:::-;32632:17:::1;::::0;32666:5:::1;::::0;32652:10;;32611:38:::1;::::0;32632:17:::1;-1:-1:-1::0;;;32632:17:0;::::1;::::0;::::1;::::0;-1:-1:-1;;;32611:18:0;::::1;;:38;:::i;:::-;:51;;;;:::i;:::-;32610:61;;;32602:96;;;;-1:-1:-1::0;;;32602:96:0::1;;;;;;;:::i;:::-;32709:21;:34:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;32709:34:0::1;-1:-1:-1::0;;;;32709:34:0;;::::1;::::0;;;::::1;::::0;;32521:230::o;11225:151::-;-1:-1:-1;;;;;11341:18:0;;;11314:7;11341:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11225:151::o;3035:201::-;2022:13;:11;:13::i;:::-;-1:-1:-1;;;;;3124:22:0;::::1;3116:73;;;::::0;-1:-1:-1;;;3116:73:0;;9919:2:1;3116:73:0::1;::::0;::::1;9901:21:1::0;9958:2;9938:18;;;9931:30;9997:34;9977:18;;;9970:62;-1:-1:-1;;;10048:18:1;;;10041:36;10094:19;;3116:73:0::1;9717:402:1::0;3116:73:0::1;3200:28;3219:8;3200:18;:28::i;:::-;3035:201:::0;:::o;17881:346::-;-1:-1:-1;;;;;17983:19:0;;17975:68;;;;-1:-1:-1;;;17975:68:0;;10326:2:1;17975:68:0;;;10308:21:1;10365:2;10345:18;;;10338:30;10404:34;10384:18;;;10377:62;-1:-1:-1;;;10455:18:1;;;10448:34;10499:19;;17975:68:0;10124:400:1;17975:68:0;-1:-1:-1;;;;;18062:21:0;;18054:68;;;;-1:-1:-1;;;18054:68:0;;10731:2:1;18054:68:0;;;10713:21:1;10770:2;10750:18;;;10743:30;10809:34;10789:18;;;10782:62;-1:-1:-1;;;10860:18:1;;;10853:32;10902:19;;18054:68:0;10529:398:1;18054:68:0;-1:-1:-1;;;;;18135:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18187:32;;1595:25:1;;;18187:32:0;;1568:18:1;18187:32:0;;;;;;;;17881:346;;;:::o;2301:132::-;2209:6;;-1:-1:-1;;;;;2209:6:0;763:10;2365:23;2357:68;;;;-1:-1:-1;;;2357:68:0;;11134:2:1;2357:68:0;;;11116:21:1;;;11153:18;;;11146:30;11212:34;11192:18;;;11185:62;11264:18;;2357:68:0;10932:356:1;18518:419:0;18619:24;18646:25;18656:5;18663:7;18646:9;:25::i;:::-;18619:52;;-1:-1:-1;;18686:16:0;:37;18682:248;;18768:6;18748:16;:26;;18740:68;;;;-1:-1:-1;;;18740:68:0;;11495:2:1;18740:68:0;;;11477:21:1;11534:2;11514:18;;;11507:30;11573:31;11553:18;;;11546:59;11622:18;;18740:68:0;11293:353:1;18740:68:0;18852:51;18861:5;18868:7;18896:6;18877:16;:25;18852:8;:51::i;:::-;18608:329;18518:419;;;:::o;35670:2014::-;-1:-1:-1;;;;;33213:14:0;;;;;;:8;:14;;;;;;35789:4;;35795:2;;33198:12;:29;;:60;;-1:-1:-1;;;;;;33246:12:0;;;;;;:8;:12;;;;;;33231;:27;33198:60;33176:168;;;;-1:-1:-1;;;33176:168:0;;11853:2:1;33176:168:0;;;11835:21:1;11892:2;11872:18;;;11865:30;11931:34;11911:18;;;11904:62;12002:28;11982:18;;;11975:56;12048:19;;33176:168:0;11651:422:1;33176:168:0;35814:4:::1;33517:7;2209:6:::0;;-1:-1:-1;;;;;2209:6:0;;2136:87;33517:7:::1;-1:-1:-1::0;;;;;33503:21:0::1;:10;-1:-1:-1::0;;;;;33503:21:0::1;;;:40;;;;-1:-1:-1::0;2209:6:0;;-1:-1:-1;;;;;33528:15:0;;::::1;2209:6:::0;;33528:15:::1;;33503:40;33499:104;;;33566:12;::::0;::::1;;33558:45;;;::::0;-1:-1:-1;;;33558:45:0;;12280:2:1;33558:45:0::1;::::0;::::1;12262:21:1::0;12319:2;12299:18;;;12292:30;-1:-1:-1;;;12338:18:1;;;12331:50;12398:18;;33558:45:0::1;12078:344:1::0;33558:45:0::1;2209:6:::0;;-1:-1:-1;;;;;35835:15:0;;::::2;2209:6:::0;;35835:15:::2;::::0;:41:::2;;-1:-1:-1::0;2209:6:0;;-1:-1:-1;;;;;35863:13:0;;::::2;2209:6:::0;;35863:13:::2;35835:41;:78;;;-1:-1:-1::0;35897:16:0::2;::::0;-1:-1:-1;;;;;35889:24:0;;::::2;35897:16;::::0;;::::2;;35889:24;35835:78;:113;;;-1:-1:-1::0;35932:16:0::2;::::0;-1:-1:-1;;;;;35926:22:0;;::::2;35932:16;::::0;;::::2;;35926:22;35835:113;:150;;;-1:-1:-1::0;35969:16:0::2;::::0;-1:-1:-1;;;;;35961:24:0;;::::2;35969:16:::0;::::2;35961:24;35835:150;:185;;;-1:-1:-1::0;36004:16:0::2;::::0;-1:-1:-1;;;;;35998:22:0;;::::2;36004:16:::0;::::2;35998:22;35835:185;:204;;;-1:-1:-1::0;36033:6:0::2;::::0;::::2;;35835:204;35831:1846;;;36056:33;36072:4;36078:2;36082:6;36056:15;:33::i;:::-;35831:1846;;;36151:21;::::0;36209:4:::2;::::0;-1:-1:-1;;;36151:21:0;;::::2;;;::::0;36122:26:::2;::::0;-1:-1:-1;;;;;36209:4:0;;::::2;36201:12:::0;;::::2;;:39:::0;::::2;;;-1:-1:-1::0;;;;;;36217:23:0;::::2;28942:42;36217:23;;36201:39;36187:53:::0;-1:-1:-1;36255:12:0::2;-1:-1:-1::0;;;;;36270:25:0;::::2;28942:42;36270:25;::::0;::::2;::::0;:39:::2;;-1:-1:-1::0;36305:4:0::2;::::0;-1:-1:-1;;;;;36299:10:0;;::::2;36305:4:::0;::::2;36299:10;36270:39;36342:4;::::0;36255:54;;-1:-1:-1;;;;;;36342:4:0::2;36328:10;:18;::::0;::::2;::::0;:29:::2;;-1:-1:-1::0;36351:6:0::2;::::0;::::2;;36350:7;36328:29;36324:51;;;36359:16;:14;:16::i;:::-;36394:6;36390:318;;;36436:23;;36425:8;;:34;36421:272;;;36505:28;::::0;36556:8:::2;:10:::0;;-1:-1:-1;;;36505:28:0;;::::2;;;::::0;-1:-1:-1;36556:8:0::2;:10;::::0;::::2;:::i;:::-;;;;;;36421:272;;;36636:21;::::0;-1:-1:-1;;;36636:21:0;::::2;;;::::0;-1:-1:-1;36421:272:0::2;36726:7;36722:272;;;36769:23;;36758:8;;:34;36754:225;;;36838:29;::::0;-1:-1:-1;;;36838:29:0;::::2;;;::::0;-1:-1:-1;36754:225:0::2;;;36937:22;::::0;-1:-1:-1;;;36937:22:0;::::2;;;::::0;-1:-1:-1;36754:225:0::2;37060:18;::::0;37008:17:::2;::::0;37084:5:::2;::::0;37039:39:::2;::::0;-1:-1:-1;;;37060:18:0;::::2;;;37039::::0;:39:::2;:::i;:::-;37029:50;::::0;:6;:50:::2;:::i;:::-;37028:62;;;;:::i;:::-;37139:17;::::0;37008:82;;-1:-1:-1;37105:21:0::2;::::0;37161:5:::2;::::0;37130:26:::2;::::0;-1:-1:-1;;;37139:17:0;::::2;;;37130:6:::0;:26:::2;:::i;:::-;37129:38;;;;:::i;:::-;37105:62:::0;-1:-1:-1;37182:19:0::2;37215:25;37105:62:::0;37215:9;:25:::2;:::i;:::-;37205:36;::::0;:6;:36:::2;:::i;:::-;37285:18;::::0;37182:60;;-1:-1:-1;37307:5:0::2;::::0;37276:27:::2;::::0;-1:-1:-1;;;37285:18:0;::::2;;;37276:6:::0;:27:::2;:::i;:::-;37275:37;;;;:::i;:::-;37257:14;;:55;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;37331:28:0::2;::::0;:32;37327:79:::2;;37365:41;37399:6;37365:33;:41::i;:::-;37425:6;:37;;;;;37461:1;37435:23;;:27;37425:37;37421:88;;;37464:45;37493:2;37497:11;37464:28;:45::i;:::-;37524:26;37530:4;37536:13;37524:5;:26::i;:::-;37565:47;37581:4;37595;37602:9;37565:15;:47::i;:::-;37627:38;37643:4;37649:2;37653:11;37627:15;:38::i;:::-;36107:1570;;;;;;35831:1846;-1:-1:-1::0;;;;;;33367:14:0;;;;;;;:8;:14;;;;;;33384:12;33367:29;;;;33407:12;;;;;;;;;;:27;-1:-1:-1;;;35670:2014:0:o;34539:607::-;29909:6;:13;;-1:-1:-1;;29909:13:0;29918:4;29909:13;;;34642:4:::1;-1:-1:-1::0;10737:18:0;;;;;;;;;;;;34683:16;;34697:1:::1;34683:16:::0;;;;;::::1;::::0;;10737:18;;-1:-1:-1;34683:16:0;;;;::::1;::::0;10737:18;34683:16:::1;::::0;::::1;;::::0;-1:-1:-1;34683:16:0::1;34659:40;;34728:4;34710;34715:1;34710:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34710:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;:23;34754:4:::1;::::0;34744:7;;34754:4;::::1;::::0;34744;;34754;;34744:7;::::1;;;;;:::i;:::-;-1:-1:-1::0;;;;;34744:14:0;;::::1;:7;::::0;;::::1;::::0;;;;;:14;34769:6:::1;::::0;:184:::1;::::0;-1:-1:-1;;;34769:184:0;;:6;::::1;::::0;:57:::1;::::0;:184:::1;::::0;34841:8;;34769:6:::1;::::0;34880:4;;34907::::1;::::0;34927:15:::1;::::0;34769:184:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;34972:16:0::1;::::0;35025:14:::1;::::0;-1:-1:-1;;;;;34972:16:0;;::::1;::::0;-1:-1:-1;34964:77:0::1;::::0;-1:-1:-1;34999:41:0::1;::::0;:25:::1;:41::i;:::-;34964:77;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;35060:16:0::1;::::0;35052:57:::1;::::0;-1:-1:-1;;;;;35060:16:0::1;::::0;;::::1;::::0;;;::::1;::::0;35087:21:::1;35052:57:::0;::::1;;;::::0;::::1;::::0;;;35087:21;35060:16;35052:57;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;35137:1:0::1;35120:14;:18:::0;-1:-1:-1;29945:6:0;:14;;-1:-1:-1;;29945:14:0;;;34539:607::o;3396:191::-;3489:6;;;-1:-1:-1;;;;;3506:17:0;;;-1:-1:-1;;;;;;3506:17:0;;;;;;;3539:40;;3489:6;;;3506:17;3489:6;;3539:40;;3470:16;;3539:40;3459:128;3396:191;:::o;14794:806::-;-1:-1:-1;;;;;14891:18:0;;14883:68;;;;-1:-1:-1;;;14883:68:0;;13708:2:1;14883:68:0;;;13690:21:1;13747:2;13727:18;;;13720:30;13786:34;13766:18;;;13759:62;-1:-1:-1;;;13837:18:1;;;13830:35;13882:19;;14883:68:0;13506:401:1;14883:68:0;-1:-1:-1;;;;;14970:16:0;;14962:64;;;;-1:-1:-1;;;14962:64:0;;14114:2:1;14962:64:0;;;14096:21:1;14153:2;14133:18;;;14126:30;14192:34;14172:18;;;14165:62;-1:-1:-1;;;14243:18:1;;;14236:33;14286:19;;14962:64:0;13912:399:1;14962:64:0;-1:-1:-1;;;;;15112:15:0;;15090:19;15112:15;;;;;;;;;;;15146:21;;;;15138:72;;;;-1:-1:-1;;;15138:72:0;;14518:2:1;15138:72:0;;;14500:21:1;14557:2;14537:18;;;14530:30;14596:34;14576:18;;;14569:62;-1:-1:-1;;;14647:18:1;;;14640:36;14693:19;;15138:72:0;14316:402:1;15138:72:0;-1:-1:-1;;;;;15246:15:0;;;:9;:15;;;;;;;;;;;15264:20;;;15246:38;;15464:13;;;;;;;;;;:23;;;;;;15516:26;;1595:25:1;;;15464:13:0;;15516:26;;1568:18:1;15516:26:0;;;;;;;15555:37;16768:675;35154:508;35265:4;35199:19;10737:18;;;;;;;;;;;35221:51;;34183:348;:::i;35221:51::-;35199:73;;35284:16;35302;35323:12;;;;;;;;;-1:-1:-1;;;;;35323:12:0;-1:-1:-1;;;;;35323:24:0;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;35422:4:0;;35397:12;;:21;;;-1:-1:-1;;;35397:21:0;;;;35283:66;;-1:-1:-1;35283:66:0;;-1:-1:-1;35360:22:0;;-1:-1:-1;;;;;35422:4:0;;;;35397:12;;;;;:19;;:21;;;;;;;;;;;;;;:12;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;35397:29:0;;35393:180;;;-1:-1:-1;;;;;;35458:17:0;;35393:180;;;35520:4;;35495:12;;:21;;;-1:-1:-1;;;35495:21:0;;;;-1:-1:-1;;;;;35520:4:0;;;;35495:12;;;;:19;;:21;;;;;;;;;;;;;;;:12;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;35495:29:0;;35491:82;;;-1:-1:-1;;;;;;35556:17:0;;35491:82;35602:12;;35588:11;:26;35584:70;;;35629:25;:23;:25::i;33668:247::-;2209:6;;-1:-1:-1;;;;;2209:6:0;33755:10;:21;;;:52;;-1:-1:-1;33780:10:0;33802:4;33780:27;;33755:52;33751:156;;;33840:28;;33830:6;:38;;33822:85;;;;-1:-1:-1;;;33822:85:0;;15829:2:1;33822:85:0;;;15811:21:1;15868:2;15848:18;;;15841:30;15907:34;15887:18;;;15880:62;-1:-1:-1;;;15958:18:1;;;15951:32;16000:19;;33822:85:0;15627:398:1;33923:252:0;2209:6;;-1:-1:-1;;;;;2209:6:0;34017:10;:21;;;:44;;-1:-1:-1;;;;;;34042:19:0;;34056:4;34042:19;;34017:44;34013:154;;;34110:23;;34100:6;34084:13;34094:2;-1:-1:-1;;;;;10737:18:0;10710:7;10737:18;;;;;;;;;;;;10636:127;34084:13;:22;;;;:::i;:::-;:49;;34076:91;;;;-1:-1:-1;;;34076:91:0;;16232:2:1;34076:91:0;;;16214:21:1;16271:2;16251:18;;;16244:30;16310:31;16290:18;;;16283:59;16359:18;;34076:91:0;16030:353:1;34076:91:0;33923:252;;:::o;16768:675::-;-1:-1:-1;;;;;16852:21:0;;16844:67;;;;-1:-1:-1;;;16844:67:0;;16590:2:1;16844:67:0;;;16572:21:1;16629:2;16609:18;;;16602:30;16668:34;16648:18;;;16641:62;-1:-1:-1;;;16719:18:1;;;16712:31;16760:19;;16844:67:0;16388:397:1;16844:67:0;-1:-1:-1;;;;;17011:18:0;;16986:22;17011:18;;;;;;;;;;;17048:24;;;;17040:71;;;;-1:-1:-1;;;17040:71:0;;16992:2:1;17040:71:0;;;16974:21:1;17031:2;17011:18;;;17004:30;17070:34;17050:18;;;17043:62;-1:-1:-1;;;17121:18:1;;;17114:32;17163:19;;17040:71:0;16790:398:1;17040:71:0;-1:-1:-1;;;;;17147:18:0;;:9;:18;;;;;;;;;;;17168:23;;;17147:44;;17286:12;:22;;;;;;;17337:37;1595:25:1;;;17147:9:0;;:18;17337:37;;1568:18:1;17337:37:0;1449:177:1;14:597;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:180::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;-1:-1:-1;1415:23:1;;1264:180;-1:-1:-1;1264:180:1:o;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2281:273::-;2337:6;2390:2;2378:9;2369:7;2365:23;2361:32;2358:52;;;2406:1;2403;2396:12;2358:52;2445:9;2432:23;2498:5;2491:13;2484:21;2477:5;2474:32;2464:60;;2520:1;2517;2510:12;2464:60;2543:5;2281:273;-1:-1:-1;;;2281:273:1:o;2983:272::-;3041:6;3094:2;3082:9;3073:7;3069:23;3065:32;3062:52;;;3110:1;3107;3100:12;3062:52;3149:9;3136:23;3199:6;3192:5;3188:18;3181:5;3178:29;3168:57;;3221:1;3218;3211:12;3260:247;3319:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:52;;;3388:1;3385;3378:12;3340:52;3427:9;3414:23;3446:31;3471:5;3446:31;:::i;3720:388::-;3788:6;3796;3849:2;3837:9;3828:7;3824:23;3820:32;3817:52;;;3865:1;3862;3855:12;3817:52;3904:9;3891:23;3923:31;3948:5;3923:31;:::i;:::-;3973:5;-1:-1:-1;4030:2:1;4015:18;;4002:32;4043:33;4002:32;4043:33;:::i;:::-;4095:7;4085:17;;;3720:388;;;;;:::o;4348:380::-;4427:1;4423:12;;;;4470;;;4491:61;;4545:4;4537:6;4533:17;4523:27;;4491:61;4598:2;4590:6;4587:14;4567:18;4564:38;4561:161;;;4644:10;4639:3;4635:20;4632:1;4625:31;4679:4;4676:1;4669:15;4707:4;4704:1;4697:15;4733:127;4794:10;4789:3;4785:20;4782:1;4775:31;4825:4;4822:1;4815:15;4849:4;4846:1;4839:15;4865:422;4954:1;4997:5;4954:1;5011:270;5032:7;5022:8;5019:21;5011:270;;;5091:4;5087:1;5083:6;5079:17;5073:4;5070:27;5067:53;;;5100:18;;:::i;:::-;5150:7;5140:8;5136:22;5133:55;;;5170:16;;;;5133:55;5249:22;;;;5209:15;;;;5011:270;;;5015:3;4865:422;;;;;:::o;5292:806::-;5341:5;5371:8;5361:80;;-1:-1:-1;5412:1:1;5426:5;;5361:80;5460:4;5450:76;;-1:-1:-1;5497:1:1;5511:5;;5450:76;5542:4;5560:1;5555:59;;;;5628:1;5623:130;;;;5535:218;;5555:59;5585:1;5576:10;;5599:5;;;5623:130;5660:3;5650:8;5647:17;5644:43;;;5667:18;;:::i;:::-;-1:-1:-1;;5723:1:1;5709:16;;5738:5;;5535:218;;5837:2;5827:8;5824:16;5818:3;5812:4;5809:13;5805:36;5799:2;5789:8;5786:16;5781:2;5775:4;5772:12;5768:35;5765:77;5762:159;;;-1:-1:-1;5874:19:1;;;5906:5;;5762:159;5953:34;5978:8;5972:4;5953:34;:::i;:::-;6023:6;6019:1;6015:6;6011:19;6002:7;5999:32;5996:58;;;6034:18;;:::i;:::-;6072:20;;5292:806;-1:-1:-1;;;5292:806:1:o;6103:140::-;6161:5;6190:47;6231:4;6221:8;6217:19;6211:4;6190:47;:::i;6248:168::-;6288:7;6354:1;6350;6346:6;6342:14;6339:1;6336:21;6331:1;6324:9;6317:17;6313:45;6310:71;;;6361:18;;:::i;:::-;-1:-1:-1;6401:9:1;;6248:168::o;6421:128::-;6461:3;6492:1;6488:6;6485:1;6482:13;6479:39;;;6498:18;;:::i;:::-;-1:-1:-1;6534:9:1;;6421:128::o;6554:224::-;6593:3;6621:6;6654:2;6651:1;6647:10;6684:2;6681:1;6677:10;6715:3;6711:2;6707:12;6702:3;6699:21;6696:47;;;6723:18;;:::i;:::-;6759:13;;6554:224;-1:-1:-1;;;;6554:224:1:o;6783:346::-;6985:2;6967:21;;;7024:2;7004:18;;;6997:30;-1:-1:-1;;;7058:2:1;7043:18;;7036:52;7120:2;7105:18;;6783:346::o;7134:127::-;7195:10;7190:3;7186:20;7183:1;7176:31;7226:4;7223:1;7216:15;7250:4;7247:1;7240:15;7266:127;7327:10;7322:3;7318:20;7315:1;7308:31;7358:4;7355:1;7348:15;7382:4;7379:1;7372:15;7398:461;7451:3;7489:5;7483:12;7516:6;7511:3;7504:19;7542:4;7571:2;7566:3;7562:12;7555:19;;7608:2;7601:5;7597:14;7629:1;7639:195;7653:6;7650:1;7647:13;7639:195;;;7718:13;;-1:-1:-1;;;;;7714:39:1;7702:52;;7774:12;;;;7809:15;;;;7750:1;7668:9;7639:195;;;-1:-1:-1;7850:3:1;;7398:461;-1:-1:-1;;;;;7398:461:1:o;7864:332::-;8071:6;8060:9;8053:25;8114:2;8109;8098:9;8094:18;8087:30;8034:4;8134:56;8186:2;8175:9;8171:18;8163:6;8134:56;:::i;:::-;8126:64;7864:332;-1:-1:-1;;;;7864:332:1:o;8201:1105::-;8296:6;8327:2;8370;8358:9;8349:7;8345:23;8341:32;8338:52;;;8386:1;8383;8376:12;8338:52;8419:9;8413:16;8448:18;8489:2;8481:6;8478:14;8475:34;;;8505:1;8502;8495:12;8475:34;8543:6;8532:9;8528:22;8518:32;;8588:7;8581:4;8577:2;8573:13;8569:27;8559:55;;8610:1;8607;8600:12;8559:55;8639:2;8633:9;8661:2;8657;8654:10;8651:36;;;8667:18;;:::i;:::-;8713:2;8710:1;8706:10;8745:2;8739:9;8808:2;8804:7;8799:2;8795;8791:11;8787:25;8779:6;8775:38;8863:6;8851:10;8848:22;8843:2;8831:10;8828:18;8825:46;8822:72;;;8874:18;;:::i;:::-;8910:2;8903:22;8960:18;;;8994:15;;;;-1:-1:-1;9036:11:1;;;9032:20;;;9064:19;;;9061:39;;;9096:1;9093;9086:12;9061:39;9120:11;;;;9140:135;9156:6;9151:3;9148:15;9140:135;;;9222:10;;9210:23;;9173:12;;;;9253;;;;9140:135;;;9294:6;8201:1105;-1:-1:-1;;;;;;;;8201:1105:1:o;12427:135::-;12466:3;-1:-1:-1;;12487:17:1;;12484:43;;;12507:18;;:::i;:::-;-1:-1:-1;12554:1:1;12543:13;;12427:135::o;12567:217::-;12607:1;12633;12623:132;;12677:10;12672:3;12668:20;12665:1;12658:31;12712:4;12709:1;12702:15;12740:4;12737:1;12730:15;12623:132;-1:-1:-1;12769:9:1;;12567:217::o;12789:125::-;12829:4;12857:1;12854;12851:8;12848:34;;;12862:18;;:::i;:::-;-1:-1:-1;12899:9:1;;12789:125::o;12919:582::-;13218:6;13207:9;13200:25;13261:6;13256:2;13245:9;13241:18;13234:34;13304:3;13299:2;13288:9;13284:18;13277:31;13181:4;13325:57;13377:3;13366:9;13362:19;13354:6;13325:57;:::i;:::-;-1:-1:-1;;;;;13418:32:1;;;;13413:2;13398:18;;13391:60;-1:-1:-1;13482:3:1;13467:19;13460:35;13317:65;12919:582;-1:-1:-1;;;12919:582:1:o;14723:188::-;14802:13;;-1:-1:-1;;;;;14844:42:1;;14834:53;;14824:81;;14901:1;14898;14891:12;14824:81;14723:188;;;:::o;14916:450::-;15003:6;15011;15019;15072:2;15060:9;15051:7;15047:23;15043:32;15040:52;;;15088:1;15085;15078:12;15040:52;15111:40;15141:9;15111:40;:::i;:::-;15101:50;;15170:49;15215:2;15204:9;15200:18;15170:49;:::i;:::-;15160:59;;15262:2;15251:9;15247:18;15241:25;15306:10;15299:5;15295:22;15288:5;15285:33;15275:61;;15332:1;15329;15322:12;15275:61;15355:5;15345:15;;;14916:450;;;;;:::o;15371:251::-;15441:6;15494:2;15482:9;15473:7;15469:23;15465:32;15462:52;;;15510:1;15507;15500:12;15462:52;15542:9;15536:16;15561:31;15586:5;15561:31;:::i
Swarm Source
ipfs://0fcd7284fe178978d7b862ccf7899593721c012e44504b96d93c977b20470b38
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.