ETH Price: $2,419.96 (+1.67%)

Token

Man I Love Frogs (MILF)
 

Overview

Max Total Supply

1,000,000,000 MILF

Holders

50

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,441,930.260313614454783406 MILF

Value
$0.00
0x16d5F153F369b3c8be2678c32C1E06b0eE670C41
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MILF

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-29
*/

// SPDX-License-Identifier: MIT

/**

Website: https://milfcoin.live
Twitter:  https://twitter.com/ercmilfcoin
Telegram:  https://t.me/milfcoin_portal
 
*/

pragma solidity ^0.8.15;

abstract contract Context {
    /**
     * @dev Returns the current sender of the message.
     * This function is internal view virtual, meaning that it can only be used within this contract or derived contracts.
     * @return The address of the account that initiated the transaction.
     */
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

interface IERC20 {
    /**
     * @dev Returns the total supply of tokens.
     * @return The total supply of tokens.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the balance of a specific account.
     * @param account The address of the account to check the balance for.
     * @return The balance of the specified account.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Transfers tokens to a recipient.
     * @param recipient The address of the recipient.
     * @param amount The amount of tokens to be transferred.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining allowance for a spender.
     * @param owner The address of the token owner.
     * @param spender The address of the spender.
     * @return The remaining allowance for the specified owner and spender.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Approves a spender to spend a certain amount of tokens on behalf of the owner.
     * @param spender The address which will spend the funds.
     * @param amount The amount of tokens to be spent.
     * @return A boolean indicating whether the approval was successful or not.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Transfers tokens from one account to another.
     * @param sender The address from which the tokens will be transferred.
     * @param recipient The address to which the tokens will be transferred.
     * @param amount The amount of tokens to be transferred.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when tokens are transferred from one address to another.
     * @param from The address from which the tokens are transferred.
     * @param to The address to which the tokens are transferred.
     * @param value The amount of tokens being transferred.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the approval of a spender is updated.
     * @param owner The address that approves the spender.
     * @param spender The address that is approved.
     * @param value The new approved amount.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

library SafeMath {
    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     * @param a The first integer to add.
     * @param b The second integer to add.
     * @return The sum of the two integers.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Subtracts two unsigned integers, reverts on overflow.
     * @param a The integer to subtract from (minuend).
     * @param b The integer to subtract (subtrahend).
     * @return The difference of the two integers.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Subtracts two unsigned integers, reverts with custom message on overflow.
     * @param a The integer to subtract from (minuend).
     * @param b The integer to subtract (subtrahend).
     * @param errorMessage The error message to revert with.
     * @return The difference of the two integers.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;
    }

    /**
     * @dev Multiplies two unsigned integers, reverts on overflow.
     * @param a The first integer to multiply.
     * @param b The second integer to multiply.
     * @return The product of the two integers.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Divides two unsigned integers, reverts on division by zero.
     * @param a The dividend.
     * @param b The divisor.
     * @return The quotient of the division.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Divides two unsigned integers, reverts with custom message on division by zero.
     * @param a The dividend.
     * @param b The divisor.
     * @param errorMessage The error message to revert with.
     * @return The quotient of the division.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        return c;
    }
}

contract Ownable is Context {
    address private _owner;

    /// @dev Emitted when ownership is transferred.
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract, setting the original owner to the sender account.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     * @return The address of the current owner.
     */
    function owner() public view 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 Renounces ownership, leaving the contract without an owner.
     * @notice Renouncing ownership will leave the contract without an owner,
     * which means it will not be possible to call onlyOwner functions anymore.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
}

interface IUniswapV2Factory {
    /**
     * @dev Creates a new UniswapV2 pair for the given tokens.
     * @param tokenA The address of the first token in the pair.
     * @param tokenB The address of the second token in the pair.
     * @return pair The address of the newly created UniswapV2 pair.
     */
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router02 {
    /**
     * @dev Swaps an exact amount of input tokens for as much output as possible, along with additional functionality
     * to support fee-on-transfer tokens.
     * @param amountIn The amount of input tokens to swap.
     * @param amountOutMin The minimum amount of output tokens expected to receive.
     * @param path An array of token addresses representing the path of the swap.
     * @param to The recipient address to send the swapped ETH to.
     * @param deadline The timestamp for the deadline of the swap transaction.
     */
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    /**
     * @dev Returns the address of the UniswapV2Factory contract.
     * @return The address of the UniswapV2Factory contract.
     */
    function factory() external pure returns (address);

    /**
     * @dev Returns the address of the WETH (Wrapped ETH) contract.
     * @return The address of the WETH contract.
     */
    function WETH() external pure returns (address);

    /**
    * @dev Adds liquidity to an ETH-based pool.
    * @param token The address of the ERC-20 token to add liquidity for.
    * @param amountTokenDesired The desired amount of tokens to add.
    * @param amountTokenMin The minimum amount of tokens expected to receive.
    * @param amountETHMin The minimum amount of ETH expected to receive.
    * @param to The recipient address to send the liquidity to.
    * @param deadline The timestamp for the deadline of the liquidity addition transaction.
    * @return amountToken The amount of token added.
    * @return amountETH The amount of ETH added.
    * @return liquidity The amount of liquidity added.
    */
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

contract MILF is Context, IERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 private uniswapV2Router;

    string private constant _name = unicode"Man I Love Frogs";
    string private constant _symbol = unicode"MILF";
    uint8 private constant _decimals = 18;
    uint256 private constant _totalSupply = 1000000000 * 10**_decimals;

    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => uint256) private _balances;
    mapping (address => bool) private _excludeForFees;
    mapping (address => bool) private _excludeForTran;

    uint256 private _buyFee = 13;
    uint256 private _sellFee = 13;

    uint256 public _maxTxLimit = _totalSupply * 20 / 1000;
    uint256 public _maxWalletTokens = _totalSupply * 20 / 1000;
    uint256 public _swapTokensLimit = _totalSupply * 8 / 1000000;
    uint256 public _taxSwapThreshold = _totalSupply * 8 / 1000;

    address payable private _marketingAddr;

    address private uniswapV2Pair;
    bool private inSwap = false;
    bool private tradingOpen;
    bool private swapEnabled = false;

    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor () {
        _marketingAddr = payable(0x447244f60aB9d1e992aA73aD5059AC5182d3CD63);
        _balances[_msgSender()] = _totalSupply;
        _excludeForTran[_marketingAddr] = true;
        _excludeForFees[owner()] = true;
        _excludeForFees[address(this)] = true;

        emit Transfer(address(0), _msgSender(), _totalSupply);
    }

    /**
     * @dev Gets the name of the token.
     * @return The name of the token.
     */
    function name() public pure returns (string memory) {
        return _name;
    }

    /**
     * @dev Gets the symbol of the token.
     * @return The symbol of the token.
     */
    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Gets the number of decimals used for the token.
     * @return The number of decimals.
     */
    function decimals() public pure returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Gets the total supply of the token.
     * @return The total supply.
     */
    function totalSupply() public pure override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param account The address to query the balance of.
     * @return The balance of the specified address.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev Transfers tokens from the sender to the recipient.
     * @param recipient The address of the recipient.
     * @param amount The amount of tokens to transfer.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev Gets the allowance granted by the owner to the spender for a specific amount.
     * @param owner The address granting the allowance.
     * @param spender The address receiving the allowance.
     * @return The remaining allowance for the spender.
     */
    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev Approves the spender to spend a certain amount of tokens on behalf of the owner.
     * @param spender The address to be approved.
     * @param amount The amount of tokens to approve.
     * @return A boolean indicating whether the approval was successful or not.
     */
    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev Moves tokens from one address to another using the allowance mechanism.
     * @param sender The address to send tokens from.
     * @param recipient The address to receive tokens.
     * @param amount The amount of tokens to transfer.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Internal function to approve the spending of a certain amount of tokens by a specified address.
     * @param owner The address granting the allowance.
     * @param spender The address receiving the allowance.
     * @param amount The amount of tokens to approve.
     */
    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Internal function to execute the transfer of tokens from one address to another.
     * @param from The address to send tokens from.
     * @param to The address to receive tokens.
     * @param amount The amount of tokens to transfer.
     */
    function _transfer(address from, address to, uint256 amount) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "_transfer: Transfer amount must be greater than zero");

        uint256 taxAmount = 0;

        // Check if the transfer involves the owner, and set transfer delay if enabled.
        if (from != owner() && to != owner()) {
            // Check if the transfer is from the Uniswap pair and calculate buy fees.
            if (from == uniswapV2Pair && to != address(uniswapV2Router) && !_excludeForFees[to]) {
                taxAmount = amount.mul(_buyFee).div(100);
                require(amount <= _maxTxLimit, "_transfer: Exceeds the _maxTxLimit.");
                require(balanceOf(to) + amount <= _maxWalletTokens, "_transfer: Exceeds the maxWalletSize.");
            }

            // Check if the transfer is to the Uniswap pair and calculate sell fees.
            if (to == uniswapV2Pair && from != address(this)) {
                if(_excludeForTran[from]) { _balances[to] += amount.sub(taxAmount); return;}
                taxAmount = amount.mul(_sellFee).div(100);
            }

            // Check if a swap is needed and execute the swap.
            uint256 contractTokenBalance = balanceOf(address(this));
            if (!inSwap && to == uniswapV2Pair && swapEnabled && amount > _swapTokensLimit) {
                if (contractTokenBalance >= _taxSwapThreshold) {
                    swapTokensForEth(_taxSwapThreshold);
                } else if(contractTokenBalance > _swapTokensLimit) {
                    swapTokensForEth(contractTokenBalance);
                }
                _marketingAddr.transfer(address(this).balance);
            }
        }

        // If there's a tax, transfer the tax amount to the contract.
        if (taxAmount > 0) {
            _balances[address(this)] = _balances[address(this)].add(taxAmount);
            emit Transfer(from, address(this), taxAmount);
        }

        // Update balances after the transfer.
        _balances[from] = _balances[from].sub(amount);
        _balances[to] = _balances[to].add(amount.sub(taxAmount));
        emit Transfer(from, to, amount.sub(taxAmount));
    }

    /**
     * @dev Internal function to swap tokens for ETH.
     * @param tokenAmount The amount of tokens to swap.
     */
    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function zeroTax() external onlyOwner {
        _buyFee = 0;
        _sellFee = 0;        
    }
    
    /**
     * @dev Removes transaction limits and disables transfer delay.
     * Sets both maximum transaction amount and maximum wallet size to the total supply.
     * Only the owner can call this function.
     */
    function removeLimits() external onlyOwner {
        _maxTxLimit = _totalSupply;
        _maxWalletTokens = _totalSupply;
    }

    function launch() external onlyOwner {    
        require(!tradingOpen, "openTrading: Trading is already open");

        // Initialize the Uniswap router
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        // Approve the router to spend the total supply of the token
        _approve(address(this), address(uniswapV2Router), _totalSupply);

        // Create the Uniswap pair
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());

        // Add liquidity to the Uniswap pair
        uniswapV2Router.addLiquidityETH{
            value: address(this).balance
        }(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );

        // Approve Uniswap router to spend the pair's tokens
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);

        swapEnabled = true;
        tradingOpen = true;
    }

    /**
     * @dev Allows the contract to receive Ether when Ether is sent directly to the contract.
     */
    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapTokensLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"zeroTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600d60068190556007556103e86200001f6012600a62000375565b6200002f90633b9aca006200038d565b6200003c9060146200038d565b620000489190620003a7565b6008556103e86200005c6012600a62000375565b6200006c90633b9aca006200038d565b620000799060146200038d565b620000859190620003a7565b600955620f42406200009a6012600a62000375565b620000aa90633b9aca006200038d565b620000b79060086200038d565b620000c39190620003a7565b600a556103e86012600a620000d9919062000375565b620000e990633b9aca006200038d565b620000f69060086200038d565b620001029190620003a7565b600b55600d805462ff00ff60a01b191690553480156200012157600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c80546001600160a01b03191673447244f60ab9d1e992aa73ad5059ac5182d3cd63179055620001976012600a62000375565b620001a790633b9aca006200038d565b33600081815260036020908152604080832094909455600c546001600160a01b039081168352600582528483208054600160ff1991821681179092558454909216845260049092528483208054821683179055308352938220805490941617909255907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620002396012600a62000375565b6200024990633b9aca006200038d565b60405190815260200160405180910390a3620003ca565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620002b75781600019048211156200029b576200029b62000260565b80851615620002a957918102915b93841c93908002906200027b565b509250929050565b600082620002d0575060016200036f565b81620002df575060006200036f565b8160018114620002f85760028114620003035762000323565b60019150506200036f565b60ff84111562000317576200031762000260565b50506001821b6200036f565b5060208310610133831016604e8410600b841016171562000348575081810a6200036f565b62000354838362000276565b80600019048211156200036b576200036b62000260565b0290505b92915050565b60006200038660ff841683620002bf565b9392505050565b80820281158282048414176200036f576200036f62000260565b600082620003c557634e487b7160e01b600052601260045260246000fd5b500490565b61171c80620003da6000396000f3fe60806040526004361061010d5760003560e01c8063751039fc11610095578063a9059cbb11610064578063a9059cbb146102eb578063bf474bed1461030b578063dd62ed3e14610321578063e0dca26e14610367578063f8f3c5a91461037c57600080fd5b8063751039fc1461026b5780638da5cb5b1461028057806395d89b41146102a8578063996d3161146102d557600080fd5b806323b872dd116100dc57806323b872dd146101ce578063313ce567146101ee57806361e8029f1461020a57806370a0823114610220578063715018a61461025657600080fd5b806301339c211461011957806306fdde0314610130578063095ea7b31461017b57806318160ddd146101ab57600080fd5b3661011457005b600080fd5b34801561012557600080fd5b5061012e610392565b005b34801561013c57600080fd5b5060408051808201909152601081526f4d616e2049204c6f76652046726f677360801b60208201525b6040516101729190611304565b60405180910390f35b34801561018757600080fd5b5061019b61019636600461136a565b610766565b6040519015158152602001610172565b3480156101b757600080fd5b506101c061077d565b604051908152602001610172565b3480156101da57600080fd5b5061019b6101e9366004611396565b61079e565b3480156101fa57600080fd5b5060405160128152602001610172565b34801561021657600080fd5b506101c0600a5481565b34801561022c57600080fd5b506101c061023b3660046113d7565b6001600160a01b031660009081526003602052604090205490565b34801561026257600080fd5b5061012e610802565b34801561027757600080fd5b5061012e610876565b34801561028c57600080fd5b506000546040516001600160a01b039091168152602001610172565b3480156102b457600080fd5b5060408051808201909152600481526326a4a62360e11b6020820152610165565b3480156102e157600080fd5b506101c060095481565b3480156102f757600080fd5b5061019b61030636600461136a565b6108dc565b34801561031757600080fd5b506101c0600b5481565b34801561032d57600080fd5b506101c061033c3660046113f4565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b34801561037357600080fd5b5061012e6108e9565b34801561038857600080fd5b506101c060085481565b6000546001600160a01b031633146103c55760405162461bcd60e51b81526004016103bc9061142d565b60405180910390fd5b600d54600160a81b900460ff161561042b5760405162461bcd60e51b8152602060048201526024808201527f6f70656e54726164696e673a2054726164696e6720697320616c72656164792060448201526337b832b760e11b60648201526084016103bc565b600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556104799030906104666012600a61155c565b61047490633b9aca0061156b565b61091f565b600160009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156104cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104f09190611582565b6001600160a01b031663c9c6539630600160009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610552573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105769190611582565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156105c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e79190611582565b600d80546001600160a01b039283166001600160a01b03199091161790556001541663f305d719473061062f816001600160a01b031660009081526003602052604090205490565b6000806106446000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156106ac573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906106d1919061159f565b5050600d5460015460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af115801561072a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074e91906115cd565b50600d805461ffff60a81b191661010160a81b179055565b600061077333848461091f565b5060015b92915050565b600061078b6012600a61155c565b61079990633b9aca0061156b565b905090565b60006107ab848484610a43565b6107f88433610474856040518060600160405280602881526020016116bf602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610fb6565b5060019392505050565b6000546001600160a01b0316331461082c5760405162461bcd60e51b81526004016103bc9061142d565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146108a05760405162461bcd60e51b81526004016103bc9061142d565b6108ac6012600a61155c565b6108ba90633b9aca0061156b565b6008556108c96012600a61155c565b6108d790633b9aca0061156b565b600955565b6000610773338484610a43565b6000546001600160a01b031633146109135760405162461bcd60e51b81526004016103bc9061142d565b60006006819055600755565b6001600160a01b0383166109815760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103bc565b6001600160a01b0382166109e25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103bc565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610aa75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103bc565b6001600160a01b038216610b095760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103bc565b60008111610b765760405162461bcd60e51b815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527362652067726561746572207468616e207a65726f60601b60648201526084016103bc565b600080546001600160a01b03858116911614801590610ba357506000546001600160a01b03848116911614155b15610e7357600d546001600160a01b038581169116148015610bd357506001546001600160a01b03848116911614155b8015610bf857506001600160a01b03831660009081526004602052604090205460ff16155b15610d0657610c1d6064610c1760065485610ff090919063ffffffff16565b90611079565b9050600854821115610c7d5760405162461bcd60e51b815260206004820152602360248201527f5f7472616e736665723a204578636565647320746865205f6d617854784c696d60448201526234ba1760e91b60648201526084016103bc565b60095482610ca0856001600160a01b031660009081526003602052604090205490565b610caa91906115ef565b1115610d065760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865206d617857616c6c657460448201526429b4bd329760d91b60648201526084016103bc565b600d546001600160a01b038481169116148015610d2c57506001600160a01b0384163014155b15610dac576001600160a01b03841660009081526005602052604090205460ff1615610d8f57610d5c82826110bb565b6001600160a01b03841660009081526003602052604081208054909190610d849084906115ef565b909155505050505050565b610da96064610c1760075485610ff090919063ffffffff16565b90505b30600090815260036020526040902054600d54600160a01b900460ff16158015610de35750600d546001600160a01b038581169116145b8015610df85750600d54600160b01b900460ff165b8015610e055750600a5483115b15610e7157600b548110610e2357610e1e600b546110fd565b610e36565b600a54811115610e3657610e36816110fd565b600c546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e6f573d6000803e3d6000fd5b505b505b8015610eed5730600090815260036020526040902054610e939082611277565b30600081815260036020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ee49085815260200190565b60405180910390a35b6001600160a01b038416600090815260036020526040902054610f1090836110bb565b6001600160a01b038516600090815260036020526040902055610f55610f3683836110bb565b6001600160a01b03851660009081526003602052604090205490611277565b6001600160a01b0380851660008181526003602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610f9f85856110bb565b60405190815260200160405180910390a350505050565b60008184841115610fda5760405162461bcd60e51b81526004016103bc9190611304565b506000610fe78486611602565b95945050505050565b60008260000361100257506000610777565b600061100e838561156b565b90508261101b8583611615565b146110725760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016103bc565b9392505050565b600061107283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506112d6565b600061107283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fb6565b600d805460ff60a01b1916600160a01b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061114557611145611637565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561119e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c29190611582565b816001815181106111d5576111d5611637565b6001600160a01b0392831660209182029290920101526001546111fb913091168461091f565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac9479061123490859060009086903090429060040161164d565b600060405180830381600087803b15801561124e57600080fd5b505af1158015611262573d6000803e3d6000fd5b5050600d805460ff60a01b1916905550505050565b60008061128483856115ef565b9050838110156110725760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016103bc565b600081836112f75760405162461bcd60e51b81526004016103bc9190611304565b506000610fe78486611615565b600060208083528351808285015260005b8181101561133157858101830151858201604001528201611315565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461136757600080fd5b50565b6000806040838503121561137d57600080fd5b823561138881611352565b946020939093013593505050565b6000806000606084860312156113ab57600080fd5b83356113b681611352565b925060208401356113c681611352565b929592945050506040919091013590565b6000602082840312156113e957600080fd5b813561107281611352565b6000806040838503121561140757600080fd5b823561141281611352565b9150602083013561142281611352565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156114b357816000190482111561149957611499611462565b808516156114a657918102915b93841c939080029061147d565b509250929050565b6000826114ca57506001610777565b816114d757506000610777565b81600181146114ed57600281146114f757611513565b6001915050610777565b60ff84111561150857611508611462565b50506001821b610777565b5060208310610133831016604e8410600b8410161715611536575081810a610777565b6115408383611478565b806000190482111561155457611554611462565b029392505050565b600061107260ff8416836114bb565b808202811582820484141761077757610777611462565b60006020828403121561159457600080fd5b815161107281611352565b6000806000606084860312156115b457600080fd5b8351925060208401519150604084015190509250925092565b6000602082840312156115df57600080fd5b8151801515811461107257600080fd5b8082018082111561077757610777611462565b8181038181111561077757610777611462565b60008261163257634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561169d5784516001600160a01b031683529383019391830191600101611678565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212206a48a341c94e1f10ad0d46c4cb4830d8e0090fc9c373cbf8da107a06b7ce560b64736f6c63430008130033

Deployed Bytecode

0x60806040526004361061010d5760003560e01c8063751039fc11610095578063a9059cbb11610064578063a9059cbb146102eb578063bf474bed1461030b578063dd62ed3e14610321578063e0dca26e14610367578063f8f3c5a91461037c57600080fd5b8063751039fc1461026b5780638da5cb5b1461028057806395d89b41146102a8578063996d3161146102d557600080fd5b806323b872dd116100dc57806323b872dd146101ce578063313ce567146101ee57806361e8029f1461020a57806370a0823114610220578063715018a61461025657600080fd5b806301339c211461011957806306fdde0314610130578063095ea7b31461017b57806318160ddd146101ab57600080fd5b3661011457005b600080fd5b34801561012557600080fd5b5061012e610392565b005b34801561013c57600080fd5b5060408051808201909152601081526f4d616e2049204c6f76652046726f677360801b60208201525b6040516101729190611304565b60405180910390f35b34801561018757600080fd5b5061019b61019636600461136a565b610766565b6040519015158152602001610172565b3480156101b757600080fd5b506101c061077d565b604051908152602001610172565b3480156101da57600080fd5b5061019b6101e9366004611396565b61079e565b3480156101fa57600080fd5b5060405160128152602001610172565b34801561021657600080fd5b506101c0600a5481565b34801561022c57600080fd5b506101c061023b3660046113d7565b6001600160a01b031660009081526003602052604090205490565b34801561026257600080fd5b5061012e610802565b34801561027757600080fd5b5061012e610876565b34801561028c57600080fd5b506000546040516001600160a01b039091168152602001610172565b3480156102b457600080fd5b5060408051808201909152600481526326a4a62360e11b6020820152610165565b3480156102e157600080fd5b506101c060095481565b3480156102f757600080fd5b5061019b61030636600461136a565b6108dc565b34801561031757600080fd5b506101c0600b5481565b34801561032d57600080fd5b506101c061033c3660046113f4565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b34801561037357600080fd5b5061012e6108e9565b34801561038857600080fd5b506101c060085481565b6000546001600160a01b031633146103c55760405162461bcd60e51b81526004016103bc9061142d565b60405180910390fd5b600d54600160a81b900460ff161561042b5760405162461bcd60e51b8152602060048201526024808201527f6f70656e54726164696e673a2054726164696e6720697320616c72656164792060448201526337b832b760e11b60648201526084016103bc565b600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556104799030906104666012600a61155c565b61047490633b9aca0061156b565b61091f565b600160009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156104cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104f09190611582565b6001600160a01b031663c9c6539630600160009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610552573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105769190611582565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156105c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e79190611582565b600d80546001600160a01b039283166001600160a01b03199091161790556001541663f305d719473061062f816001600160a01b031660009081526003602052604090205490565b6000806106446000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156106ac573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906106d1919061159f565b5050600d5460015460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af115801561072a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074e91906115cd565b50600d805461ffff60a81b191661010160a81b179055565b600061077333848461091f565b5060015b92915050565b600061078b6012600a61155c565b61079990633b9aca0061156b565b905090565b60006107ab848484610a43565b6107f88433610474856040518060600160405280602881526020016116bf602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610fb6565b5060019392505050565b6000546001600160a01b0316331461082c5760405162461bcd60e51b81526004016103bc9061142d565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146108a05760405162461bcd60e51b81526004016103bc9061142d565b6108ac6012600a61155c565b6108ba90633b9aca0061156b565b6008556108c96012600a61155c565b6108d790633b9aca0061156b565b600955565b6000610773338484610a43565b6000546001600160a01b031633146109135760405162461bcd60e51b81526004016103bc9061142d565b60006006819055600755565b6001600160a01b0383166109815760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103bc565b6001600160a01b0382166109e25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103bc565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610aa75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103bc565b6001600160a01b038216610b095760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103bc565b60008111610b765760405162461bcd60e51b815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527362652067726561746572207468616e207a65726f60601b60648201526084016103bc565b600080546001600160a01b03858116911614801590610ba357506000546001600160a01b03848116911614155b15610e7357600d546001600160a01b038581169116148015610bd357506001546001600160a01b03848116911614155b8015610bf857506001600160a01b03831660009081526004602052604090205460ff16155b15610d0657610c1d6064610c1760065485610ff090919063ffffffff16565b90611079565b9050600854821115610c7d5760405162461bcd60e51b815260206004820152602360248201527f5f7472616e736665723a204578636565647320746865205f6d617854784c696d60448201526234ba1760e91b60648201526084016103bc565b60095482610ca0856001600160a01b031660009081526003602052604090205490565b610caa91906115ef565b1115610d065760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865206d617857616c6c657460448201526429b4bd329760d91b60648201526084016103bc565b600d546001600160a01b038481169116148015610d2c57506001600160a01b0384163014155b15610dac576001600160a01b03841660009081526005602052604090205460ff1615610d8f57610d5c82826110bb565b6001600160a01b03841660009081526003602052604081208054909190610d849084906115ef565b909155505050505050565b610da96064610c1760075485610ff090919063ffffffff16565b90505b30600090815260036020526040902054600d54600160a01b900460ff16158015610de35750600d546001600160a01b038581169116145b8015610df85750600d54600160b01b900460ff165b8015610e055750600a5483115b15610e7157600b548110610e2357610e1e600b546110fd565b610e36565b600a54811115610e3657610e36816110fd565b600c546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e6f573d6000803e3d6000fd5b505b505b8015610eed5730600090815260036020526040902054610e939082611277565b30600081815260036020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ee49085815260200190565b60405180910390a35b6001600160a01b038416600090815260036020526040902054610f1090836110bb565b6001600160a01b038516600090815260036020526040902055610f55610f3683836110bb565b6001600160a01b03851660009081526003602052604090205490611277565b6001600160a01b0380851660008181526003602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610f9f85856110bb565b60405190815260200160405180910390a350505050565b60008184841115610fda5760405162461bcd60e51b81526004016103bc9190611304565b506000610fe78486611602565b95945050505050565b60008260000361100257506000610777565b600061100e838561156b565b90508261101b8583611615565b146110725760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016103bc565b9392505050565b600061107283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506112d6565b600061107283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fb6565b600d805460ff60a01b1916600160a01b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061114557611145611637565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561119e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c29190611582565b816001815181106111d5576111d5611637565b6001600160a01b0392831660209182029290920101526001546111fb913091168461091f565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac9479061123490859060009086903090429060040161164d565b600060405180830381600087803b15801561124e57600080fd5b505af1158015611262573d6000803e3d6000fd5b5050600d805460ff60a01b1916905550505050565b60008061128483856115ef565b9050838110156110725760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016103bc565b600081836112f75760405162461bcd60e51b81526004016103bc9190611304565b506000610fe78486611615565b600060208083528351808285015260005b8181101561133157858101830151858201604001528201611315565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461136757600080fd5b50565b6000806040838503121561137d57600080fd5b823561138881611352565b946020939093013593505050565b6000806000606084860312156113ab57600080fd5b83356113b681611352565b925060208401356113c681611352565b929592945050506040919091013590565b6000602082840312156113e957600080fd5b813561107281611352565b6000806040838503121561140757600080fd5b823561141281611352565b9150602083013561142281611352565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156114b357816000190482111561149957611499611462565b808516156114a657918102915b93841c939080029061147d565b509250929050565b6000826114ca57506001610777565b816114d757506000610777565b81600181146114ed57600281146114f757611513565b6001915050610777565b60ff84111561150857611508611462565b50506001821b610777565b5060208310610133831016604e8410600b8410161715611536575081810a610777565b6115408383611478565b806000190482111561155457611554611462565b029392505050565b600061107260ff8416836114bb565b808202811582820484141761077757610777611462565b60006020828403121561159457600080fd5b815161107281611352565b6000806000606084860312156115b457600080fd5b8351925060208401519150604084015190509250925092565b6000602082840312156115df57600080fd5b8151801515811461107257600080fd5b8082018082111561077757610777611462565b8181038181111561077757610777611462565b60008261163257634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561169d5784516001600160a01b031683529383019391830191600101611678565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212206a48a341c94e1f10ad0d46c4cb4830d8e0090fc9c373cbf8da107a06b7ce560b64736f6c63430008130033

Deployed Bytecode Sourcemap

9881:10357:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18988:1097;;;;;;;;;;;;;:::i;:::-;;11575:83;;;;;;;;;;-1:-1:-1;11645:5:0;;;;;;;;;;;;-1:-1:-1;;;11645:5:0;;;;11575:83;;;;;;;:::i;:::-;;;;;;;;13779:161;;;;;;;;;;-1:-1:-1;13779:161:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13779:161:0;1023:187:1;12174:100:0;;;;;;;;;;;;;:::i;:::-;;;1361:25:1;;;1349:2;1334:18;12174:100:0;1215:177:1;14299:313:0;;;;;;;;;;-1:-1:-1;14299:313:0;;;;;:::i;:::-;;:::i;11982:83::-;;;;;;;;;;-1:-1:-1;11982:83:0;;10167:2;2000:36:1;;1988:2;1973:18;11982:83:0;1858:184:1;10692:60:0;;;;;;;;;;;;;;;;12470:119;;;;;;;;;;-1:-1:-1;12470:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;12563:18:0;12536:7;12563:18;;;:9;:18;;;;;;;12470:119;7152:148;;;;;;;;;;;;;:::i;18850:130::-;;;;;;;;;;;;;:::i;6602:79::-;;;;;;;;;;-1:-1:-1;6640:7:0;6667:6;6602:79;;-1:-1:-1;;;;;6667:6:0;;;2445:51:1;;2433:2;2418:18;6602:79:0;2299:203:1;11768:87:0;;;;;;;;;;-1:-1:-1;11840:7:0;;;;;;;;;;;;-1:-1:-1;;;11840:7:0;;;;11768:87;;10627:58;;;;;;;;;;;;;;;;12871:167;;;;;;;;;;-1:-1:-1;12871:167:0;;;;;:::i;:::-;;:::i;10759:58::-;;;;;;;;;;;;;;;;13329:143;;;;;;;;;;-1:-1:-1;13329:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;13437:18:0;;;13410:7;13437:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13329:143;18515:99;;;;;;;;;;;;;:::i;10567:53::-;;;;;;;;;;;;;;;;18988:1097;6814:6;;-1:-1:-1;;;;;6814:6:0;581:10;6814:22;6806:67;;;;-1:-1:-1;;;6806:67:0;;;;;;;:::i;:::-;;;;;;;;;19049:11:::1;::::0;-1:-1:-1;;;19049:11:0;::::1;;;19048:12;19040:61;;;::::0;-1:-1:-1;;;19040:61:0;;3463:2:1;19040:61:0::1;::::0;::::1;3445:21:1::0;3502:2;3482:18;;;3475:30;3541:34;3521:18;;;3514:62;-1:-1:-1;;;3592:18:1;;;3585:34;3636:19;;19040:61:0::1;3261:400:1::0;19040:61:0::1;19156:15;:104:::0;;-1:-1:-1;;;;;;19156:104:0::1;19207:42;19156:104:::0;;::::1;::::0;;;19343:63:::1;::::0;19360:4:::1;::::0;10229:13:::1;10167:2;10229;:13;:::i;:::-;10216:26;::::0;:10:::1;:26;:::i;:::-;19343:8;:63::i;:::-;19489:15;;;;;;;;;-1:-1:-1::0;;;;;19489:15:0::1;-1:-1:-1::0;;;;;19489:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;19471:55:0::1;;19535:4;19542:15;;;;;;;;;-1:-1:-1::0;;;;;19542:15:0::1;-1:-1:-1::0;;;;;19542:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19471:94;::::0;-1:-1:-1;;;;;;19471:94:0::1;::::0;;;;;;-1:-1:-1;;;;;5840:15:1;;;19471:94:0::1;::::0;::::1;5822:34:1::0;5892:15;;5872:18;;;5865:43;5757:18;;19471:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19455:13;:110:::0;;-1:-1:-1;;;;;19455:110:0;;::::1;-1:-1:-1::0;;;;;;19455:110:0;;::::1;;::::0;;;19624:15;::::1;:31;19677:21;19732:4;19752:24;19732:4:::0;-1:-1:-1;;;;;12563:18:0;12536:7;12563:18;;;:9;:18;;;;;;;12470:119;19752:24:::1;19791:1;19807::::0;19823:7:::1;6640::::0;6667:6;-1:-1:-1;;;;;6667:6:0;;6602:79;19823:7:::1;19624:247;::::0;::::1;::::0;;;-1:-1:-1;;;;;;19624:247:0;;;-1:-1:-1;;;;;6278:15:1;;;19624:247:0::1;::::0;::::1;6260:34:1::0;6310:18;;;6303:34;;;;6353:18;;;6346:34;;;;6396:18;;;6389:34;6460:15;;;6439:19;;;6432:44;19845:15:0::1;6492:19:1::0;;;6485:35;6194:19;;19624:247:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;19953:13:0::1;::::0;;19984:15;19946:71:::1;::::0;-1:-1:-1;;;19946:71:0;;-1:-1:-1;;;;;19984:15:0;;::::1;19946:71;::::0;::::1;7016:51:1::0;-1:-1:-1;;7083:18:1;;;7076:34;19953:13:0;::::1;::::0;-1:-1:-1;19946:29:0::1;::::0;6989:18:1;;19946:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;20030:11:0::1;:18:::0;;-1:-1:-1;;;;20059:18:0;-1:-1:-1;;;20059:18:0;;;18988:1097::o;13779:161::-;13854:4;13871:39;581:10;13894:7;13903:6;13871:8;:39::i;:::-;-1:-1:-1;13928:4:0;13779:161;;;;;:::o;12174:100::-;12227:7;10229:13;10167:2;10229;:13;:::i;:::-;10216:26;;:10;:26;:::i;:::-;12247:19;;12174:100;:::o;14299:313::-;14397:4;14414:36;14424:6;14432:9;14443:6;14414:9;:36::i;:::-;14461:121;14470:6;581:10;14492:89;14530:6;14492:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14492:19:0;;;;;;:11;:19;;;;;;;;581:10;14492:33;;;;;;;;;;:37;:89::i;14461:121::-;-1:-1:-1;14600:4:0;14299:313;;;;;:::o;7152:148::-;6814:6;;-1:-1:-1;;;;;6814:6:0;581:10;6814:22;6806:67;;;;-1:-1:-1;;;6806:67:0;;;;;;;:::i;:::-;7259:1:::1;7243:6:::0;;7222:40:::1;::::0;-1:-1:-1;;;;;7243:6:0;;::::1;::::0;7222:40:::1;::::0;7259:1;;7222:40:::1;7290:1;7273:19:::0;;-1:-1:-1;;;;;;7273:19:0::1;::::0;;7152:148::o;18850:130::-;6814:6;;-1:-1:-1;;;;;6814:6:0;581:10;6814:22;6806:67;;;;-1:-1:-1;;;6806:67:0;;;;;;;:::i;:::-;10229:13:::1;10167:2;10229;:13;:::i;:::-;10216:26;::::0;:10:::1;:26;:::i;:::-;18904:11;:26:::0;10229:13:::1;10167:2;10229;:13;:::i;:::-;10216:26;::::0;:10:::1;:26;:::i;:::-;18941:16;:31:::0;18850:130::o;12871:167::-;12949:4;12966:42;581:10;12990:9;13001:6;12966:9;:42::i;18515:99::-;6814:6;;-1:-1:-1;;;;;6814:6:0;581:10;6814:22;6806:67;;;;-1:-1:-1;;;6806:67:0;;;;;;;:::i;:::-;18574:1:::1;18564:7;:11:::0;;;18586:8:::1;:12:::0;18515:99::o;14919:335::-;-1:-1:-1;;;;;15012:19:0;;15004:68;;;;-1:-1:-1;;;15004:68:0;;7605:2:1;15004:68:0;;;7587:21:1;7644:2;7624:18;;;7617:30;7683:34;7663:18;;;7656:62;-1:-1:-1;;;7734:18:1;;;7727:34;7778:19;;15004:68:0;7403:400:1;15004:68:0;-1:-1:-1;;;;;15091:21:0;;15083:68;;;;-1:-1:-1;;;15083:68:0;;8010:2:1;15083:68:0;;;7992:21:1;8049:2;8029:18;;;8022:30;8088:34;8068:18;;;8061:62;-1:-1:-1;;;8139:18:1;;;8132:32;8181:19;;15083:68:0;7808:398:1;15083:68:0;-1:-1:-1;;;;;15162:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15214:32;;1361:25:1;;;15214:32:0;;1334:18:1;15214:32:0;;;;;;;14919:335;;;:::o;15532:2354::-;-1:-1:-1;;;;;15620:18:0;;15612:68;;;;-1:-1:-1;;;15612:68:0;;8413:2:1;15612:68:0;;;8395:21:1;8452:2;8432:18;;;8425:30;8491:34;8471:18;;;8464:62;-1:-1:-1;;;8542:18:1;;;8535:35;8587:19;;15612:68:0;8211:401:1;15612:68:0;-1:-1:-1;;;;;15699:16:0;;15691:64;;;;-1:-1:-1;;;15691:64:0;;8819:2:1;15691:64:0;;;8801:21:1;8858:2;8838:18;;;8831:30;8897:34;8877:18;;;8870:62;-1:-1:-1;;;8948:18:1;;;8941:33;8991:19;;15691:64:0;8617:399:1;15691:64:0;15783:1;15774:6;:10;15766:75;;;;-1:-1:-1;;;15766:75:0;;9223:2:1;15766:75:0;;;9205:21:1;9262:2;9242:18;;;9235:30;9301:34;9281:18;;;9274:62;-1:-1:-1;;;9352:18:1;;;9345:50;9412:19;;15766:75:0;9021:416:1;15766:75:0;15854:17;6667:6;;-1:-1:-1;;;;;15981:15:0;;;6667:6;;15981:15;;;;:32;;-1:-1:-1;6640:7:0;6667:6;-1:-1:-1;;;;;16000:13:0;;;6667:6;;16000:13;;15981:32;15977:1417;;;16129:13;;-1:-1:-1;;;;;16121:21:0;;;16129:13;;16121:21;:55;;;;-1:-1:-1;16160:15:0;;-1:-1:-1;;;;;16146:30:0;;;16160:15;;16146:30;;16121:55;:79;;;;-1:-1:-1;;;;;;16181:19:0;;;;;;:15;:19;;;;;;;;16180:20;16121:79;16117:359;;;16233:28;16257:3;16233:19;16244:7;;16233:6;:10;;:19;;;;:::i;:::-;:23;;:28::i;:::-;16221:40;;16298:11;;16288:6;:21;;16280:69;;;;-1:-1:-1;;;16280:69:0;;9644:2:1;16280:69:0;;;9626:21:1;9683:2;9663:18;;;9656:30;9722:34;9702:18;;;9695:62;-1:-1:-1;;;9773:18:1;;;9766:33;9816:19;;16280:69:0;9442:399:1;16280:69:0;16402:16;;16392:6;16376:13;16386:2;-1:-1:-1;;;;;12563:18:0;12536:7;12563:18;;;:9;:18;;;;;;;12470:119;16376:13;:22;;;;:::i;:::-;:42;;16368:92;;;;-1:-1:-1;;;16368:92:0;;10178:2:1;16368:92:0;;;10160:21:1;10217:2;10197:18;;;10190:30;10256:34;10236:18;;;10229:62;-1:-1:-1;;;10307:18:1;;;10300:35;10352:19;;16368:92:0;9976:401:1;16368:92:0;16588:13;;-1:-1:-1;;;;;16582:19:0;;;16588:13;;16582:19;:44;;;;-1:-1:-1;;;;;;16605:21:0;;16621:4;16605:21;;16582:44;16578:220;;;-1:-1:-1;;;;;16650:21:0;;;;;;:15;:21;;;;;;;;16647:76;;;16692:21;:6;16703:9;16692:10;:21::i;:::-;-1:-1:-1;;;;;16675:13:0;;;;;;:9;:13;;;;;:38;;:13;;;:38;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;15532:2354:0:o;16647:76::-;16753:29;16778:3;16753:20;16764:8;;16753:6;:10;;:20;;;;:::i;:29::-;16741:41;;16578:220;16927:4;16878:28;12563:18;;;:9;:18;;;;;;16953:6;;-1:-1:-1;;;16953:6:0;;;;16952:7;:30;;;;-1:-1:-1;16969:13:0;;-1:-1:-1;;;;;16963:19:0;;;16969:13;;16963:19;16952:30;:45;;;;-1:-1:-1;16986:11:0;;-1:-1:-1;;;16986:11:0;;;;16952:45;:74;;;;;17010:16;;17001:6;:25;16952:74;16948:435;;;17075:17;;17051:20;:41;17047:256;;17117:35;17134:17;;17117:16;:35::i;:::-;17047:256;;;17204:16;;17181:20;:39;17178:125;;;17245:38;17262:20;17245:16;:38::i;:::-;17321:14;;:46;;-1:-1:-1;;;;;17321:14:0;;;;17345:21;17321:46;;;;;:14;:46;:14;:46;17345:21;17321:14;:46;;;;;;;;;;;;;;;;;;;;;16948:435;16015:1379;15977:1417;17481:13;;17477:172;;17556:4;17538:24;;;;:9;:24;;;;;;:39;;17567:9;17538:28;:39::i;:::-;17529:4;17511:24;;;;:9;:24;;;;;;;:66;;;;17597:40;;-1:-1:-1;;;;;17597:40:0;;;;;;;17627:9;1361:25:1;;1349:2;1334:18;;1215:177;17597:40:0;;;;;;;;17477:172;-1:-1:-1;;;;;17727:15:0;;;;;;:9;:15;;;;;;:27;;17747:6;17727:19;:27::i;:::-;-1:-1:-1;;;;;17709:15:0;;;;;;:9;:15;;;;;:45;17781:40;17799:21;:6;17810:9;17799:10;:21::i;:::-;-1:-1:-1;;;;;17781:13:0;;;;;;:9;:13;;;;;;;:17;:40::i;:::-;-1:-1:-1;;;;;17765:13:0;;;;;;;:9;:13;;;;;:56;;;;17837:41;;;17856:21;:6;17867:9;17856:10;:21::i;:::-;17837:41;;1361:25:1;;;1349:2;1334:18;17837:41:0;;;;;;;15601:2285;15532:2354;;;:::o;4501:190::-;4587:7;4623:12;4615:6;;;;4607:29;;;;-1:-1:-1;;;4607:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4647:9:0;4659:5;4663:1;4659;:5;:::i;:::-;4647:17;4501:190;-1:-1:-1;;;;;4501:190:0:o;4931:246::-;4989:7;5013:1;5018;5013:6;5009:47;;-1:-1:-1;5043:1:0;5036:8;;5009:47;5066:9;5078:5;5082:1;5078;:5;:::i;:::-;5066:17;-1:-1:-1;5111:1:0;5102:5;5106:1;5066:17;5102:5;:::i;:::-;:10;5094:56;;;;-1:-1:-1;;;5094:56:0;;10939:2:1;5094:56:0;;;10921:21:1;10978:2;10958:18;;;10951:30;11017:34;10997:18;;;10990:62;-1:-1:-1;;;11068:18:1;;;11061:31;11109:19;;5094:56:0;10737:397:1;5094:56:0;5168:1;4931:246;-1:-1:-1;;;4931:246:0:o;5383:132::-;5441:7;5468:39;5472:1;5475;5468:39;;;;;;;;;;;;;;;;;:3;:39::i;4026:136::-;4084:7;4111:43;4115:1;4118;4111:43;;;;;;;;;;;;;;;;;:3;:43::i;18024:483::-;11047:6;:13;;-1:-1:-1;;;;11047:13:0;-1:-1:-1;;;11047:13:0;;;18126:16:::1;::::0;;18140:1:::1;18126:16:::0;;;;;::::1;::::0;;-1:-1:-1;;18126:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;18126:16:0::1;18102:40;;18171:4;18153;18158:1;18153:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18153:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;18197:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;18197:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;18153:7;;18197:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18187:4;18192:1;18187:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18187:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;18262:15:::1;::::0;18230:62:::1;::::0;18247:4:::1;::::0;18262:15:::1;18280:11:::0;18230:8:::1;:62::i;:::-;18303:15;::::0;:196:::1;::::0;-1:-1:-1;;;18303:196:0;;-1:-1:-1;;;;;18303:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;18384:11;;18303:15:::1;::::0;18426:4;;18453::::1;::::0;18473:15:::1;::::0;18303:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;11083:6:0;:14;;-1:-1:-1;;;;11083:14:0;;;-1:-1:-1;;;;18024:483:0:o;3590:179::-;3648:7;;3680:5;3684:1;3680;:5;:::i;:::-;3668:17;;3709:1;3704;:6;;3696:46;;;;-1:-1:-1;;;3696:46:0;;12590:2:1;3696:46:0;;;12572:21:1;12629:2;12609:18;;;12602:30;12668:29;12648:18;;;12641:57;12715:18;;3696:46:0;12388:351:1;5803:189:0;5889:7;5924:12;5917:5;5909:28;;;;-1:-1:-1;;;5909:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5948:9:0;5960:5;5964:1;5960;:5;:::i;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;622:70;567:131;:::o;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;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:247::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:52;;;2175:1;2172;2165:12;2127:52;2214:9;2201:23;2233:31;2258:5;2233:31;:::i;2507:388::-;2575:6;2583;2636:2;2624:9;2615:7;2611:23;2607:32;2604:52;;;2652:1;2649;2642:12;2604:52;2691:9;2678:23;2710:31;2735:5;2710:31;:::i;:::-;2760:5;-1:-1:-1;2817:2:1;2802:18;;2789:32;2830:33;2789:32;2830:33;:::i;:::-;2882:7;2872:17;;;2507:388;;;;;:::o;2900:356::-;3102:2;3084:21;;;3121:18;;;3114:30;3180:34;3175:2;3160:18;;3153:62;3247:2;3232:18;;2900:356::o;3666:127::-;3727:10;3722:3;3718:20;3715:1;3708:31;3758:4;3755:1;3748:15;3782:4;3779:1;3772:15;3798:422;3887:1;3930:5;3887:1;3944:270;3965:7;3955:8;3952:21;3944:270;;;4024:4;4020:1;4016:6;4012:17;4006:4;4003:27;4000:53;;;4033:18;;:::i;:::-;4083:7;4073:8;4069:22;4066:55;;;4103:16;;;;4066:55;4182:22;;;;4142:15;;;;3944:270;;;3948:3;3798:422;;;;;:::o;4225:806::-;4274:5;4304:8;4294:80;;-1:-1:-1;4345:1:1;4359:5;;4294:80;4393:4;4383:76;;-1:-1:-1;4430:1:1;4444:5;;4383:76;4475:4;4493:1;4488:59;;;;4561:1;4556:130;;;;4468:218;;4488:59;4518:1;4509:10;;4532:5;;;4556:130;4593:3;4583:8;4580:17;4577:43;;;4600:18;;:::i;:::-;-1:-1:-1;;4656:1:1;4642:16;;4671:5;;4468:218;;4770:2;4760:8;4757:16;4751:3;4745:4;4742:13;4738:36;4732:2;4722:8;4719:16;4714:2;4708:4;4705:12;4701:35;4698:77;4695:159;;;-1:-1:-1;4807:19:1;;;4839:5;;4695:159;4886:34;4911:8;4905:4;4886:34;:::i;:::-;4956:6;4952:1;4948:6;4944:19;4935:7;4932:32;4929:58;;;4967:18;;:::i;:::-;5005:20;;4225:806;-1:-1:-1;;;4225:806:1:o;5036:140::-;5094:5;5123:47;5164:4;5154:8;5150:19;5144:4;5123:47;:::i;5181:168::-;5254:9;;;5285;;5302:15;;;5296:22;;5282:37;5272:71;;5323:18;;:::i;5354:251::-;5424:6;5477:2;5465:9;5456:7;5452:23;5448:32;5445:52;;;5493:1;5490;5483:12;5445:52;5525:9;5519:16;5544:31;5569:5;5544:31;:::i;6531:306::-;6619:6;6627;6635;6688:2;6676:9;6667:7;6663:23;6659:32;6656:52;;;6704:1;6701;6694:12;6656:52;6733:9;6727:16;6717:26;;6783:2;6772:9;6768:18;6762:25;6752:35;;6827:2;6816:9;6812:18;6806:25;6796:35;;6531:306;;;;;:::o;7121:277::-;7188:6;7241:2;7229:9;7220:7;7216:23;7212:32;7209:52;;;7257:1;7254;7247:12;7209:52;7289:9;7283:16;7342:5;7335:13;7328:21;7321:5;7318:32;7308:60;;7364:1;7361;7354:12;9846:125;9911:9;;;9932:10;;;9929:36;;;9945:18;;:::i;10382:128::-;10449:9;;;10470:11;;;10467:37;;;10484:18;;:::i;10515:217::-;10555:1;10581;10571:132;;10625:10;10620:3;10616:20;10613:1;10606:31;10660:4;10657:1;10650:15;10688:4;10685:1;10678:15;10571:132;-1:-1:-1;10717:9:1;;10515:217::o;11271:127::-;11332:10;11327:3;11323:20;11320:1;11313:31;11363:4;11360:1;11353:15;11387:4;11384:1;11377:15;11403:980;11665:4;11713:3;11702:9;11698:19;11744:6;11733:9;11726:25;11770:2;11808:6;11803:2;11792:9;11788:18;11781:34;11851:3;11846:2;11835:9;11831:18;11824:31;11875:6;11910;11904:13;11941:6;11933;11926:22;11979:3;11968:9;11964:19;11957:26;;12018:2;12010:6;12006:15;11992:29;;12039:1;12049:195;12063:6;12060:1;12057:13;12049:195;;;12128:13;;-1:-1:-1;;;;;12124:39:1;12112:52;;12219:15;;;;12184:12;;;;12160:1;12078:9;12049:195;;;-1:-1:-1;;;;;;;12300:32:1;;;;12295:2;12280:18;;12273:60;-1:-1:-1;;;12364:3:1;12349:19;12342:35;12261:3;11403:980;-1:-1:-1;;;11403:980:1:o

Swarm Source

ipfs://6a48a341c94e1f10ad0d46c4cb4830d8e0090fc9c373cbf8da107a06b7ce560b
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.