Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
42,000,000,000 CATARIUM
Holders
46
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
756,000,000 CATARIUMValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CATARIUM
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-16 */ // Caterium Chat Portal : https://t.me/CateriumErcPortal // SPDX-License-Identifier: MIT pragma solidity 0.8.20; /** * @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; } } /** * @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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor() { _name = "Catarium"; _symbol = "CATARIUM"; } /** * @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 value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `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; _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; } _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 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 {} } /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract CATARIUM is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public revShareWallet; address public teamWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; uint256 public buyTotalFees; uint256 public buyRevShareFee; uint256 public buyLiquidityFee; uint256 public buyTeamFee; uint256 public sellTotalFees; uint256 public sellRevShareFee; uint256 public sellLiquidityFee; uint256 public sellTeamFee; uint256 public tokensForRevShare; uint256 public tokensForLiquidity; uint256 public tokensForTeam; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event revShareWalletUpdated( address indexed newWallet, address indexed oldWallet ); event teamWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20() { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyRevShareFee = 8; uint256 _buyLiquidityFee = 0; uint256 _buyTeamFee = 2; uint256 _sellRevShareFee = 8; uint256 _sellLiquidityFee = 0; uint256 _sellTeamFee = 2; uint256 totalSupply = 42_000_000_000 * 1e18; maxTransactionAmount = totalSupply / 50; // 1% maxWallet = totalSupply / 50; // 2% swapTokensAtAmount = totalSupply / 100; // 1% buyRevShareFee = _buyRevShareFee; buyLiquidityFee = _buyLiquidityFee; buyTeamFee = _buyTeamFee; buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee; sellRevShareFee = _sellRevShareFee; sellLiquidityFee = _sellLiquidityFee; sellTeamFee = _sellTeamFee; sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee; revShareWallet = address(0x69d11379fE03c044c430cB4cffaFCEe6D83d3563); teamWallet = address(0x9043cbDA38DA647e5E602a34482dA08FbCaEa261); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 10) / 1000) / 1e18, "Cannot set maxWallet lower than 1.0%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _revShareFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { buyRevShareFee = _revShareFee; buyLiquidityFee = _liquidityFee; buyTeamFee = _teamFee; buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee; require(buyTotalFees <= 5, "Buy fees must be <= 5%"); } function updateSellFees( uint256 _revShareFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { sellRevShareFee = _revShareFee; sellLiquidityFee = _liquidityFee; sellTeamFee = _teamFee; sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee; require(sellTotalFees <= 5, "Sell fees must be <= 5%."); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForTeam += (fees * sellTeamFee) / sellTotalFees; tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForTeam += (fees * buyTeamFee) / buyTotalFees; tokensForRevShare += (fees * buyRevShareFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForRevShare + tokensForTeam; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForRevShare = ethBalance.mul(tokensForRevShare).div(totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForLiquidity = ethBalance - ethForRevShare - ethForTeam; tokensForLiquidity = 0; tokensForRevShare = 0; tokensForTeam = 0; (success, ) = address(teamWallet).call{value: ethForTeam}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(revShareWallet).call{value: address(this).balance}(""); } function withdrawStuckUnibot() external onlyOwner { uint256 balance = IERC20(address(this)).balanceOf(address(this)); IERC20(address(this)).transfer(msg.sender, balance); payable(msg.sender).transfer(address(this).balance); } function withdrawStuckToken(address _token, address _to) external onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawStuckEth(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{ value: address(this).balance } (""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"revShareWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","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":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckUnibot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600b805462ffffff191660011790553480156200001f575f80fd5b50604080518082019091526008815267436174617269756d60c01b60208201526003906200004e9082620006e5565b50604080518082019091526008815267434154415249554d60c01b60208201526004906200007d9082620006e5565b5062000089336200039b565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000ab816001620003ec565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015620000f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200011a9190620007ad565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000166573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200018c9190620007ad565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001d7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001fd9190620007ad565b6001600160a01b031660a081905262000218906001620003ec565b60a0516200022890600162000464565b60085f60028282826b87b595f2383509fe100000006200024a603282620007dc565b6008556200025a603282620007dc565b600a556200026a606482620007dc565b600955600d879055600e869055600f85905584620002898789620007fc565b620002959190620007fc565b600c5560118490556012839055601382905581620002b48486620007fc565b620002c09190620007fc565b601055600680546001600160a01b03199081167369d11379fe03c044c430cb4cffafcee6d83d35631790915560078054909116739043cbda38da647e5e602a34482da08fbcaea2611790556200032a620003226005546001600160a01b031690565b6001620004b7565b62000337306001620004b7565b6200034661dead6001620004b7565b620003656200035d6005546001600160a01b031690565b6001620003ec565b62000372306001620003ec565b6200038161dead6001620003ec565b6200038d33826200055f565b505050505050505062000822565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b031633146200043a5760405162461bcd60e51b815260206004820181905260248201525f805160206200323583398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601860205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005015760405162461bcd60e51b815260206004820181905260248201525f8051602062003235833981519152604482015260640162000431565b6001600160a01b0382165f81815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005b75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000431565b8060025f828254620005ca9190620007fc565b90915550506001600160a01b0382165f9081526020819052604081208054839290620005f8908490620007fc565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200066f57607f821691505b6020821081036200068e57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000641575f81815260208120601f850160051c81016020861015620006bc5750805b601f850160051c820191505b81811015620006dd57828155600101620006c8565b505050505050565b81516001600160401b0381111562000701576200070162000646565b62000719816200071284546200065a565b8462000694565b602080601f8311600181146200074f575f8415620007375750858301515b5f19600386901b1c1916600185901b178555620006dd565b5f85815260208120601f198616915b828110156200077f578886015182559484019460019091019084016200075e565b50858210156200079d57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f60208284031215620007be575f80fd5b81516001600160a01b0381168114620007d5575f80fd5b9392505050565b5f82620007f757634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156200081c57634e487b7160e01b5f52601160045260245ffd5b92915050565b60805160a0516129c76200086e5f395f81816105030152610fb301525f81816103d601528181612320015281816123d7015281816124130152818161248701526124ae01526129c75ff3fe608060405260043610610310575f3560e01c80637ca8448a116101a3578063c0246668116100f2578063dd62ed3e11610092578063f2fde38b1161006d578063f2fde38b1461091e578063f63743421461093d578063f8b45b0514610952578063fde83a3414610967575f80fd5b8063dd62ed3e146108b0578063e2f45605146108f4578063f11a24d314610909575f80fd5b8063c8c8ebe4116100cd578063c8c8ebe414610852578063d257b34f14610867578063d729715f14610886578063d85ba0631461089b575f80fd5b8063c0246668146107f5578063c17b5b8c14610814578063c18bc19514610833575f80fd5b80639a7a23d61161015d578063a9059cbb11610138578063a9059cbb1461076b578063b62496f51461078a578063bbc0c742146107b8578063bc205ad3146107d6575f80fd5b80639a7a23d6146107185780639c2e4ac614610737578063a457c2d71461074c575f80fd5b80637ca8448a146106765780638095d564146106955780638a8c523c146106b45780638da5cb5b146106c8578063924de9b7146106e557806395d89b4114610704575f80fd5b8063395093511161025f5780636a486a8e11610219578063715018a6116101f4578063715018a614610610578063751039fc146106245780637571336a14610638578063782c4e9914610657575f80fd5b80636a486a8e146105a85780636ddd1713146105bd57806370a08231146105dc575f80fd5b806339509351146104d357806349bd5a5e146104f25780634a62bb65146105255780634fbee1931461053e57806359927044146105755780635ea92ddd14610594575f80fd5b806319eab042116102ca57806323b872dd116102a557806323b872dd1461046f57806324b9f3c11461048e57806327c8f835146104a3578063313ce567146104b8575f80fd5b806319eab042146104245780631a8145bb14610439578063203e727e1461044e575f80fd5b806306fdde031461031b578063095ea7b31461034557806310d5de5314610374578063156c2f35146103a25780631694505e146103c557806318160ddd14610410575f80fd5b3661031757005b5f80fd5b348015610326575f80fd5b5061032f61097c565b60405161033c9190612584565b60405180910390f35b348015610350575f80fd5b5061036461035f3660046125e3565b610a0c565b604051901515815260200161033c565b34801561037f575f80fd5b5061036461038e36600461260d565b60186020525f908152604090205460ff1681565b3480156103ad575f80fd5b506103b7600d5481565b60405190815260200161033c565b3480156103d0575f80fd5b506103f87f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161033c565b34801561041b575f80fd5b506002546103b7565b34801561042f575f80fd5b506103b760115481565b348015610444575f80fd5b506103b760155481565b348015610459575f80fd5b5061046d610468366004612628565b610a22565b005b34801561047a575f80fd5b5061036461048936600461263f565b610b08565b348015610499575f80fd5b506103b760145481565b3480156104ae575f80fd5b506103f861dead81565b3480156104c3575f80fd5b506040516012815260200161033c565b3480156104de575f80fd5b506103646104ed3660046125e3565b610bb0565b3480156104fd575f80fd5b506103f87f000000000000000000000000000000000000000000000000000000000000000081565b348015610530575f80fd5b50600b546103649060ff1681565b348015610549575f80fd5b5061036461055836600461260d565b6001600160a01b03165f9081526017602052604090205460ff1690565b348015610580575f80fd5b506007546103f8906001600160a01b031681565b34801561059f575f80fd5b5061046d610beb565b3480156105b3575f80fd5b506103b760105481565b3480156105c8575f80fd5b50600b546103649062010000900460ff1681565b3480156105e7575f80fd5b506103b76105f636600461260d565b6001600160a01b03165f9081526020819052604090205490565b34801561061b575f80fd5b5061046d610d0a565b34801561062f575f80fd5b50610364610d3f565b348015610643575f80fd5b5061046d61065236600461268a565b610d7b565b348015610662575f80fd5b506006546103f8906001600160a01b031681565b348015610681575f80fd5b5061046d61069036600461260d565b610dcf565b3480156106a0575f80fd5b5061046d6106af3660046126c1565b610e54565b3480156106bf575f80fd5b5061046d610ef5565b3480156106d3575f80fd5b506005546001600160a01b03166103f8565b3480156106f0575f80fd5b5061046d6106ff3660046126ea565b610f32565b34801561070f575f80fd5b5061032f610f78565b348015610723575f80fd5b5061046d61073236600461268a565b610f87565b348015610742575f80fd5b506103b7600f5481565b348015610757575f80fd5b506103646107663660046125e3565b611062565b348015610776575f80fd5b506103646107853660046125e3565b6110fa565b348015610795575f80fd5b506103646107a436600461260d565b60196020525f908152604090205460ff1681565b3480156107c3575f80fd5b50600b5461036490610100900460ff1681565b3480156107e1575f80fd5b5061046d6107f0366004612705565b611106565b348015610800575f80fd5b5061046d61080f36600461268a565b611268565b34801561081f575f80fd5b5061046d61082e3660046126c1565b6112f0565b34801561083e575f80fd5b5061046d61084d366004612628565b611393565b34801561085d575f80fd5b506103b760085481565b348015610872575f80fd5b50610364610881366004612628565b611464565b348015610891575f80fd5b506103b760135481565b3480156108a6575f80fd5b506103b7600c5481565b3480156108bb575f80fd5b506103b76108ca366004612705565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156108ff575f80fd5b506103b760095481565b348015610914575f80fd5b506103b7600e5481565b348015610929575f80fd5b5061046d61093836600461260d565b6115b5565b348015610948575f80fd5b506103b760125481565b34801561095d575f80fd5b506103b7600a5481565b348015610972575f80fd5b506103b760165481565b60606003805461098b90612731565b80601f01602080910402602001604051908101604052809291908181526020018280546109b790612731565b8015610a025780601f106109d957610100808354040283529160200191610a02565b820191905f5260205f20905b8154815290600101906020018083116109e557829003601f168201915b5050505050905090565b5f610a18338484611650565b5060015b92915050565b6005546001600160a01b03163314610a555760405162461bcd60e51b8152600401610a4c90612769565b60405180910390fd5b670de0b6b3a76400006103e8610a6a60025490565b610a759060056127b2565b610a7f91906127c9565b610a8991906127c9565b811015610af05760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610a4c565b610b0281670de0b6b3a76400006127b2565b60085550565b5f610b14848484611773565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610b985760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a4c565b610ba58533858403611650565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610a18918590610be69086906127e8565b611650565b6005546001600160a01b03163314610c155760405162461bcd60e51b8152600401610a4c90612769565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610c50573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c7491906127fb565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610cb8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cdc9190612812565b5060405133904780156108fc02915f818181858888f19350505050158015610d06573d5f803e3d5ffd5b5050565b6005546001600160a01b03163314610d345760405162461bcd60e51b8152600401610a4c90612769565b610d3d5f611e61565b565b6005545f906001600160a01b03163314610d6b5760405162461bcd60e51b8152600401610a4c90612769565b50600b805460ff19169055600190565b6005546001600160a01b03163314610da55760405162461bcd60e51b8152600401610a4c90612769565b6001600160a01b03919091165f908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610df95760405162461bcd60e51b8152600401610a4c90612769565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610e42576040519150601f19603f3d011682016040523d82523d5f602084013e610e47565b606091505b5050905080610d06575f80fd5b6005546001600160a01b03163314610e7e5760405162461bcd60e51b8152600401610a4c90612769565b600d839055600e829055600f81905580610e9883856127e8565b610ea291906127e8565b600c81905560051015610ef05760405162461bcd60e51b81526020600482015260166024820152754275792066656573206d757374206265203c3d20352560501b6044820152606401610a4c565b505050565b6005546001600160a01b03163314610f1f5760405162461bcd60e51b8152600401610a4c90612769565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610f5c5760405162461bcd60e51b8152600401610a4c90612769565b600b8054911515620100000262ff000019909216919091179055565b60606004805461098b90612731565b6005546001600160a01b03163314610fb15760405162461bcd60e51b8152600401610a4c90612769565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036110585760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a4c565b610d068282611eb2565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156110e35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a4c565b6110f03385858403611650565b5060019392505050565b5f610a18338484611773565b6005546001600160a01b031633146111305760405162461bcd60e51b8152600401610a4c90612769565b6001600160a01b0382166111865760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a4c565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156111ca573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111ee91906127fb565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af115801561123e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112629190612812565b50505050565b6005546001600160a01b031633146112925760405162461bcd60e51b8152600401610a4c90612769565b6001600160a01b0382165f81815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461131a5760405162461bcd60e51b8152600401610a4c90612769565b6011839055601282905560138190558061133483856127e8565b61133e91906127e8565b601081905560051015610ef05760405162461bcd60e51b815260206004820152601860248201527f53656c6c2066656573206d757374206265203c3d2035252e00000000000000006044820152606401610a4c565b6005546001600160a01b031633146113bd5760405162461bcd60e51b8152600401610a4c90612769565b670de0b6b3a76400006103e86113d260025490565b6113dd90600a6127b2565b6113e791906127c9565b6113f191906127c9565b81101561144c5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610a4c565b61145e81670de0b6b3a76400006127b2565b600a5550565b6005545f906001600160a01b031633146114905760405162461bcd60e51b8152600401610a4c90612769565b620186a061149d60025490565b6114a89060016127b2565b6114b291906127c9565b82101561151f5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a4c565b6103e861152b60025490565b6115369060056127b2565b61154091906127c9565b8211156115ac5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a4c565b50600955600190565b6005546001600160a01b031633146115df5760405162461bcd60e51b8152600401610a4c90612769565b6001600160a01b0381166116445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a4c565b61164d81611e61565b50565b6001600160a01b0383166116b25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a4c565b6001600160a01b0382166117135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a4c565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166117995760405162461bcd60e51b8152600401610a4c9061282d565b6001600160a01b0382166117bf5760405162461bcd60e51b8152600401610a4c90612872565b805f036117d157610ef083835f611f05565b600b5460ff1615611b3e576005546001600160a01b0384811691161480159061180857506005546001600160a01b03838116911614155b801561181c57506001600160a01b03821615155b801561183357506001600160a01b03821661dead14155b80156118495750600554600160a01b900460ff16155b15611b3e57600b54610100900460ff166118df576001600160a01b0383165f9081526017602052604090205460ff168061189a57506001600160a01b0382165f9081526017602052604090205460ff165b6118df5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a4c565b6001600160a01b0383165f9081526019602052604090205460ff16801561191e57506001600160a01b0382165f9081526018602052604090205460ff16155b15611a01576008548111156119935760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a4c565b600a546001600160a01b0383165f908152602081905260409020546119b890836127e8565b11156119fc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a4c565b611b3e565b6001600160a01b0382165f9081526019602052604090205460ff168015611a4057506001600160a01b0383165f9081526018602052604090205460ff16155b15611ab6576008548111156119fc5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610a4c565b6001600160a01b0382165f9081526018602052604090205460ff16611b3e57600a546001600160a01b0383165f90815260208190526040902054611afa90836127e8565b1115611b3e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a4c565b305f9081526020819052604090205460095481108015908190611b695750600b5462010000900460ff165b8015611b7f5750600554600160a01b900460ff16155b8015611ba357506001600160a01b0385165f9081526019602052604090205460ff16155b8015611bc757506001600160a01b0385165f9081526017602052604090205460ff16155b8015611beb57506001600160a01b0384165f9081526017602052604090205460ff16155b15611c19576005805460ff60a01b1916600160a01b179055611c0b612057565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526017602052604090205460ff600160a01b909204821615911680611c6557506001600160a01b0385165f9081526017602052604090205460ff165b15611c6d57505f5b5f8115611e4d576001600160a01b0386165f9081526019602052604090205460ff168015611c9c57505f601054115b15611d5757611cc16064611cbb601054886122a390919063ffffffff16565b906122b5565b905060105460125482611cd491906127b2565b611cde91906127c9565b60155f828254611cee91906127e8565b9091555050601054601354611d0390836127b2565b611d0d91906127c9565b60165f828254611d1d91906127e8565b9091555050601054601154611d3290836127b2565b611d3c91906127c9565b60145f828254611d4c91906127e8565b90915550611e2f9050565b6001600160a01b0387165f9081526019602052604090205460ff168015611d7f57505f600c54115b15611e2f57611d9e6064611cbb600c54886122a390919063ffffffff16565b9050600c54600e5482611db191906127b2565b611dbb91906127c9565b60155f828254611dcb91906127e8565b9091555050600c54600f54611de090836127b2565b611dea91906127c9565b60165f828254611dfa91906127e8565b9091555050600c54600d54611e0f90836127b2565b611e1991906127c9565b60145f828254611e2991906127e8565b90915550505b8015611e4057611e40873083611f05565b611e4a81866128b5565b94505b611e58878787611f05565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f2b5760405162461bcd60e51b8152600401610a4c9061282d565b6001600160a01b038216611f515760405162461bcd60e51b8152600401610a4c90612872565b6001600160a01b0383165f9081526020819052604090205481811015611fc85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a4c565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611ffe9084906127e8565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161204a91815260200190565b60405180910390a3611262565b305f9081526020819052604081205490505f60165460145460155461207c91906127e8565b61208691906127e8565b90505f821580612094575081155b1561209e57505050565b6009546120ac9060146127b2565b8311156120c4576009546120c19060146127b2565b92505b5f600283601554866120d691906127b2565b6120e091906127c9565b6120ea91906127c9565b90505f6120f785836122c0565b905047612103826122cb565b5f61210e47836122c0565b90505f61213b600260155461212391906127c9565b61212d90896128b5565b601454611cbb9085906122a3565b90505f612168600260155461215091906127c9565b61215a908a6128b5565b601654611cbb9086906122a3565b90505f8161217684866128b5565b61218091906128b5565b5f6015819055601481905560168190556007546040519293506001600160a01b031691849181818185875af1925050503d805f81146121da576040519150601f19603f3d011682016040523d82523d5f602084013e6121df565b606091505b509098505086158015906121f257505f81115b15612245576122018782612481565b601554604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b039091169047905f81818185875af1925050503d805f811461228f576040519150601f19603f3d011682016040523d82523d5f602084013e612294565b606091505b50505050505050505050505050565b5f6122ae82846127b2565b9392505050565b5f6122ae82846127c9565b5f6122ae82846128b5565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106122fe576122fe6128c8565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561237a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061239e91906128dc565b816001815181106123b1576123b16128c8565b60200260200101906001600160a01b031690816001600160a01b0316815250506123fc307f000000000000000000000000000000000000000000000000000000000000000084611650565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906124509085905f908690309042906004016128f7565b5f604051808303815f87803b158015612467575f80fd5b505af1158015612479573d5f803e3d5ffd5b505050505050565b6124ac307f000000000000000000000000000000000000000000000000000000000000000084611650565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f806124f26005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612558573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061257d9190612966565b5050505050565b5f6020808352835180828501525f5b818110156125af57858101830151858201604001528201612593565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461164d575f80fd5b5f80604083850312156125f4575f80fd5b82356125ff816125cf565b946020939093013593505050565b5f6020828403121561261d575f80fd5b81356122ae816125cf565b5f60208284031215612638575f80fd5b5035919050565b5f805f60608486031215612651575f80fd5b833561265c816125cf565b9250602084013561266c816125cf565b929592945050506040919091013590565b801515811461164d575f80fd5b5f806040838503121561269b575f80fd5b82356126a6816125cf565b915060208301356126b68161267d565b809150509250929050565b5f805f606084860312156126d3575f80fd5b505081359360208301359350604090920135919050565b5f602082840312156126fa575f80fd5b81356122ae8161267d565b5f8060408385031215612716575f80fd5b8235612721816125cf565b915060208301356126b6816125cf565b600181811c9082168061274557607f821691505b60208210810361276357634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610a1c57610a1c61279e565b5f826127e357634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610a1c57610a1c61279e565b5f6020828403121561280b575f80fd5b5051919050565b5f60208284031215612822575f80fd5b81516122ae8161267d565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610a1c57610a1c61279e565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156128ec575f80fd5b81516122ae816125cf565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156129455784516001600160a01b031683529383019391830191600101612920565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612978575f80fd5b835192506020840151915060408401519050925092509256fea26469706673582212200331e70aa9558776a5cf1c5aeb32bad5102c05211fdef40709171a21f4129c7664736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x608060405260043610610310575f3560e01c80637ca8448a116101a3578063c0246668116100f2578063dd62ed3e11610092578063f2fde38b1161006d578063f2fde38b1461091e578063f63743421461093d578063f8b45b0514610952578063fde83a3414610967575f80fd5b8063dd62ed3e146108b0578063e2f45605146108f4578063f11a24d314610909575f80fd5b8063c8c8ebe4116100cd578063c8c8ebe414610852578063d257b34f14610867578063d729715f14610886578063d85ba0631461089b575f80fd5b8063c0246668146107f5578063c17b5b8c14610814578063c18bc19514610833575f80fd5b80639a7a23d61161015d578063a9059cbb11610138578063a9059cbb1461076b578063b62496f51461078a578063bbc0c742146107b8578063bc205ad3146107d6575f80fd5b80639a7a23d6146107185780639c2e4ac614610737578063a457c2d71461074c575f80fd5b80637ca8448a146106765780638095d564146106955780638a8c523c146106b45780638da5cb5b146106c8578063924de9b7146106e557806395d89b4114610704575f80fd5b8063395093511161025f5780636a486a8e11610219578063715018a6116101f4578063715018a614610610578063751039fc146106245780637571336a14610638578063782c4e9914610657575f80fd5b80636a486a8e146105a85780636ddd1713146105bd57806370a08231146105dc575f80fd5b806339509351146104d357806349bd5a5e146104f25780634a62bb65146105255780634fbee1931461053e57806359927044146105755780635ea92ddd14610594575f80fd5b806319eab042116102ca57806323b872dd116102a557806323b872dd1461046f57806324b9f3c11461048e57806327c8f835146104a3578063313ce567146104b8575f80fd5b806319eab042146104245780631a8145bb14610439578063203e727e1461044e575f80fd5b806306fdde031461031b578063095ea7b31461034557806310d5de5314610374578063156c2f35146103a25780631694505e146103c557806318160ddd14610410575f80fd5b3661031757005b5f80fd5b348015610326575f80fd5b5061032f61097c565b60405161033c9190612584565b60405180910390f35b348015610350575f80fd5b5061036461035f3660046125e3565b610a0c565b604051901515815260200161033c565b34801561037f575f80fd5b5061036461038e36600461260d565b60186020525f908152604090205460ff1681565b3480156103ad575f80fd5b506103b7600d5481565b60405190815260200161033c565b3480156103d0575f80fd5b506103f87f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161033c565b34801561041b575f80fd5b506002546103b7565b34801561042f575f80fd5b506103b760115481565b348015610444575f80fd5b506103b760155481565b348015610459575f80fd5b5061046d610468366004612628565b610a22565b005b34801561047a575f80fd5b5061036461048936600461263f565b610b08565b348015610499575f80fd5b506103b760145481565b3480156104ae575f80fd5b506103f861dead81565b3480156104c3575f80fd5b506040516012815260200161033c565b3480156104de575f80fd5b506103646104ed3660046125e3565b610bb0565b3480156104fd575f80fd5b506103f87f0000000000000000000000005f4d0632413add1a2008eac470bc0d3bc3805e2a81565b348015610530575f80fd5b50600b546103649060ff1681565b348015610549575f80fd5b5061036461055836600461260d565b6001600160a01b03165f9081526017602052604090205460ff1690565b348015610580575f80fd5b506007546103f8906001600160a01b031681565b34801561059f575f80fd5b5061046d610beb565b3480156105b3575f80fd5b506103b760105481565b3480156105c8575f80fd5b50600b546103649062010000900460ff1681565b3480156105e7575f80fd5b506103b76105f636600461260d565b6001600160a01b03165f9081526020819052604090205490565b34801561061b575f80fd5b5061046d610d0a565b34801561062f575f80fd5b50610364610d3f565b348015610643575f80fd5b5061046d61065236600461268a565b610d7b565b348015610662575f80fd5b506006546103f8906001600160a01b031681565b348015610681575f80fd5b5061046d61069036600461260d565b610dcf565b3480156106a0575f80fd5b5061046d6106af3660046126c1565b610e54565b3480156106bf575f80fd5b5061046d610ef5565b3480156106d3575f80fd5b506005546001600160a01b03166103f8565b3480156106f0575f80fd5b5061046d6106ff3660046126ea565b610f32565b34801561070f575f80fd5b5061032f610f78565b348015610723575f80fd5b5061046d61073236600461268a565b610f87565b348015610742575f80fd5b506103b7600f5481565b348015610757575f80fd5b506103646107663660046125e3565b611062565b348015610776575f80fd5b506103646107853660046125e3565b6110fa565b348015610795575f80fd5b506103646107a436600461260d565b60196020525f908152604090205460ff1681565b3480156107c3575f80fd5b50600b5461036490610100900460ff1681565b3480156107e1575f80fd5b5061046d6107f0366004612705565b611106565b348015610800575f80fd5b5061046d61080f36600461268a565b611268565b34801561081f575f80fd5b5061046d61082e3660046126c1565b6112f0565b34801561083e575f80fd5b5061046d61084d366004612628565b611393565b34801561085d575f80fd5b506103b760085481565b348015610872575f80fd5b50610364610881366004612628565b611464565b348015610891575f80fd5b506103b760135481565b3480156108a6575f80fd5b506103b7600c5481565b3480156108bb575f80fd5b506103b76108ca366004612705565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156108ff575f80fd5b506103b760095481565b348015610914575f80fd5b506103b7600e5481565b348015610929575f80fd5b5061046d61093836600461260d565b6115b5565b348015610948575f80fd5b506103b760125481565b34801561095d575f80fd5b506103b7600a5481565b348015610972575f80fd5b506103b760165481565b60606003805461098b90612731565b80601f01602080910402602001604051908101604052809291908181526020018280546109b790612731565b8015610a025780601f106109d957610100808354040283529160200191610a02565b820191905f5260205f20905b8154815290600101906020018083116109e557829003601f168201915b5050505050905090565b5f610a18338484611650565b5060015b92915050565b6005546001600160a01b03163314610a555760405162461bcd60e51b8152600401610a4c90612769565b60405180910390fd5b670de0b6b3a76400006103e8610a6a60025490565b610a759060056127b2565b610a7f91906127c9565b610a8991906127c9565b811015610af05760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610a4c565b610b0281670de0b6b3a76400006127b2565b60085550565b5f610b14848484611773565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610b985760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a4c565b610ba58533858403611650565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610a18918590610be69086906127e8565b611650565b6005546001600160a01b03163314610c155760405162461bcd60e51b8152600401610a4c90612769565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610c50573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c7491906127fb565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610cb8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cdc9190612812565b5060405133904780156108fc02915f818181858888f19350505050158015610d06573d5f803e3d5ffd5b5050565b6005546001600160a01b03163314610d345760405162461bcd60e51b8152600401610a4c90612769565b610d3d5f611e61565b565b6005545f906001600160a01b03163314610d6b5760405162461bcd60e51b8152600401610a4c90612769565b50600b805460ff19169055600190565b6005546001600160a01b03163314610da55760405162461bcd60e51b8152600401610a4c90612769565b6001600160a01b03919091165f908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610df95760405162461bcd60e51b8152600401610a4c90612769565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610e42576040519150601f19603f3d011682016040523d82523d5f602084013e610e47565b606091505b5050905080610d06575f80fd5b6005546001600160a01b03163314610e7e5760405162461bcd60e51b8152600401610a4c90612769565b600d839055600e829055600f81905580610e9883856127e8565b610ea291906127e8565b600c81905560051015610ef05760405162461bcd60e51b81526020600482015260166024820152754275792066656573206d757374206265203c3d20352560501b6044820152606401610a4c565b505050565b6005546001600160a01b03163314610f1f5760405162461bcd60e51b8152600401610a4c90612769565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610f5c5760405162461bcd60e51b8152600401610a4c90612769565b600b8054911515620100000262ff000019909216919091179055565b60606004805461098b90612731565b6005546001600160a01b03163314610fb15760405162461bcd60e51b8152600401610a4c90612769565b7f0000000000000000000000005f4d0632413add1a2008eac470bc0d3bc3805e2a6001600160a01b0316826001600160a01b0316036110585760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a4c565b610d068282611eb2565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156110e35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a4c565b6110f03385858403611650565b5060019392505050565b5f610a18338484611773565b6005546001600160a01b031633146111305760405162461bcd60e51b8152600401610a4c90612769565b6001600160a01b0382166111865760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a4c565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156111ca573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111ee91906127fb565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af115801561123e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112629190612812565b50505050565b6005546001600160a01b031633146112925760405162461bcd60e51b8152600401610a4c90612769565b6001600160a01b0382165f81815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461131a5760405162461bcd60e51b8152600401610a4c90612769565b6011839055601282905560138190558061133483856127e8565b61133e91906127e8565b601081905560051015610ef05760405162461bcd60e51b815260206004820152601860248201527f53656c6c2066656573206d757374206265203c3d2035252e00000000000000006044820152606401610a4c565b6005546001600160a01b031633146113bd5760405162461bcd60e51b8152600401610a4c90612769565b670de0b6b3a76400006103e86113d260025490565b6113dd90600a6127b2565b6113e791906127c9565b6113f191906127c9565b81101561144c5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610a4c565b61145e81670de0b6b3a76400006127b2565b600a5550565b6005545f906001600160a01b031633146114905760405162461bcd60e51b8152600401610a4c90612769565b620186a061149d60025490565b6114a89060016127b2565b6114b291906127c9565b82101561151f5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a4c565b6103e861152b60025490565b6115369060056127b2565b61154091906127c9565b8211156115ac5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a4c565b50600955600190565b6005546001600160a01b031633146115df5760405162461bcd60e51b8152600401610a4c90612769565b6001600160a01b0381166116445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a4c565b61164d81611e61565b50565b6001600160a01b0383166116b25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a4c565b6001600160a01b0382166117135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a4c565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166117995760405162461bcd60e51b8152600401610a4c9061282d565b6001600160a01b0382166117bf5760405162461bcd60e51b8152600401610a4c90612872565b805f036117d157610ef083835f611f05565b600b5460ff1615611b3e576005546001600160a01b0384811691161480159061180857506005546001600160a01b03838116911614155b801561181c57506001600160a01b03821615155b801561183357506001600160a01b03821661dead14155b80156118495750600554600160a01b900460ff16155b15611b3e57600b54610100900460ff166118df576001600160a01b0383165f9081526017602052604090205460ff168061189a57506001600160a01b0382165f9081526017602052604090205460ff165b6118df5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a4c565b6001600160a01b0383165f9081526019602052604090205460ff16801561191e57506001600160a01b0382165f9081526018602052604090205460ff16155b15611a01576008548111156119935760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a4c565b600a546001600160a01b0383165f908152602081905260409020546119b890836127e8565b11156119fc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a4c565b611b3e565b6001600160a01b0382165f9081526019602052604090205460ff168015611a4057506001600160a01b0383165f9081526018602052604090205460ff16155b15611ab6576008548111156119fc5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610a4c565b6001600160a01b0382165f9081526018602052604090205460ff16611b3e57600a546001600160a01b0383165f90815260208190526040902054611afa90836127e8565b1115611b3e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a4c565b305f9081526020819052604090205460095481108015908190611b695750600b5462010000900460ff165b8015611b7f5750600554600160a01b900460ff16155b8015611ba357506001600160a01b0385165f9081526019602052604090205460ff16155b8015611bc757506001600160a01b0385165f9081526017602052604090205460ff16155b8015611beb57506001600160a01b0384165f9081526017602052604090205460ff16155b15611c19576005805460ff60a01b1916600160a01b179055611c0b612057565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526017602052604090205460ff600160a01b909204821615911680611c6557506001600160a01b0385165f9081526017602052604090205460ff165b15611c6d57505f5b5f8115611e4d576001600160a01b0386165f9081526019602052604090205460ff168015611c9c57505f601054115b15611d5757611cc16064611cbb601054886122a390919063ffffffff16565b906122b5565b905060105460125482611cd491906127b2565b611cde91906127c9565b60155f828254611cee91906127e8565b9091555050601054601354611d0390836127b2565b611d0d91906127c9565b60165f828254611d1d91906127e8565b9091555050601054601154611d3290836127b2565b611d3c91906127c9565b60145f828254611d4c91906127e8565b90915550611e2f9050565b6001600160a01b0387165f9081526019602052604090205460ff168015611d7f57505f600c54115b15611e2f57611d9e6064611cbb600c54886122a390919063ffffffff16565b9050600c54600e5482611db191906127b2565b611dbb91906127c9565b60155f828254611dcb91906127e8565b9091555050600c54600f54611de090836127b2565b611dea91906127c9565b60165f828254611dfa91906127e8565b9091555050600c54600d54611e0f90836127b2565b611e1991906127c9565b60145f828254611e2991906127e8565b90915550505b8015611e4057611e40873083611f05565b611e4a81866128b5565b94505b611e58878787611f05565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f2b5760405162461bcd60e51b8152600401610a4c9061282d565b6001600160a01b038216611f515760405162461bcd60e51b8152600401610a4c90612872565b6001600160a01b0383165f9081526020819052604090205481811015611fc85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a4c565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611ffe9084906127e8565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161204a91815260200190565b60405180910390a3611262565b305f9081526020819052604081205490505f60165460145460155461207c91906127e8565b61208691906127e8565b90505f821580612094575081155b1561209e57505050565b6009546120ac9060146127b2565b8311156120c4576009546120c19060146127b2565b92505b5f600283601554866120d691906127b2565b6120e091906127c9565b6120ea91906127c9565b90505f6120f785836122c0565b905047612103826122cb565b5f61210e47836122c0565b90505f61213b600260155461212391906127c9565b61212d90896128b5565b601454611cbb9085906122a3565b90505f612168600260155461215091906127c9565b61215a908a6128b5565b601654611cbb9086906122a3565b90505f8161217684866128b5565b61218091906128b5565b5f6015819055601481905560168190556007546040519293506001600160a01b031691849181818185875af1925050503d805f81146121da576040519150601f19603f3d011682016040523d82523d5f602084013e6121df565b606091505b509098505086158015906121f257505f81115b15612245576122018782612481565b601554604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b039091169047905f81818185875af1925050503d805f811461228f576040519150601f19603f3d011682016040523d82523d5f602084013e612294565b606091505b50505050505050505050505050565b5f6122ae82846127b2565b9392505050565b5f6122ae82846127c9565b5f6122ae82846128b5565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106122fe576122fe6128c8565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561237a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061239e91906128dc565b816001815181106123b1576123b16128c8565b60200260200101906001600160a01b031690816001600160a01b0316815250506123fc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611650565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906124509085905f908690309042906004016128f7565b5f604051808303815f87803b158015612467575f80fd5b505af1158015612479573d5f803e3d5ffd5b505050505050565b6124ac307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611650565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f806124f26005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612558573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061257d9190612966565b5050505050565b5f6020808352835180828501525f5b818110156125af57858101830151858201604001528201612593565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461164d575f80fd5b5f80604083850312156125f4575f80fd5b82356125ff816125cf565b946020939093013593505050565b5f6020828403121561261d575f80fd5b81356122ae816125cf565b5f60208284031215612638575f80fd5b5035919050565b5f805f60608486031215612651575f80fd5b833561265c816125cf565b9250602084013561266c816125cf565b929592945050506040919091013590565b801515811461164d575f80fd5b5f806040838503121561269b575f80fd5b82356126a6816125cf565b915060208301356126b68161267d565b809150509250929050565b5f805f606084860312156126d3575f80fd5b505081359360208301359350604090920135919050565b5f602082840312156126fa575f80fd5b81356122ae8161267d565b5f8060408385031215612716575f80fd5b8235612721816125cf565b915060208301356126b6816125cf565b600181811c9082168061274557607f821691505b60208210810361276357634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610a1c57610a1c61279e565b5f826127e357634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610a1c57610a1c61279e565b5f6020828403121561280b575f80fd5b5051919050565b5f60208284031215612822575f80fd5b81516122ae8161267d565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610a1c57610a1c61279e565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156128ec575f80fd5b81516122ae816125cf565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156129455784516001600160a01b031683529383019391830191600101612920565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612978575f80fd5b835192506020840151915060408401519050925092509256fea26469706673582212200331e70aa9558776a5cf1c5aeb32bad5102c05211fdef40709171a21f4129c7664736f6c63430008140033
Deployed Bytecode Sourcemap
30934:15282:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8893:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11060:169;;;;;;;;;;-1:-1:-1;11060:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11060:169:0;1023:187:1;32054:63:0;;;;;;;;;;-1:-1:-1;32054:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31546:29;;;;;;;;;;;;;;;;;;;1613:25:1;;;1601:2;1586:18;31546:29:0;1467:177:1;31012:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1840:32:1;;;1822:51;;1810:2;1795:18;31012:51:0;1649:230:1;10013:108:0;;;;;;;;;;-1:-1:-1;10101:12:0;;10013:108;;31688:30;;;;;;;;;;;;;;;;31837:33;;;;;;;;;;;;;;;;36057:275;;;;;;;;;;-1:-1:-1;36057:275:0;;;;;:::i;:::-;;:::i;:::-;;11711:492;;;;;;;;;;-1:-1:-1;11711:492:0;;;;;:::i;:::-;;:::i;31798:32::-;;;;;;;;;;;;;;;;31115:53;;;;;;;;;;;;31161:6;31115:53;;9855:93;;;;;;;;;;-1:-1:-1;9855:93:0;;9938:2;2880:36:1;;2868:2;2853:18;9855:93:0;2738:184:1;12612:215:0;;;;;;;;;;-1:-1:-1;12612:215:0;;;;;:::i;:::-;;:::i;31070:38::-;;;;;;;;;;;;;;;31392:33;;;;;;;;;;-1:-1:-1;31392:33:0;;;;;;;;38491:126;;;;;;;;;;-1:-1:-1;38491:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;38581:28:0;38557:4;38581:28;;;:19;:28;;;;;;;;;38491:126;31243:25;;;;;;;;;;-1:-1:-1;31243:25:0;;;;-1:-1:-1;;;;;31243:25:0;;;45456:257;;;;;;;;;;;;;:::i;31653:28::-;;;;;;;;;;;;;;;;31472:31;;;;;;;;;;-1:-1:-1;31472:31:0;;;;;;;;;;;10184:127;;;;;;;;;;-1:-1:-1;10184:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10285:18:0;10258:7;10285:18;;;;;;;;;;;;10184:127;2444:103;;;;;;;;;;;;;:::i;35361:121::-;;;;;;;;;;;;;:::i;36605:167::-;;;;;;;;;;-1:-1:-1;36605:167:0;;;;;:::i;:::-;;:::i;31207:29::-;;;;;;;;;;-1:-1:-1;31207:29:0;;;;-1:-1:-1;;;;;31207:29:0;;;46017:196;;;;;;;;;;-1:-1:-1;46017:196:0;;;;;:::i;:::-;;:::i;36976:395::-;;;;;;;;;;-1:-1:-1;36976:395:0;;;;;:::i;:::-;;:::i;35197:112::-;;;;;;;;;;;;;:::i;1793:87::-;;;;;;;;;;-1:-1:-1;1866:6:0;;-1:-1:-1;;;;;1866:6:0;1793:87;;36868:100;;;;;;;;;;-1:-1:-1;36868:100:0;;;;;:::i;:::-;;:::i;9112:104::-;;;;;;;;;;;;;:::i;37983:304::-;;;;;;;;;;-1:-1:-1;37983:304:0;;;;;:::i;:::-;;:::i;31619:25::-;;;;;;;;;;;;;;;;13330:413;;;;;;;;;;-1:-1:-1;13330:413:0;;;;;:::i;:::-;;:::i;10524:175::-;;;;;;;;;;-1:-1:-1;10524:175:0;;;;;:::i;:::-;;:::i;32275:57::-;;;;;;;;;;-1:-1:-1;32275:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31432:33;;;;;;;;;;-1:-1:-1;31432:33:0;;;;;;;;;;;45721:288;;;;;;;;;;-1:-1:-1;45721:288:0;;;;;:::i;:::-;;:::i;37793:182::-;;;;;;;;;;-1:-1:-1;37793:182:0;;;;;:::i;:::-;;:::i;37379:406::-;;;;;;;;;;-1:-1:-1;37379:406:0;;;;;:::i;:::-;;:::i;36340:257::-;;;;;;;;;;-1:-1:-1;36340:257:0;;;;;:::i;:::-;;:::i;31277:35::-;;;;;;;;;;;;;;;;35552:497;;;;;;;;;;-1:-1:-1;35552:497:0;;;;;:::i;:::-;;:::i;31763:26::-;;;;;;;;;;;;;;;;31512:27;;;;;;;;;;;;;;;;10762:151;;;;;;;;;;-1:-1:-1;10762:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10878:18:0;;;10851:7;10878:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10762:151;31319:33;;;;;;;;;;;;;;;;31582:30;;;;;;;;;;;;;;;;2702:201;;;;;;;;;;-1:-1:-1;2702:201:0;;;;;:::i;:::-;;:::i;31725:31::-;;;;;;;;;;;;;;;;31359:24;;;;;;;;;;;;;;;;31877:28;;;;;;;;;;;;;;;;8893:100;8947:13;8980:5;8973:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8893:100;:::o;11060:169::-;11143:4;11160:39;740:10;11183:7;11192:6;11160:8;:39::i;:::-;-1:-1:-1;11217:4:0;11060:169;;;;;:::o;36057:275::-;1866:6;;-1:-1:-1;;;;;1866:6:0;740:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;;;;;;;;;36194:4:::1;36186;36165:13;10101:12:::0;;;10013:108;36165:13:::1;:17;::::0;36181:1:::1;36165:17;:::i;:::-;36164:26;;;;:::i;:::-;36163:35;;;;:::i;:::-;36153:6;:45;;36131:142;;;::::0;-1:-1:-1;;;36131:142:0;;5872:2:1;36131:142:0::1;::::0;::::1;5854:21:1::0;5911:2;5891:18;;;5884:30;5950:34;5930:18;;;5923:62;-1:-1:-1;;;6001:18:1;;;5994:45;6056:19;;36131:142:0::1;5670:411:1::0;36131:142:0::1;36307:17;:6:::0;36317::::1;36307:17;:::i;:::-;36284:20;:40:::0;-1:-1:-1;36057:275:0:o;11711:492::-;11851:4;11868:36;11878:6;11886:9;11897:6;11868:9;:36::i;:::-;-1:-1:-1;;;;;11944:19:0;;11917:24;11944:19;;;:11;:19;;;;;;;;740:10;11944:33;;;;;;;;11996:26;;;;11988:79;;;;-1:-1:-1;;;11988:79:0;;6288:2:1;11988:79:0;;;6270:21:1;6327:2;6307:18;;;6300:30;6366:34;6346:18;;;6339:62;-1:-1:-1;;;6417:18:1;;;6410:38;6465:19;;11988:79:0;6086:404:1;11988:79:0;12103:57;12112:6;740:10;12153:6;12134:16;:25;12103:8;:57::i;:::-;-1:-1:-1;12191:4:0;;11711:492;-1:-1:-1;;;;11711:492:0:o;12612:215::-;740:10;12700:4;12749:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12749:34:0;;;;;;;;;;12700:4;;12717:80;;12740:7;;12749:47;;12786:10;;12749:47;:::i;:::-;12717:8;:80::i;45456:257::-;1866:6;;-1:-1:-1;;;;;1866:6:0;740:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;45535:46:::1;::::0;-1:-1:-1;;;45535:46:0;;45550:4:::1;45535:46;::::0;::::1;1822:51:1::0;;;45517:15:0::1;::::0;45535:31:::1;::::0;1795:18:1;;45535:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45592:51;::::0;-1:-1:-1;;;45592:51:0;;45623:10:::1;45592:51;::::0;::::1;6988::1::0;7055:18;;;7048:34;;;45517:64:0;;-1:-1:-1;45607:4:0::1;::::0;45592:30:::1;::::0;6961:18:1;;45592:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;45654:51:0::1;::::0;45662:10:::1;::::0;45683:21:::1;45654:51:::0;::::1;;;::::0;::::1;::::0;;;45683:21;45662:10;45654:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;45506:207;45456:257::o:0;2444:103::-;1866:6;;-1:-1:-1;;;;;1866:6:0;740:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;2509:30:::1;2536:1;2509:18;:30::i;:::-;2444:103::o:0;35361:121::-;1866:6;;35413:4;;-1:-1:-1;;;;;1866:6:0;740:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;-1:-1:-1;35430:14:0::1;:22:::0;;-1:-1:-1;;35430:22:0::1;::::0;;;35361:121;:::o;36605:167::-;1866:6;;-1:-1:-1;;;;;1866:6:0;740:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36718:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;36718:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36605:167::o;46017:196::-;1866:6;;-1:-1:-1;;;;;1866:6:0;740:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;46090:12:::1;46108:6;-1:-1:-1::0;;;;;46108:11:0::1;46141:21;46108:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46089:89;;;46197:7;46189:16;;;::::0;::::1;36976:395:::0;1866:6;;-1:-1:-1;;;;;1866:6:0;740:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;37126:14:::1;:29:::0;;;37166:15:::1;:31:::0;;;37208:10:::1;:21:::0;;;37221:8;37255:32:::1;37184:13:::0;37143:12;37255:32:::1;:::i;:::-;:45;;;;:::i;:::-;37240:12;:60:::0;;;37335:1:::1;-1:-1:-1::0;37319:17:0::1;37311:52;;;::::0;-1:-1:-1;;;37311:52:0;;7755:2:1;37311:52:0::1;::::0;::::1;7737:21:1::0;7794:2;7774:18;;;7767:30;-1:-1:-1;;;7813:18:1;;;7806:52;7875:18;;37311:52:0::1;7553:346:1::0;37311:52:0::1;36976:395:::0;;;:::o;35197:112::-;1866:6;;-1:-1:-1;;;;;1866:6:0;740:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;35252:13:::1;:20:::0;;-1:-1:-1;;35283:18:0;;;;;35197:112::o;36868:100::-;1866:6;;-1:-1:-1;;;;;1866:6:0;740:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;36939:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;36939:21:0;;::::1;::::0;;;::::1;::::0;;36868:100::o;9112:104::-;9168:13;9201:7;9194:14;;;;;:::i;37983:304::-;1866:6;;-1:-1:-1;;;;;1866:6:0;740:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;38127:13:::1;-1:-1:-1::0;;;;;38119:21:0::1;:4;-1:-1:-1::0;;;;;38119:21:0::1;::::0;38097:128:::1;;;::::0;-1:-1:-1;;;38097:128:0;;8106:2:1;38097:128:0::1;::::0;::::1;8088:21:1::0;8145:2;8125:18;;;8118:30;8184:34;8164:18;;;8157:62;8255:27;8235:18;;;8228:55;8300:19;;38097:128:0::1;7904:421:1::0;38097:128:0::1;38238:41;38267:4;38273:5;38238:28;:41::i;13330:413::-:0;740:10;13423:4;13467:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13467:34:0;;;;;;;;;;13520:35;;;;13512:85;;;;-1:-1:-1;;;13512:85:0;;8532:2:1;13512:85:0;;;8514:21:1;8571:2;8551:18;;;8544:30;8610:34;8590:18;;;8583:62;-1:-1:-1;;;8661:18:1;;;8654:35;8706:19;;13512:85:0;8330:401:1;13512:85:0;13633:67;740:10;13656:7;13684:15;13665:16;:34;13633:8;:67::i;:::-;-1:-1:-1;13731:4:0;;13330:413;-1:-1:-1;;;13330:413:0:o;10524:175::-;10610:4;10627:42;740:10;10651:9;10662:6;10627:9;:42::i;45721:288::-;1866:6;;-1:-1:-1;;;;;1866:6:0;740:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45816:20:0;::::1;45808:59;;;::::0;-1:-1:-1;;;45808:59:0;;8938:2:1;45808:59:0::1;::::0;::::1;8920:21:1::0;8977:2;8957:18;;;8950:30;9016:28;8996:18;;;8989:56;9062:18;;45808:59:0::1;8736:350:1::0;45808:59:0::1;45905:39;::::0;-1:-1:-1;;;45905:39:0;;45938:4:::1;45905:39;::::0;::::1;1822:51:1::0;45878:24:0::1;::::0;-1:-1:-1;;;;;45905:24:0;::::1;::::0;::::1;::::0;1795:18:1;;45905:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45955:46;::::0;-1:-1:-1;;;45955:46:0;;-1:-1:-1;;;;;7006:32:1;;;45955:46:0::1;::::0;::::1;6988:51:1::0;7055:18;;;7048:34;;;45878:66:0;;-1:-1:-1;45955:23:0;;::::1;::::0;::::1;::::0;6961:18:1;;45955:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45797:212;45721:288:::0;;:::o;37793:182::-;1866:6;;-1:-1:-1;;;;;1866:6:0;740:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37878:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;37878:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37933:34;;1163:41:1;;;37933:34:0::1;::::0;1136:18:1;37933:34:0::1;;;;;;;37793:182:::0;;:::o;37379:406::-;1866:6;;-1:-1:-1;;;;;1866:6:0;740:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;37530:15:::1;:30:::0;;;37571:16:::1;:32:::0;;;37614:11:::1;:22:::0;;;37628:8;37663:34:::1;37590:13:::0;37548:12;37663:34:::1;:::i;:::-;:48;;;;:::i;:::-;37647:13;:64:::0;;;37747:1:::1;-1:-1:-1::0;37730:18:0::1;37722:55;;;::::0;-1:-1:-1;;;37722:55:0;;9293:2:1;37722:55:0::1;::::0;::::1;9275:21:1::0;9332:2;9312:18;;;9305:30;9371:26;9351:18;;;9344:54;9415:18;;37722:55:0::1;9091:348:1::0;36340:257:0;1866:6;;-1:-1:-1;;;;;1866:6:0;740:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;36481:4:::1;36473;36451:13;10101:12:::0;;;10013:108;36451:13:::1;:18;::::0;36467:2:::1;36451:18;:::i;:::-;36450:27;;;;:::i;:::-;36449:36;;;;:::i;:::-;36439:6;:46;;36417:132;;;::::0;-1:-1:-1;;;36417:132:0;;9646:2:1;36417:132:0::1;::::0;::::1;9628:21:1::0;9685:2;9665:18;;;9658:30;9724:34;9704:18;;;9697:62;-1:-1:-1;;;9775:18:1;;;9768:34;9819:19;;36417:132:0::1;9444:400:1::0;36417:132:0::1;36572:17;:6:::0;36582::::1;36572:17;:::i;:::-;36560:9;:29:::0;-1:-1:-1;36340:257:0:o;35552:497::-;1866:6;;35660:4;;-1:-1:-1;;;;;1866:6:0;740:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;35739:6:::1;35718:13;10101:12:::0;;;10013:108;35718:13:::1;:17;::::0;35734:1:::1;35718:17;:::i;:::-;35717:28;;;;:::i;:::-;35704:9;:41;;35682:144;;;::::0;-1:-1:-1;;;35682:144:0;;10051:2:1;35682:144:0::1;::::0;::::1;10033:21:1::0;10090:2;10070:18;;;10063:30;10129:34;10109:18;;;10102:62;-1:-1:-1;;;10180:18:1;;;10173:51;10241:19;;35682:144:0::1;9849:417:1::0;35682:144:0::1;35894:4;35873:13;10101:12:::0;;;10013:108;35873:13:::1;:17;::::0;35889:1:::1;35873:17;:::i;:::-;35872:26;;;;:::i;:::-;35859:9;:39;;35837:141;;;::::0;-1:-1:-1;;;35837:141:0;;10473:2:1;35837:141:0::1;::::0;::::1;10455:21:1::0;10512:2;10492:18;;;10485:30;10551:34;10531:18;;;10524:62;-1:-1:-1;;;10602:18:1;;;10595:50;10662:19;;35837:141:0::1;10271:416:1::0;35837:141:0::1;-1:-1:-1::0;35989:18:0::1;:30:::0;36037:4:::1;::::0;35552:497::o;2702:201::-;1866:6;;-1:-1:-1;;;;;1866:6:0;740:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2791:22:0;::::1;2783:73;;;::::0;-1:-1:-1;;;2783:73:0;;10894:2:1;2783:73:0::1;::::0;::::1;10876:21:1::0;10933:2;10913:18;;;10906:30;10972:34;10952:18;;;10945:62;-1:-1:-1;;;11023:18:1;;;11016:36;11069:19;;2783:73:0::1;10692:402:1::0;2783:73:0::1;2867:28;2886:8;2867:18;:28::i;:::-;2702:201:::0;:::o;17014:380::-;-1:-1:-1;;;;;17150:19:0;;17142:68;;;;-1:-1:-1;;;17142:68:0;;11301:2:1;17142:68:0;;;11283:21:1;11340:2;11320:18;;;11313:30;11379:34;11359:18;;;11352:62;-1:-1:-1;;;11430:18:1;;;11423:34;11474:19;;17142:68:0;11099:400:1;17142:68:0;-1:-1:-1;;;;;17229:21:0;;17221:68;;;;-1:-1:-1;;;17221:68:0;;11706:2:1;17221:68:0;;;11688:21:1;11745:2;11725:18;;;11718:30;11784:34;11764:18;;;11757:62;-1:-1:-1;;;11835:18:1;;;11828:32;11877:19;;17221:68:0;11504:398:1;17221:68:0;-1:-1:-1;;;;;17302:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17354:32;;1613:25:1;;;17354:32:0;;1586:18:1;17354:32:0;;;;;;;17014:380;;;:::o;38625:3924::-;-1:-1:-1;;;;;38757:18:0;;38749:68;;;;-1:-1:-1;;;38749:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38836:16:0;;38828:64;;;;-1:-1:-1;;;38828:64:0;;;;;;;:::i;:::-;38909:6;38919:1;38909:11;38905:93;;38937:28;38953:4;38959:2;38963:1;38937:15;:28::i;38905:93::-;39014:14;;;;39010:1694;;;1866:6;;-1:-1:-1;;;;;39067:15:0;;;1866:6;;39067:15;;;;:49;;-1:-1:-1;1866:6:0;;-1:-1:-1;;;;;39103:13:0;;;1866:6;;39103:13;;39067:49;:86;;;;-1:-1:-1;;;;;;39137:16:0;;;;39067:86;:128;;;;-1:-1:-1;;;;;;39174:21:0;;39188:6;39174:21;;39067:128;:158;;;;-1:-1:-1;39217:8:0;;-1:-1:-1;;;39217:8:0;;;;39216:9;39067:158;39045:1648;;;39265:13;;;;;;;39260:223;;-1:-1:-1;;;;;39337:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;39366:23:0;;;;;;:19;:23;;;;;;;;39337:52;39303:160;;;;-1:-1:-1;;;39303:160:0;;12919:2:1;39303:160:0;;;12901:21:1;12958:2;12938:18;;;12931:30;-1:-1:-1;;;12977:18:1;;;12970:52;13039:18;;39303:160:0;12717:346:1;39303:160:0;-1:-1:-1;;;;;39557:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;39614:35:0;;;;;;:31;:35;;;;;;;;39613:36;39557:92;39531:1147;;;39736:20;;39726:6;:30;;39692:169;;;;-1:-1:-1;;;39692:169:0;;13270:2:1;39692:169:0;;;13252:21:1;13309:2;13289:18;;;13282:30;13348:34;13328:18;;;13321:62;-1:-1:-1;;;13399:18:1;;;13392:51;13460:19;;39692:169:0;13068:417:1;39692:169:0;39944:9;;-1:-1:-1;;;;;10285:18:0;;10258:7;10285:18;;;;;;;;;;;39918:22;;:6;:22;:::i;:::-;:35;;39884:140;;;;-1:-1:-1;;;39884:140:0;;13692:2:1;39884:140:0;;;13674:21:1;13731:2;13711:18;;;13704:30;-1:-1:-1;;;13750:18:1;;;13743:49;13809:18;;39884:140:0;13490:343:1;39884:140:0;39531:1147;;;-1:-1:-1;;;;;40122:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;40177:37:0;;;;;;:31;:37;;;;;;;;40176:38;40122:92;40096:582;;;40301:20;;40291:6;:30;;40257:170;;;;-1:-1:-1;;;40257:170:0;;14040:2:1;40257:170:0;;;14022:21:1;14079:2;14059:18;;;14052:30;14118:34;14098:18;;;14091:62;-1:-1:-1;;;14169:18:1;;;14162:52;14231:19;;40257:170:0;13838:418:1;40096:582:0;-1:-1:-1;;;;;40458:35:0;;;;;;:31;:35;;;;;;;;40453:225;;40578:9;;-1:-1:-1;;;;;10285:18:0;;10258:7;10285:18;;;;;;;;;;;40552:22;;:6;:22;:::i;:::-;:35;;40518:140;;;;-1:-1:-1;;;40518:140:0;;13692:2:1;40518:140:0;;;13674:21:1;13731:2;13711:18;;;13704:30;-1:-1:-1;;;13750:18:1;;;13743:49;13809:18;;40518:140:0;13490:343:1;40518:140:0;40765:4;40716:28;10285:18;;;;;;;;;;;40823;;40799:42;;;;;;;40872:35;;-1:-1:-1;40896:11:0;;;;;;;40872:35;:61;;;;-1:-1:-1;40925:8:0;;-1:-1:-1;;;40925:8:0;;;;40924:9;40872:61;:110;;;;-1:-1:-1;;;;;;40951:31:0;;;;;;:25;:31;;;;;;;;40950:32;40872:110;:153;;;;-1:-1:-1;;;;;;41000:25:0;;;;;;:19;:25;;;;;;;;40999:26;40872:153;:194;;;;-1:-1:-1;;;;;;41043:23:0;;;;;;:19;:23;;;;;;;;41042:24;40872:194;40854:326;;;41093:8;:15;;-1:-1:-1;;;;41093:15:0;-1:-1:-1;;;41093:15:0;;;41125:10;:8;:10::i;:::-;41152:8;:16;;-1:-1:-1;;;;41152:16:0;;;40854:326;41208:8;;-1:-1:-1;;;;;41318:25:0;;41192:12;41318:25;;;:19;:25;;;;;;41208:8;-1:-1:-1;;;41208:8:0;;;;;41207:9;;41318:25;;:52;;-1:-1:-1;;;;;;41347:23:0;;;;;;:19;:23;;;;;;;;41318:52;41314:100;;;-1:-1:-1;41397:5:0;41314:100;41426:12;41531:7;41527:969;;;-1:-1:-1;;;;;41583:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;41632:1;41616:13;;:17;41583:50;41579:768;;;41661:34;41691:3;41661:25;41672:13;;41661:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;41654:41;;41764:13;;41744:16;;41737:4;:23;;;;:::i;:::-;41736:41;;;;:::i;:::-;41714:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;41836:13:0;;41821:11;;41814:18;;:4;:18;:::i;:::-;41813:36;;;;:::i;:::-;41796:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;41916:13:0;;41897:15;;41890:22;;:4;:22;:::i;:::-;41889:40;;;;:::i;:::-;41868:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;41579:768:0;;-1:-1:-1;41579:768:0;;-1:-1:-1;;;;;41991:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;42041:1;42026:12;;:16;41991:51;41987:360;;;42070:33;42099:3;42070:24;42081:12;;42070:6;:10;;:24;;;;:::i;:33::-;42063:40;;42171:12;;42152:15;;42145:4;:22;;;;:::i;:::-;42144:39;;;;:::i;:::-;42122:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;42241:12:0;;42227:10;;42220:17;;:4;:17;:::i;:::-;42219:34;;;;:::i;:::-;42202:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;42319:12:0;;42301:14;;42294:21;;:4;:21;:::i;:::-;42293:38;;;;:::i;:::-;42272:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;41987:360:0;42367:8;;42363:91;;42396:42;42412:4;42426;42433;42396:15;:42::i;:::-;42470:14;42480:4;42470:14;;:::i;:::-;;;41527:969;42508:33;42524:4;42530:2;42534:6;42508:15;:33::i;:::-;38738:3811;;;;38625:3924;;;:::o;3063:191::-;3156:6;;;-1:-1:-1;;;;;3173:17:0;;;-1:-1:-1;;;;;;3173:17:0;;;;;;;3206:40;;3156:6;;;3173:17;3156:6;;3206:40;;3137:16;;3206:40;3126:128;3063:191;:::o;38295:188::-;-1:-1:-1;;;;;38378:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38378:39:0;;;;;;;;;;38435:40;;38378:39;;:31;38435:40;;;38295:188;;:::o;14233:733::-;-1:-1:-1;;;;;14373:20:0;;14365:70;;;;-1:-1:-1;;;14365:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14454:23:0;;14446:71;;;;-1:-1:-1;;;14446:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14614:17:0;;14590:21;14614:17;;;;;;;;;;;14650:23;;;;14642:74;;;;-1:-1:-1;;;14642:74:0;;14596:2:1;14642:74:0;;;14578:21:1;14635:2;14615:18;;;14608:30;14674:34;14654:18;;;14647:62;-1:-1:-1;;;14725:18:1;;;14718:36;14771:19;;14642:74:0;14394:402:1;14642:74:0;-1:-1:-1;;;;;14752:17:0;;;:9;:17;;;;;;;;;;;14772:22;;;14752:42;;14816:20;;;;;;;;:30;;14788:6;;14752:9;14816:30;;14788:6;;14816:30;:::i;:::-;;;;;;;;14881:9;-1:-1:-1;;;;;14864:35:0;14873:6;-1:-1:-1;;;;;14864:35:0;;14892:6;14864:35;;;;1613:25:1;;1601:2;1586:18;;1467:177;14864:35:0;;;;;;;;14912:46;36976:395;43675:1773;43758:4;43714:23;10285:18;;;;;;;;;;;43714:50;;43775:25;43870:13;;43837:17;;43803:18;;:51;;;;:::i;:::-;:80;;;;:::i;:::-;43775:108;-1:-1:-1;43894:12:0;43923:20;;;:46;;-1:-1:-1;43947:22:0;;43923:46;43919:85;;;43986:7;;;43675:1773::o;43919:85::-;44038:18;;:23;;44059:2;44038:23;:::i;:::-;44020:15;:41;44016:115;;;44096:18;;:23;;44117:2;44096:23;:::i;:::-;44078:41;;44016:115;44192:23;44305:1;44272:17;44237:18;;44219:15;:36;;;;:::i;:::-;44218:71;;;;:::i;:::-;:88;;;;:::i;:::-;44192:114;-1:-1:-1;44317:26:0;44346:36;:15;44192:114;44346:19;:36::i;:::-;44317:65;-1:-1:-1;44423:21:0;44457:36;44317:65;44457:16;:36::i;:::-;44506:18;44527:44;:21;44553:17;44527:25;:44::i;:::-;44506:65;;44584:22;44609:83;44689:1;44668:18;;:22;;;;:::i;:::-;44647:44;;:17;:44;:::i;:::-;44624:17;;44609:33;;:10;;:14;:33::i;:83::-;44584:108;;44713:18;44734:79;44810:1;44789:18;;:22;;;;:::i;:::-;44768:44;;:17;:44;:::i;:::-;44749:13;;44734:29;;:10;;:14;:29::i;:79::-;44713:100;-1:-1:-1;44826:23:0;44713:100;44852:27;44865:14;44852:10;:27;:::i;:::-;:40;;;;:::i;:::-;44926:1;44905:18;:22;;;44938:17;:21;;;44970:13;:17;;;45022:10;;45014:47;;44826:66;;-1:-1:-1;;;;;;45022:10:0;;45046;;45014:47;44926:1;45014:47;45046:10;45022;45014:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45000:61:0;;-1:-1:-1;;45078:19:0;;;;;:42;;;45119:1;45101:15;:19;45078:42;45074:278;;;45137:46;45150:15;45167;45137:12;:46::i;:::-;45307:18;;45203:137;;;15003:25:1;;;15059:2;15044:18;;15037:34;;;15087:18;;;15080:34;;;;45203:137:0;;;;;;14991:2:1;45203:137:0;;;45074:278;45386:14;;45378:62;;-1:-1:-1;;;;;45386:14:0;;;;45414:21;;45378:62;;;;45414:21;45386:14;45378:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;43675:1773:0:o;22146:98::-;22204:7;22231:5;22235:1;22231;:5;:::i;:::-;22224:12;22146:98;-1:-1:-1;;;22146:98:0:o;22545:::-;22603:7;22630:5;22634:1;22630;:5;:::i;21789:98::-;21847:7;21874:5;21878:1;21874;:5;:::i;42557:589::-;42707:16;;;42721:1;42707:16;;;;;;;;42683:21;;42707:16;;;;;;;;;;-1:-1:-1;42707:16:0;42683:40;;42752:4;42734;42739:1;42734:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;42734:23:0;;;-1:-1:-1;;;;;42734:23:0;;;;;42778:15;-1:-1:-1;;;;;42778:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42768:4;42773:1;42768:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;42768:32:0;;;-1:-1:-1;;;;;42768:32:0;;;;;42813:62;42830:4;42845:15;42863:11;42813:8;:62::i;:::-;42914:224;;-1:-1:-1;;;42914:224:0;;-1:-1:-1;;;;;42914:15:0;:66;;;;:224;;42995:11;;43021:1;;43065:4;;43092;;43112:15;;42914:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42612:534;42557:589;:::o;43154:513::-;43302:62;43319:4;43334:15;43352:11;43302:8;:62::i;:::-;43407:15;-1:-1:-1;;;;;43407:31:0;;43446:9;43479:4;43499:11;43525:1;43568;43611:7;1866:6;;-1:-1:-1;;;;;1866:6:0;;1793:87;43611:7;43407:252;;;;;;-1:-1:-1;;;;;;43407:252:0;;;-1:-1:-1;;;;;16989:15:1;;;43407:252:0;;;16971:34:1;17021:18;;;17014:34;;;;17064:18;;;17057:34;;;;17107:18;;;17100:34;17171:15;;;17150:19;;;17143:44;43633:15:0;17203:19:1;;;17196:35;16905:19;;43407:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43154:513;;:::o;14:548:1:-;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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:316::-;3514:6;3522;3530;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;-1:-1:-1;;3622:23:1;;;3692:2;3677:18;;3664:32;;-1:-1:-1;3743:2:1;3728:18;;;3715:32;;3437:316;-1:-1:-1;3437:316:1:o;3758:241::-;3814:6;3867:2;3855:9;3846:7;3842:23;3838:32;3835:52;;;3883:1;3880;3873:12;3835:52;3922:9;3909:23;3941:28;3963:5;3941:28;:::i;4004:388::-;4072:6;4080;4133:2;4121:9;4112:7;4108:23;4104:32;4101:52;;;4149:1;4146;4139:12;4101:52;4188:9;4175:23;4207:31;4232:5;4207:31;:::i;:::-;4257:5;-1:-1:-1;4314:2:1;4299:18;;4286:32;4327:33;4286:32;4327:33;:::i;4397:380::-;4476:1;4472:12;;;;4519;;;4540:61;;4594:4;4586:6;4582:17;4572:27;;4540:61;4647:2;4639:6;4636:14;4616:18;4613:38;4610:161;;4693:10;4688:3;4684:20;4681:1;4674:31;4728:4;4725:1;4718:15;4756:4;4753:1;4746:15;4610:161;;4397:380;;;:::o;4782:356::-;4984:2;4966:21;;;5003:18;;;4996:30;5062:34;5057:2;5042:18;;5035:62;5129:2;5114:18;;4782:356::o;5143:127::-;5204:10;5199:3;5195:20;5192:1;5185:31;5235:4;5232:1;5225:15;5259:4;5256:1;5249:15;5275:168;5348:9;;;5379;;5396:15;;;5390:22;;5376:37;5366:71;;5417:18;;:::i;5448:217::-;5488:1;5514;5504:132;;5558:10;5553:3;5549:20;5546:1;5539:31;5593:4;5590:1;5583:15;5621:4;5618:1;5611:15;5504:132;-1:-1:-1;5650:9:1;;5448:217::o;6495:125::-;6560:9;;;6581:10;;;6578:36;;;6594:18;;:::i;6625:184::-;6695:6;6748:2;6736:9;6727:7;6723:23;6719:32;6716:52;;;6764:1;6761;6754:12;6716:52;-1:-1:-1;6787:16:1;;6625:184;-1:-1:-1;6625:184:1:o;7093:245::-;7160:6;7213:2;7201:9;7192:7;7188:23;7184:32;7181:52;;;7229:1;7226;7219:12;7181:52;7261:9;7255:16;7280:28;7302:5;7280:28;:::i;11907:401::-;12109:2;12091:21;;;12148:2;12128:18;;;12121:30;12187:34;12182:2;12167:18;;12160:62;-1:-1:-1;;;12253:2:1;12238:18;;12231:35;12298:3;12283:19;;11907:401::o;12313:399::-;12515:2;12497:21;;;12554:2;12534:18;;;12527:30;12593:34;12588:2;12573:18;;12566:62;-1:-1:-1;;;12659:2:1;12644:18;;12637:33;12702:3;12687:19;;12313:399::o;14261:128::-;14328:9;;;14349:11;;;14346:37;;;14363:18;;:::i;15257:127::-;15318:10;15313:3;15309:20;15306:1;15299:31;15349:4;15346:1;15339:15;15373:4;15370:1;15363:15;15389:251;15459:6;15512:2;15500:9;15491:7;15487:23;15483:32;15480:52;;;15528:1;15525;15518:12;15480:52;15560:9;15554:16;15579:31;15604:5;15579:31;:::i;15645:980::-;15907:4;15955:3;15944:9;15940:19;15986:6;15975:9;15968:25;16012:2;16050:6;16045:2;16034:9;16030:18;16023:34;16093:3;16088:2;16077:9;16073:18;16066:31;16117:6;16152;16146:13;16183:6;16175;16168:22;16221:3;16210:9;16206:19;16199:26;;16260:2;16252:6;16248:15;16234:29;;16281:1;16291:195;16305:6;16302:1;16299:13;16291:195;;;16370:13;;-1:-1:-1;;;;;16366:39:1;16354:52;;16461:15;;;;16426:12;;;;16402:1;16320:9;16291:195;;;-1:-1:-1;;;;;;;16542:32:1;;;;16537:2;16522:18;;16515:60;-1:-1:-1;;;16606:3:1;16591:19;16584:35;16503:3;15645:980;-1:-1:-1;;;15645:980:1:o;17242:306::-;17330:6;17338;17346;17399:2;17387:9;17378:7;17374:23;17370:32;17367:52;;;17415:1;17412;17405:12;17367:52;17444:9;17438:16;17428:26;;17494:2;17483:9;17479:18;17473:25;17463:35;;17538:2;17527:9;17523:18;17517:25;17507:35;;17242:306;;;;;:::o
Swarm Source
ipfs://0331e70aa9558776a5cf1c5aeb32bad5102c05211fdef40709171a21f4129c76
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.