ETH Price: $2,476.01 (-8.20%)

Token

PEPE 2ND CHANCE (PEPE2ND)
 

Overview

Max Total Supply

500,000,000 PEPE2ND

Holders

5

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
8,797,408.817730419 PEPE2ND

Value
$0.00
0xf3ec0a1e055093f2253e6e18b54d90891fc790c9
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:
PEPE2NDCHANCE

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-22
*/

/**
PEPE 2ND CHANCE (PEPE2ND) is a vibrant and community-driven meme coin built on the Ethereum network. 
Inspired by the iconic Pepe the Frog meme, PEPE2ND aims to provide crypto enthusiasts 
with an opportunity to participate in a fun and engaging token ecosystem while also seeking to support charitable causes.

As a meme coin, PEPE2ND embraces the playful nature of the cryptocurrency space, 
encouraging users to engage in meme creation, share humor, and foster a lively community. 
The token's primary objective is to create a sense of togetherness and enjoyment among its holders, promoting a positive and inclusive atmosphere.

Built on the Ethereum network, PEPE2ND leverages the security, transparency, 
and decentralization features of the blockchain. Its smart contract ensures fairness, 
trust, and immutability of transactions, giving users peace of mind when participating in the PEPE2ND ecosystem.

PEPE2ND also holds a strong philanthropic component. 
A percentage of each transaction is allocated to a charitable wallet, 
dedicated to supporting various causes, such as environmental conservation, social initiatives, 
or educational programs. By holding and transacting with PEPE2ND, 
community members actively contribute to making a positive impact in the world.

Telegram: https://t.me/pepe2ndchance

Twitter: https://twitter.com/pepecoineth

Website: https://pepe.vip

// SPDX-License-Identifier: MIT

/**
**/
pragma solidity 0.8.20;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

library SafeMath {
    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) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;
    }

    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;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    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;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

contract PEPE2NDCHANCE is Context, IERC20, Ownable {
    using SafeMath for uint256;
    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) private _isExcludedFromFee;
    mapping (address => bool) private bots;
    address payable private _taxWallet;
    uint256 firstBlock;

    uint256 private _initialBuyTax=0;
    uint256 private _initialSellTax=0;
    uint256 private _finalBuyTax=0;
    uint256 private _finalSellTax=0;
    uint256 private _reduceBuyTaxAt=0;
    uint256 private _reduceSellTaxAt=0;
    uint256 private _preventSwapBefore=5;
    uint256 private _buyCount=0;

    uint8 private constant _decimals = 9;
    uint256 private constant _tTotal = 500000000 * 10**_decimals;
    string private constant _name = unicode"PEPE 2ND CHANCE";
    string private constant _symbol = unicode"PEPE2ND";
    uint256 public _maxTxAmount = 9000000 * 10**_decimals;
    uint256 public _maxWalletSize = 9000000 * 10**_decimals;
    uint256 public _taxSwapThreshold= 5000000 * 10**_decimals;
    uint256 public _maxTaxSwap= 5000000 * 10**_decimals;

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

    event MaxTxAmountUpdated(uint _maxTxAmount);
    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor () {
        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(uniswapV2Router), _tTotal);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());

        _taxWallet = payable(_msgSender());
        _balances[_msgSender()] = _tTotal;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_taxWallet] = true;

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

    function name() public pure returns (string memory) {
        return _name;
    }

    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    function decimals() public pure returns (uint8) {
        return _decimals;
    }

    function totalSupply() public pure override returns (uint256) {
        return _tTotal;
    }

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

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    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;
    }

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

    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 amount must be greater than zero");
        uint256 taxAmount=0;
        if (from != owner() && to != owner()) {
            require(!bots[from] && !bots[to]);
            taxAmount = amount.mul((_buyCount>_reduceBuyTaxAt)?_finalBuyTax:_initialBuyTax).div(100);

            if (from == uniswapV2Pair && to != address(uniswapV2Router) && ! _isExcludedFromFee[to] ) {
                require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount.");
                require(balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize.");

                if (firstBlock + 1  > block.number) {
                    require(!isContract(to));
                }
                _buyCount++;
            }

            if (to != uniswapV2Pair && ! _isExcludedFromFee[to]) {
                require(balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize.");
            }

            if(to == uniswapV2Pair && from!= address(this) ){
                taxAmount = amount.mul((_buyCount>_reduceSellTaxAt)?_finalSellTax:_initialSellTax).div(100);
            }

            uint256 contractTokenBalance = balanceOf(address(this));
            if (!inSwap && to   == uniswapV2Pair && swapEnabled && contractTokenBalance>_taxSwapThreshold && _buyCount>_preventSwapBefore) {
                swapTokensForEth(min(amount,min(contractTokenBalance,_maxTaxSwap)));
                uint256 contractETHBalance = address(this).balance;
                if(contractETHBalance > 0) {
                    sendETHToFee(address(this).balance);
                }
            }
        }

        if(taxAmount>0){
          _balances[address(this)]=_balances[address(this)].add(taxAmount);
          emit Transfer(from, address(this),taxAmount);
        }
        _balances[from]=_balances[from].sub(amount);
        _balances[to]=_balances[to].add(amount.sub(taxAmount));
        emit Transfer(from, to, amount.sub(taxAmount));
    }


    function min(uint256 a, uint256 b) private pure returns (uint256){
      return (a>b)?b:a;
    }

    function isContract(address account) private view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    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 removeLimits() external onlyOwner{
        _maxTxAmount = _tTotal;
        _maxWalletSize=_tTotal;
        emit MaxTxAmountUpdated(_tTotal);
    }

    function sendETHToFee(uint256 amount) private {
        _taxWallet.transfer(amount);
    }

    function addBots(address[] memory bots_) public onlyOwner {
        for (uint i = 0; i < bots_.length; i++) {
            bots[bots_[i]] = true;
        }
    }

    function delBots(address[] memory notbot) public onlyOwner {
      for (uint i = 0; i < notbot.length; i++) {
          bots[notbot[i]] = false;
      }
    }

    function isBot(address a) public view returns (bool){
      return bots[a];
    }

    function openTrading() external onlyOwner() {
        require(!tradingOpen,"trading is already open");
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp);
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
        swapEnabled = true;
        tradingOpen = true;
        firstBlock = block.number;
    }

    
    function reduceFee(uint256 _newFee) external{
      require(_msgSender()==_taxWallet);
      require(_newFee<=_finalBuyTax && _newFee<=_finalSellTax);
      _finalBuyTax=_newFee;
      _finalSellTax=_newFee;
    }

    receive() external payable {}

    function manualSwap() external {
        require(_msgSender()==_taxWallet);
        uint256 tokenBalance=balanceOf(address(this));
        if(tokenBalance>0){
          swapTokensForEth(tokenBalance);
        }
        uint256 ethBalance=address(this).balance;
        if(ethBalance>0){
          sendETHToFee(ethBalance);
        }
    }
}

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":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","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":"_maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","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":"bots_","type":"address[]"}],"name":"addBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address[]","name":"notbot","type":"address[]"}],"name":"delBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFee","type":"uint256"}],"name":"reduceFee","outputs":[],"stateMutability":"nonpayable","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"},{"stateMutability":"payable","type":"receive"}]

60806040525f6007555f6008555f6009555f600a555f600b555f600c556005600d555f600e556009600a6200003591906200064b565b62000044906289544062000662565b600f55620000556009600a6200064b565b62000064906289544062000662565b601055620000756009600a6200064b565b6200008490624c4b4062000662565b601155620000956009600a6200064b565b620000a490624c4b4062000662565b6012556014805461ffff60a81b19169055348015620000c1575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811790915562000156903090620001406009600a6200064b565b6200015090631dcd650062000662565b62000411565b60135f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001cd91906200067c565b6001600160a01b031663c9c653963060135f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200022d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200025391906200067c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156200029e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002c491906200067c565b601480546001600160a01b0319166001600160a01b0392909216919091179055620002ec3390565b600580546001600160a01b0319166001600160a01b03929092169190911790556200031a6009600a6200064b565b6200032a90631dcd650062000662565b335f908152600160208190526040822092909255600390620003535f546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff199687161790553081526003909352818320805485166001908117909155600554909116835291208054909216179055620003b13390565b6001600160a01b03165f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620003ea6009600a6200064b565b620003fa90631dcd650062000662565b60405190815260200160405180910390a3620006a4565b6001600160a01b038316620004795760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620004dc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000470565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200059057815f19048211156200057457620005746200053c565b808516156200058257918102915b93841c939080029062000555565b509250929050565b5f82620005a85750600162000645565b81620005b657505f62000645565b8160018114620005cf5760028114620005da57620005fa565b600191505062000645565b60ff841115620005ee57620005ee6200053c565b50506001821b62000645565b5060208310610133831016604e8410600b84101617156200061f575081810a62000645565b6200062b838362000550565b805f19048211156200064157620006416200053c565b0290505b92915050565b5f6200065b60ff84168362000598565b9392505050565b80820281158282048414176200064557620006456200053c565b5f602082840312156200068d575f80fd5b81516001600160a01b03811681146200065b575f80fd5b61195c80620006b25f395ff3fe608060405260043610610134575f3560e01c8063751039fc116100a8578063a9059cbb1161006d578063a9059cbb1461036f578063bf474bed1461038e578063c9567bf9146103a3578063d34628cc146103b7578063dd62ed3e146103d6578063ec1f3f631461041a575f80fd5b8063751039fc146102dc5780637d1db4a5146102f05780638da5cb5b146103055780638f9a55c01461032b57806395d89b4114610340575f80fd5b8063313ce567116100f9578063313ce5671461020d57806331c2d847146102285780633bbac5791461024957806351bc3c851461028057806370a0823114610294578063715018a6146102c8575f80fd5b806306fdde031461013f578063095ea7b3146101885780630faee56f146101b757806318160ddd146101da57806323b872dd146101ee575f80fd5b3661013b57005b5f80fd5b34801561014a575f80fd5b5060408051808201909152600f81526e5045504520324e44204348414e434560881b60208201525b60405161017f9190611454565b60405180910390f35b348015610193575f80fd5b506101a76101a23660046114c6565b610439565b604051901515815260200161017f565b3480156101c2575f80fd5b506101cc60125481565b60405190815260200161017f565b3480156101e5575f80fd5b506101cc61044f565b3480156101f9575f80fd5b506101a76102083660046114f0565b61046f565b348015610218575f80fd5b506040516009815260200161017f565b348015610233575f80fd5b50610247610242366004611542565b6104d6565b005b348015610254575f80fd5b506101a7610263366004611602565b6001600160a01b03165f9081526004602052604090205460ff1690565b34801561028b575f80fd5b50610247610570565b34801561029f575f80fd5b506101cc6102ae366004611602565b6001600160a01b03165f9081526001602052604090205490565b3480156102d3575f80fd5b506102476105bd565b3480156102e7575f80fd5b5061024761062e565b3480156102fb575f80fd5b506101cc600f5481565b348015610310575f80fd5b505f546040516001600160a01b03909116815260200161017f565b348015610336575f80fd5b506101cc60105481565b34801561034b575f80fd5b50604080518082019091526007815266141154114c939160ca1b6020820152610172565b34801561037a575f80fd5b506101a76103893660046114c6565b6106df565b348015610399575f80fd5b506101cc60115481565b3480156103ae575f80fd5b506102476106eb565b3480156103c2575f80fd5b506102476103d1366004611542565b6108d4565b3480156103e1575f80fd5b506101cc6103f036600461161d565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b348015610425575f80fd5b50610247610434366004611654565b610962565b5f6104453384846109a7565b5060015b92915050565b5f61045c6009600a61175f565b61046a90631dcd650061176d565b905090565b5f61047b848484610aca565b6104cc84336104c7856040518060600160405280602881526020016118ff602891396001600160a01b038a165f90815260026020908152604080832033845290915290205491906110d0565b6109a7565b5060019392505050565b5f546001600160a01b031633146105085760405162461bcd60e51b81526004016104ff90611784565b60405180910390fd5b5f5b815181101561056c575f60045f848481518110610529576105296117b9565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905580610564816117cd565b91505061050a565b5050565b6005546001600160a01b0316336001600160a01b03161461058f575f80fd5b305f9081526001602052604090205480156105ad576105ad81611108565b47801561056c5761056c81611278565b5f546001600160a01b031633146105e65760405162461bcd60e51b81526004016104ff90611784565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146106575760405162461bcd60e51b81526004016104ff90611784565b6106636009600a61175f565b61067190631dcd650061176d565b600f556106806009600a61175f565b61068e90631dcd650061176d565b6010557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6106be6009600a61175f565b6106cc90631dcd650061176d565b60405190815260200160405180910390a1565b5f610445338484610aca565b5f546001600160a01b031633146107145760405162461bcd60e51b81526004016104ff90611784565b601454600160a01b900460ff161561076e5760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016104ff565b6013546001600160a01b031663f305d719473061079f816001600160a01b03165f9081526001602052604090205490565b5f806107b25f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610818573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061083d91906117e5565b505060145460135460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610892573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108b69190611810565b506014805462ff00ff60a01b19166201000160a01b17905543600655565b5f546001600160a01b031633146108fd5760405162461bcd60e51b81526004016104ff90611784565b5f5b815181101561056c57600160045f84848151811061091f5761091f6117b9565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790558061095a816117cd565b9150506108ff565b6005546001600160a01b0316336001600160a01b031614610981575f80fd5b60095481111580156109955750600a548111155b61099d575f80fd5b6009819055600a55565b6001600160a01b038316610a095760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104ff565b6001600160a01b038216610a6a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104ff565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b2e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104ff565b6001600160a01b038216610b905760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104ff565b5f8111610bf15760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104ff565b5f80546001600160a01b03858116911614801590610c1c57505f546001600160a01b03848116911614155b15610f93576001600160a01b0384165f9081526004602052604090205460ff16158015610c6157506001600160a01b0383165f9081526004602052604090205460ff16155b610c69575f80fd5b610c956064610c8f600b54600e5411610c8457600754610c88565b6009545b85906112af565b90611334565b6014549091506001600160a01b038581169116148015610cc357506013546001600160a01b03848116911614155b8015610ce757506001600160a01b0383165f9081526003602052604090205460ff16155b15610dee57600f54821115610d3e5760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016104ff565b60105482610d60856001600160a01b03165f9081526001602052604090205490565b610d6a919061182f565b1115610db85760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104ff565b436006546001610dc8919061182f565b1115610dd957823b15610dd9575f80fd5b600e8054905f610de8836117cd565b91905055505b6014546001600160a01b03848116911614801590610e2457506001600160a01b0383165f9081526003602052604090205460ff16155b15610ea35760105482610e4b856001600160a01b03165f9081526001602052604090205490565b610e55919061182f565b1115610ea35760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104ff565b6014546001600160a01b038481169116148015610ec957506001600160a01b0384163014155b15610ef657610ef36064610c8f600c54600e5411610ee957600854610c88565b600a5485906112af565b90505b305f90815260016020526040902054601454600160a81b900460ff16158015610f2c57506014546001600160a01b038581169116145b8015610f415750601454600160b01b900460ff165b8015610f4e575060115481115b8015610f5d5750600d54600e54115b15610f9157610f7f610f7a84610f7584601254611375565b611375565b611108565b478015610f8f57610f8f47611278565b505b505b801561100b57305f90815260016020526040902054610fb29082611389565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110029085815260200190565b60405180910390a35b6001600160a01b0384165f9081526001602052604090205461102d90836113e7565b6001600160a01b0385165f9081526001602052604090205561107061105283836113e7565b6001600160a01b0385165f9081526001602052604090205490611389565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6110b985856113e7565b60405190815260200160405180910390a350505050565b5f81848411156110f35760405162461bcd60e51b81526004016104ff9190611454565b505f6110ff8486611842565b95945050505050565b6014805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061114e5761114e6117b9565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156111a5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111c99190611855565b816001815181106111dc576111dc6117b9565b6001600160a01b03928316602091820292909201015260135461120291309116846109a7565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac9479061123a9085905f90869030904290600401611870565b5f604051808303815f87803b158015611251575f80fd5b505af1158015611263573d5f803e3d5ffd5b50506014805460ff60a81b1916905550505050565b6005546040516001600160a01b039091169082156108fc029083905f818181858888f1935050505015801561056c573d5f803e3d5ffd5b5f825f036112be57505f610449565b5f6112c9838561176d565b9050826112d685836118df565b1461132d5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104ff565b9392505050565b5f61132d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611428565b5f818311611383578261132d565b50919050565b5f80611395838561182f565b90508381101561132d5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104ff565b5f61132d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110d0565b5f81836114485760405162461bcd60e51b81526004016104ff9190611454565b505f6110ff84866118df565b5f6020808352835180828501525f5b8181101561147f57858101830151858201604001528201611463565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146114b3575f80fd5b50565b80356114c18161149f565b919050565b5f80604083850312156114d7575f80fd5b82356114e28161149f565b946020939093013593505050565b5f805f60608486031215611502575f80fd5b833561150d8161149f565b9250602084013561151d8161149f565b929592945050506040919091013590565b634e487b7160e01b5f52604160045260245ffd5b5f6020808385031215611553575f80fd5b823567ffffffffffffffff8082111561156a575f80fd5b818501915085601f83011261157d575f80fd5b81358181111561158f5761158f61152e565b8060051b604051601f19603f830116810181811085821117156115b4576115b461152e565b6040529182528482019250838101850191888311156115d1575f80fd5b938501935b828510156115f6576115e7856114b6565b845293850193928501926115d6565b98975050505050505050565b5f60208284031215611612575f80fd5b813561132d8161149f565b5f806040838503121561162e575f80fd5b82356116398161149f565b915060208301356116498161149f565b809150509250929050565b5f60208284031215611664575f80fd5b5035919050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156116b957815f190482111561169f5761169f61166b565b808516156116ac57918102915b93841c9390800290611684565b509250929050565b5f826116cf57506001610449565b816116db57505f610449565b81600181146116f157600281146116fb57611717565b6001915050610449565b60ff84111561170c5761170c61166b565b50506001821b610449565b5060208310610133831016604e8410600b841016171561173a575081810a610449565b611744838361167f565b805f19048211156117575761175761166b565b029392505050565b5f61132d60ff8416836116c1565b80820281158282048414176104495761044961166b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b5f600182016117de576117de61166b565b5060010190565b5f805f606084860312156117f7575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215611820575f80fd5b8151801515811461132d575f80fd5b808201808211156104495761044961166b565b818103818111156104495761044961166b565b5f60208284031215611865575f80fd5b815161132d8161149f565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156118be5784516001600160a01b031683529383019391830191600101611899565b50506001600160a01b03969096166060850152505050608001529392505050565b5f826118f957634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122073c218f1de2687f7d52d562269cd33edbe373aaee5c0b093d5b677a541bb620564736f6c63430008140033

Deployed Bytecode

0x608060405260043610610134575f3560e01c8063751039fc116100a8578063a9059cbb1161006d578063a9059cbb1461036f578063bf474bed1461038e578063c9567bf9146103a3578063d34628cc146103b7578063dd62ed3e146103d6578063ec1f3f631461041a575f80fd5b8063751039fc146102dc5780637d1db4a5146102f05780638da5cb5b146103055780638f9a55c01461032b57806395d89b4114610340575f80fd5b8063313ce567116100f9578063313ce5671461020d57806331c2d847146102285780633bbac5791461024957806351bc3c851461028057806370a0823114610294578063715018a6146102c8575f80fd5b806306fdde031461013f578063095ea7b3146101885780630faee56f146101b757806318160ddd146101da57806323b872dd146101ee575f80fd5b3661013b57005b5f80fd5b34801561014a575f80fd5b5060408051808201909152600f81526e5045504520324e44204348414e434560881b60208201525b60405161017f9190611454565b60405180910390f35b348015610193575f80fd5b506101a76101a23660046114c6565b610439565b604051901515815260200161017f565b3480156101c2575f80fd5b506101cc60125481565b60405190815260200161017f565b3480156101e5575f80fd5b506101cc61044f565b3480156101f9575f80fd5b506101a76102083660046114f0565b61046f565b348015610218575f80fd5b506040516009815260200161017f565b348015610233575f80fd5b50610247610242366004611542565b6104d6565b005b348015610254575f80fd5b506101a7610263366004611602565b6001600160a01b03165f9081526004602052604090205460ff1690565b34801561028b575f80fd5b50610247610570565b34801561029f575f80fd5b506101cc6102ae366004611602565b6001600160a01b03165f9081526001602052604090205490565b3480156102d3575f80fd5b506102476105bd565b3480156102e7575f80fd5b5061024761062e565b3480156102fb575f80fd5b506101cc600f5481565b348015610310575f80fd5b505f546040516001600160a01b03909116815260200161017f565b348015610336575f80fd5b506101cc60105481565b34801561034b575f80fd5b50604080518082019091526007815266141154114c939160ca1b6020820152610172565b34801561037a575f80fd5b506101a76103893660046114c6565b6106df565b348015610399575f80fd5b506101cc60115481565b3480156103ae575f80fd5b506102476106eb565b3480156103c2575f80fd5b506102476103d1366004611542565b6108d4565b3480156103e1575f80fd5b506101cc6103f036600461161d565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b348015610425575f80fd5b50610247610434366004611654565b610962565b5f6104453384846109a7565b5060015b92915050565b5f61045c6009600a61175f565b61046a90631dcd650061176d565b905090565b5f61047b848484610aca565b6104cc84336104c7856040518060600160405280602881526020016118ff602891396001600160a01b038a165f90815260026020908152604080832033845290915290205491906110d0565b6109a7565b5060019392505050565b5f546001600160a01b031633146105085760405162461bcd60e51b81526004016104ff90611784565b60405180910390fd5b5f5b815181101561056c575f60045f848481518110610529576105296117b9565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905580610564816117cd565b91505061050a565b5050565b6005546001600160a01b0316336001600160a01b03161461058f575f80fd5b305f9081526001602052604090205480156105ad576105ad81611108565b47801561056c5761056c81611278565b5f546001600160a01b031633146105e65760405162461bcd60e51b81526004016104ff90611784565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146106575760405162461bcd60e51b81526004016104ff90611784565b6106636009600a61175f565b61067190631dcd650061176d565b600f556106806009600a61175f565b61068e90631dcd650061176d565b6010557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6106be6009600a61175f565b6106cc90631dcd650061176d565b60405190815260200160405180910390a1565b5f610445338484610aca565b5f546001600160a01b031633146107145760405162461bcd60e51b81526004016104ff90611784565b601454600160a01b900460ff161561076e5760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016104ff565b6013546001600160a01b031663f305d719473061079f816001600160a01b03165f9081526001602052604090205490565b5f806107b25f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610818573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061083d91906117e5565b505060145460135460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610892573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108b69190611810565b506014805462ff00ff60a01b19166201000160a01b17905543600655565b5f546001600160a01b031633146108fd5760405162461bcd60e51b81526004016104ff90611784565b5f5b815181101561056c57600160045f84848151811061091f5761091f6117b9565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790558061095a816117cd565b9150506108ff565b6005546001600160a01b0316336001600160a01b031614610981575f80fd5b60095481111580156109955750600a548111155b61099d575f80fd5b6009819055600a55565b6001600160a01b038316610a095760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104ff565b6001600160a01b038216610a6a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104ff565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b2e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104ff565b6001600160a01b038216610b905760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104ff565b5f8111610bf15760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104ff565b5f80546001600160a01b03858116911614801590610c1c57505f546001600160a01b03848116911614155b15610f93576001600160a01b0384165f9081526004602052604090205460ff16158015610c6157506001600160a01b0383165f9081526004602052604090205460ff16155b610c69575f80fd5b610c956064610c8f600b54600e5411610c8457600754610c88565b6009545b85906112af565b90611334565b6014549091506001600160a01b038581169116148015610cc357506013546001600160a01b03848116911614155b8015610ce757506001600160a01b0383165f9081526003602052604090205460ff16155b15610dee57600f54821115610d3e5760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016104ff565b60105482610d60856001600160a01b03165f9081526001602052604090205490565b610d6a919061182f565b1115610db85760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104ff565b436006546001610dc8919061182f565b1115610dd957823b15610dd9575f80fd5b600e8054905f610de8836117cd565b91905055505b6014546001600160a01b03848116911614801590610e2457506001600160a01b0383165f9081526003602052604090205460ff16155b15610ea35760105482610e4b856001600160a01b03165f9081526001602052604090205490565b610e55919061182f565b1115610ea35760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104ff565b6014546001600160a01b038481169116148015610ec957506001600160a01b0384163014155b15610ef657610ef36064610c8f600c54600e5411610ee957600854610c88565b600a5485906112af565b90505b305f90815260016020526040902054601454600160a81b900460ff16158015610f2c57506014546001600160a01b038581169116145b8015610f415750601454600160b01b900460ff165b8015610f4e575060115481115b8015610f5d5750600d54600e54115b15610f9157610f7f610f7a84610f7584601254611375565b611375565b611108565b478015610f8f57610f8f47611278565b505b505b801561100b57305f90815260016020526040902054610fb29082611389565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110029085815260200190565b60405180910390a35b6001600160a01b0384165f9081526001602052604090205461102d90836113e7565b6001600160a01b0385165f9081526001602052604090205561107061105283836113e7565b6001600160a01b0385165f9081526001602052604090205490611389565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6110b985856113e7565b60405190815260200160405180910390a350505050565b5f81848411156110f35760405162461bcd60e51b81526004016104ff9190611454565b505f6110ff8486611842565b95945050505050565b6014805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061114e5761114e6117b9565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156111a5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111c99190611855565b816001815181106111dc576111dc6117b9565b6001600160a01b03928316602091820292909201015260135461120291309116846109a7565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac9479061123a9085905f90869030904290600401611870565b5f604051808303815f87803b158015611251575f80fd5b505af1158015611263573d5f803e3d5ffd5b50506014805460ff60a81b1916905550505050565b6005546040516001600160a01b039091169082156108fc029083905f818181858888f1935050505015801561056c573d5f803e3d5ffd5b5f825f036112be57505f610449565b5f6112c9838561176d565b9050826112d685836118df565b1461132d5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104ff565b9392505050565b5f61132d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611428565b5f818311611383578261132d565b50919050565b5f80611395838561182f565b90508381101561132d5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104ff565b5f61132d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110d0565b5f81836114485760405162461bcd60e51b81526004016104ff9190611454565b505f6110ff84866118df565b5f6020808352835180828501525f5b8181101561147f57858101830151858201604001528201611463565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146114b3575f80fd5b50565b80356114c18161149f565b919050565b5f80604083850312156114d7575f80fd5b82356114e28161149f565b946020939093013593505050565b5f805f60608486031215611502575f80fd5b833561150d8161149f565b9250602084013561151d8161149f565b929592945050506040919091013590565b634e487b7160e01b5f52604160045260245ffd5b5f6020808385031215611553575f80fd5b823567ffffffffffffffff8082111561156a575f80fd5b818501915085601f83011261157d575f80fd5b81358181111561158f5761158f61152e565b8060051b604051601f19603f830116810181811085821117156115b4576115b461152e565b6040529182528482019250838101850191888311156115d1575f80fd5b938501935b828510156115f6576115e7856114b6565b845293850193928501926115d6565b98975050505050505050565b5f60208284031215611612575f80fd5b813561132d8161149f565b5f806040838503121561162e575f80fd5b82356116398161149f565b915060208301356116498161149f565b809150509250929050565b5f60208284031215611664575f80fd5b5035919050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156116b957815f190482111561169f5761169f61166b565b808516156116ac57918102915b93841c9390800290611684565b509250929050565b5f826116cf57506001610449565b816116db57505f610449565b81600181146116f157600281146116fb57611717565b6001915050610449565b60ff84111561170c5761170c61166b565b50506001821b610449565b5060208310610133831016604e8410600b841016171561173a575081810a610449565b611744838361167f565b805f19048211156117575761175761166b565b029392505050565b5f61132d60ff8416836116c1565b80820281158282048414176104495761044961166b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b5f600182016117de576117de61166b565b5060010190565b5f805f606084860312156117f7575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215611820575f80fd5b8151801515811461132d575f80fd5b808201808211156104495761044961166b565b818103818111156104495761044961166b565b5f60208284031215611865575f80fd5b815161132d8161149f565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156118be5784516001600160a01b031683529383019391830191600101611899565b50506001600160a01b03969096166060850152505050608001529392505050565b5f826118f957634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122073c218f1de2687f7d52d562269cd33edbe373aaee5c0b093d5b677a541bb620564736f6c63430008140033

Deployed Bytecode Sourcemap

4901:8587:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7030:83;;;;;;;;;;-1:-1:-1;7100:5:0;;;;;;;;;;;;-1:-1:-1;;;7100:5:0;;;;7030:83;;;;;;;:::i;:::-;;;;;;;;7863:161;;;;;;;;;;-1:-1:-1;7863:161:0;;;;;:::i;:::-;;:::i;:::-;;;1327:14:1;;1320:22;1302:41;;1290:2;1275:18;7863:161:0;1162:187:1;6023:51:0;;;;;;;;;;;;;;;;;;;1500:25:1;;;1488:2;1473:18;6023:51:0;1354:177:1;7307:95:0;;;;;;;;;;;;;:::i;8032:313::-;;;;;;;;;;-1:-1:-1;8032:313:0;;;;;:::i;:::-;;:::i;7216:83::-;;;;;;;;;;-1:-1:-1;7216:83:0;;5642:1;2139:36:1;;2127:2;2112:18;7216:83:0;1997:184:1;12173:162:0;;;;;;;;;;-1:-1:-1;12173:162:0;;;;;:::i;:::-;;:::i;:::-;;12343:83;;;;;;;;;;-1:-1:-1;12343:83:0;;;;;:::i;:::-;-1:-1:-1;;;;;12411:7:0;12390:4;12411:7;;;:4;:7;;;;;;;;;12343:83;13137:348;;;;;;;;;;;;;:::i;7410:119::-;;;;;;;;;;-1:-1:-1;7410:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;7503:18:0;7476:7;7503:18;;;:9;:18;;;;;;;7410:119;3982:148;;;;;;;;;;;;;:::i;11734:159::-;;;;;;;;;;;;;:::i;5837:53::-;;;;;;;;;;;;;;;;3768:79;;;;;;;;;;-1:-1:-1;3806:7:0;3833:6;3768:79;;-1:-1:-1;;;;;3833:6:0;;;3842:51:1;;3830:2;3815:18;3768:79:0;3696:203:1;5897:55:0;;;;;;;;;;;;;;;;7121:87;;;;;;;;;;-1:-1:-1;7193:7:0;;;;;;;;;;;;-1:-1:-1;;;7193:7:0;;;;7121:87;;7537:167;;;;;;;;;;-1:-1:-1;7537:167:0;;;;;:::i;:::-;;:::i;5959:57::-;;;;;;;;;;;;;;;;12434:426;;;;;;;;;;;;;:::i;12001:164::-;;;;;;;;;;-1:-1:-1;12001:164:0;;;;;:::i;:::-;;:::i;7712:143::-;;;;;;;;;;-1:-1:-1;7712:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;7820:18:0;;;7793:7;7820:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7712:143;12874:218;;;;;;;;;;-1:-1:-1;12874:218:0;;;;;:::i;:::-;;:::i;7863:161::-;7938:4;7955:39;1603:10;7978:7;7987:6;7955:8;:39::i;:::-;-1:-1:-1;8012:4:0;7863:161;;;;;:::o;7307:95::-;7360:7;5697:13;5642:1;5697:2;:13;:::i;:::-;5685:25;;:9;:25;:::i;:::-;7380:14;;7307:95;:::o;8032:313::-;8130:4;8147:36;8157:6;8165:9;8176:6;8147:9;:36::i;:::-;8194:121;8203:6;1603:10;8225:89;8263:6;8225:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8225:19:0;;;;;;:11;:19;;;;;;;;1603:10;8225:33;;;;;;;;;;:37;:89::i;:::-;8194:8;:121::i;:::-;-1:-1:-1;8333:4:0;8032:313;;;;;:::o;12173:162::-;3895:6;;-1:-1:-1;;;;;3895:6:0;1603:10;3895:22;3887:67;;;;-1:-1:-1;;;3887:67:0;;;;;;;:::i;:::-;;;;;;;;;12246:6:::1;12241:87;12262:6;:13;12258:1;:17;12241:87;;;12313:5;12295:4;:15;12300:6;12307:1;12300:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;12295:15:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;12295:15:0;:23;;-1:-1:-1;;12295:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;12277:3;::::1;::::0;::::1;:::i;:::-;;;;12241:87;;;;12173:162:::0;:::o;13137:348::-;13201:10;;-1:-1:-1;;;;;13201:10:0;1603;-1:-1:-1;;;;;13187:24:0;;13179:33;;;;;;13262:4;13223:20;7503:18;;;:9;:18;;;;;;13282:14;;13279:73;;13310:30;13327:12;13310:16;:30::i;:::-;13381:21;13416:12;;13413:65;;13442:24;13455:10;13442:12;:24::i;3982:148::-;3895:6;;-1:-1:-1;;;;;3895:6:0;1603:10;3895:22;3887:67;;;;-1:-1:-1;;;3887:67:0;;;;;;;:::i;:::-;4089:1:::1;4073:6:::0;;4052:40:::1;::::0;-1:-1:-1;;;;;4073:6:0;;::::1;::::0;4052:40:::1;::::0;4089:1;;4052:40:::1;4120:1;4103:19:::0;;-1:-1:-1;;;;;;4103:19:0::1;::::0;;3982:148::o;11734:159::-;3895:6;;-1:-1:-1;;;;;3895:6:0;1603:10;3895:22;3887:67;;;;-1:-1:-1;;;3887:67:0;;;;;;;:::i;:::-;5697:13:::1;5642:1;5697:2;:13;:::i;:::-;5685:25;::::0;:9:::1;:25;:::i;:::-;11787:12;:22:::0;5697:13:::1;5642:1;5697:2;:13;:::i;:::-;5685:25;::::0;:9:::1;:25;:::i;:::-;11820:14;:22:::0;11858:27:::1;5697:13;5642:1;5697:2;:13;:::i;:::-;5685:25;::::0;:9:::1;:25;:::i;:::-;11858:27;::::0;1500:25:1;;;1488:2;1473:18;11858:27:0::1;;;;;;;11734:159::o:0;7537:167::-;7615:4;7632:42;1603:10;7656:9;7667:6;7632:9;:42::i;12434:426::-;3895:6;;-1:-1:-1;;;;;3895:6:0;1603:10;3895:22;3887:67;;;;-1:-1:-1;;;3887:67:0;;;;;;;:::i;:::-;12498:11:::1;::::0;-1:-1:-1;;;12498:11:0;::::1;;;12497:12;12489:47;;;::::0;-1:-1:-1;;;12489:47:0;;7005:2:1;12489:47:0::1;::::0;::::1;6987:21:1::0;7044:2;7024:18;;;7017:30;7083:25;7063:18;;;7056:53;7126:18;;12489:47:0::1;6803:347:1::0;12489:47:0::1;12547:15;::::0;-1:-1:-1;;;;;12547:15:0::1;:31;12586:21;12617:4;12623:24;12617:4:::0;-1:-1:-1;;;;;7503:18:0;7476:7;7503:18;;;:9;:18;;;;;;;7410:119;12623:24:::1;12648:1;12650::::0;12652:7:::1;3806::::0;3833:6;-1:-1:-1;;;;;3833:6:0;;3768:79;12652:7:::1;12547:129;::::0;::::1;::::0;;;-1:-1:-1;;;;;;12547:129:0;;;-1:-1:-1;;;;;7514:15:1;;;12547:129:0::1;::::0;::::1;7496:34:1::0;7546:18;;;7539:34;;;;7589:18;;;7582:34;;;;7632:18;;;7625:34;7696:15;;;7675:19;;;7668:44;12660:15:0::1;7728:19:1::0;;;7721:35;7430:19;;12547:129:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;12694:13:0::1;::::0;12725:15:::1;::::0;12687:71:::1;::::0;-1:-1:-1;;;12687:71:0;;-1:-1:-1;;;;;12725:15:0;;::::1;12687:71;::::0;::::1;8252:51:1::0;-1:-1:-1;;8319:18:1;;;8312:34;12694:13:0;::::1;::::0;-1:-1:-1;12687:29:0::1;::::0;8225:18:1;;12687:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;12769:11:0::1;:18:::0;;-1:-1:-1;;;;12798:18:0;-1:-1:-1;;;12798:18:0;;;12840:12:::1;12827:10;:25:::0;12434:426::o;12001:164::-;3895:6;;-1:-1:-1;;;;;3895:6:0;1603:10;3895:22;3887:67;;;;-1:-1:-1;;;3887:67:0;;;;;;;:::i;:::-;12075:6:::1;12070:88;12091:5;:12;12087:1;:16;12070:88;;;12142:4;12125;:14;12130:5;12136:1;12130:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;12125:14:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;12125:14:0;:21;;-1:-1:-1;;12125:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;12105:3;::::1;::::0;::::1;:::i;:::-;;;;12070:88;;12874:218:::0;12949:10;;-1:-1:-1;;;;;12949:10:0;1603;-1:-1:-1;;;;;12935:24:0;;12927:33;;;;;;12986:12;;12977:7;:21;;:47;;;;;13011:13;;13002:7;:22;;12977:47;12969:56;;;;;;13034:12;:20;;;13063:13;:21;12874:218::o;8353:335::-;-1:-1:-1;;;;;8446:19:0;;8438:68;;;;-1:-1:-1;;;8438:68:0;;8841:2:1;8438:68:0;;;8823:21:1;8880:2;8860:18;;;8853:30;8919:34;8899:18;;;8892:62;-1:-1:-1;;;8970:18:1;;;8963:34;9014:19;;8438:68:0;8639:400:1;8438:68:0;-1:-1:-1;;;;;8525:21:0;;8517:68;;;;-1:-1:-1;;;8517:68:0;;9246:2:1;8517:68:0;;;9228:21:1;9285:2;9265:18;;;9258:30;9324:34;9304:18;;;9297:62;-1:-1:-1;;;9375:18:1;;;9368:32;9417:19;;8517:68:0;9044:398:1;8517:68:0;-1:-1:-1;;;;;8596:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;8648:32;;1500:25:1;;;8648:32:0;;1473:18:1;8648:32:0;;;;;;;8353:335;;;:::o;8696:2228::-;-1:-1:-1;;;;;8784:18:0;;8776:68;;;;-1:-1:-1;;;8776:68:0;;9649:2:1;8776:68:0;;;9631:21:1;9688:2;9668:18;;;9661:30;9727:34;9707:18;;;9700:62;-1:-1:-1;;;9778:18:1;;;9771:35;9823:19;;8776:68:0;9447:401:1;8776:68:0;-1:-1:-1;;;;;8863:16:0;;8855:64;;;;-1:-1:-1;;;8855:64:0;;10055:2:1;8855:64:0;;;10037:21:1;10094:2;10074:18;;;10067:30;10133:34;10113:18;;;10106:62;-1:-1:-1;;;10184:18:1;;;10177:33;10227:19;;8855:64:0;9853:399:1;8855:64:0;8947:1;8938:6;:10;8930:64;;;;-1:-1:-1;;;8930:64:0;;10459:2:1;8930:64:0;;;10441:21:1;10498:2;10478:18;;;10471:30;10537:34;10517:18;;;10510:62;-1:-1:-1;;;10588:18:1;;;10581:39;10637:19;;8930:64:0;10257:405:1;8930:64:0;9005:17;3833:6;;-1:-1:-1;;;;;9039:15:0;;;3833:6;;9039:15;;;;:32;;-1:-1:-1;3806:7:0;3833:6;-1:-1:-1;;;;;9058:13:0;;;3833:6;;9058:13;;9039:32;9035:1533;;;-1:-1:-1;;;;;9097:10:0;;;;;;:4;:10;;;;;;;;9096:11;:24;;;;-1:-1:-1;;;;;;9112:8:0;;;;;;:4;:8;;;;;;;;9111:9;9096:24;9088:33;;;;;;9148:76;9220:3;9148:67;9170:15;;9160:9;;:25;9159:55;;9200:14;;9159:55;;;9187:12;;9159:55;9148:6;;:10;:67::i;:::-;:71;;:76::i;:::-;9253:13;;9136:88;;-1:-1:-1;;;;;;9245:21:0;;;9253:13;;9245:21;:55;;;;-1:-1:-1;9284:15:0;;-1:-1:-1;;;;;9270:30:0;;;9284:15;;9270:30;;9245:55;:83;;;;-1:-1:-1;;;;;;9306:22:0;;;;;;:18;:22;;;;;;;;9304:24;9245:83;9241:436;;;9368:12;;9358:6;:22;;9350:60;;;;-1:-1:-1;;;9350:60:0;;10869:2:1;9350:60:0;;;10851:21:1;10908:2;10888:18;;;10881:30;10947:27;10927:18;;;10920:55;10992:18;;9350:60:0;10667:349:1;9350:60:0;9463:14;;9453:6;9437:13;9447:2;-1:-1:-1;;;;;7503:18:0;7476:7;7503:18;;;:9;:18;;;;;;;7410:119;9437:13;:22;;;;:::i;:::-;:40;;9429:79;;;;-1:-1:-1;;;9429:79:0;;11353:2:1;9429:79:0;;;11335:21:1;11392:2;11372:18;;;11365:30;11431:28;11411:18;;;11404:56;11477:18;;9429:79:0;11151:350:1;9429:79:0;9551:12;9533:10;;9546:1;9533:14;;;;:::i;:::-;:30;9529:103;;;11171:20;;11219:8;9588:24;;;;;;9650:9;:11;;;:9;:11;;;:::i;:::-;;;;;;9241:436;9703:13;;-1:-1:-1;;;;;9697:19:0;;;9703:13;;9697:19;;;;:47;;-1:-1:-1;;;;;;9722:22:0;;;;;;:18;:22;;;;;;;;9720:24;9697:47;9693:167;;;9799:14;;9789:6;9773:13;9783:2;-1:-1:-1;;;;;7503:18:0;7476:7;7503:18;;;:9;:18;;;;;;;7410:119;9773:13;:22;;;;:::i;:::-;:40;;9765:79;;;;-1:-1:-1;;;9765:79:0;;11353:2:1;9765:79:0;;;11335:21:1;11392:2;11372:18;;;11365:30;11431:28;11411:18;;;11404:56;11477:18;;9765:79:0;11151:350:1;9765:79:0;9885:13;;-1:-1:-1;;;;;9879:19:0;;;9885:13;;9879:19;:43;;;;-1:-1:-1;;;;;;9902:20:0;;9917:4;9902:20;;9879:43;9876:174;;;9955:79;10030:3;9955:70;9977:16;;9967:9;;:26;9966:58;;10009:15;;9966:58;;;9995:13;;9955:6;;:10;:70::i;:79::-;9943:91;;9876:174;10115:4;10066:28;7503:18;;;:9;:18;;;;;;10141:6;;-1:-1:-1;;;10141:6:0;;;;10140:7;:32;;;;-1:-1:-1;10159:13:0;;-1:-1:-1;;;;;10151:21:0;;;10159:13;;10151:21;10140:32;:47;;;;-1:-1:-1;10176:11:0;;-1:-1:-1;;;10176:11:0;;;;10140:47;:89;;;;;10212:17;;10191:20;:38;10140:89;:121;;;;;10243:18;;10233:9;;:28;10140:121;10136:421;;;10282:67;10299:49;10303:6;10310:37;10314:20;10335:11;;10310:3;:37::i;:::-;10299:3;:49::i;:::-;10282:16;:67::i;:::-;10397:21;10440:22;;10437:105;;10487:35;10500:21;10487:12;:35::i;:::-;10263:294;10136:421;9073:1495;9035:1533;10583:11;;10580:161;;10651:4;10633:24;;;;:9;:24;;;;;;:39;;10662:9;10633:28;:39::i;:::-;10626:4;10608:24;;;;:9;:24;;;;;;;:64;;;;10690:39;;-1:-1:-1;;;;;10690:39:0;;;;;;;10719:9;1500:25:1;;1488:2;1473:18;;1354:177;10690:39:0;;;;;;;;10580:161;-1:-1:-1;;;;;10767:15:0;;;;;;:9;:15;;;;;;:27;;10787:6;10767:19;:27::i;:::-;-1:-1:-1;;;;;10751:15:0;;;;;;:9;:15;;;;;:43;10819:40;10837:21;:6;10848:9;10837:10;:21::i;:::-;-1:-1:-1;;;;;10819:13:0;;;;;;:9;:13;;;;;;;:17;:40::i;:::-;-1:-1:-1;;;;;10805:13:0;;;;;;;:9;:13;;;;;:54;;;;10875:41;;;10894:21;:6;10905:9;10894:10;:21::i;:::-;10875:41;;1500:25:1;;;1488:2;1473:18;10875:41:0;;;;;;;8765:2159;8696:2228;;;:::o;2660:190::-;2746:7;2782:12;2774:6;;;;2766:29;;;;-1:-1:-1;;;2766:29:0;;;;;;;;:::i;:::-;-1:-1:-1;2806:9:0;2818:5;2822:1;2818;:5;:::i;:::-;2806:17;2660:190;-1:-1:-1;;;;;2660:190:0:o;11243:483::-;6356:6;:13;;-1:-1:-1;;;;6356:13:0;-1:-1:-1;;;6356:13:0;;;11345:16:::1;::::0;;11359:1:::1;11345:16:::0;;;;;::::1;::::0;;-1:-1:-1;;11345:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;11345:16:0::1;11321:40;;11390:4;11372;11377:1;11372:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;11372:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;11416:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;11416:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;11372:7;;11416:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11406:4;11411:1;11406:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;11406:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;11481:15:::1;::::0;11449:62:::1;::::0;11466:4:::1;::::0;11481:15:::1;11499:11:::0;11449:8:::1;:62::i;:::-;11522:15;::::0;:196:::1;::::0;-1:-1:-1;;;11522:196:0;;-1:-1:-1;;;;;11522:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;11603:11;;11522:15:::1;::::0;11645:4;;11672::::1;::::0;11692:15:::1;::::0;11522:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;6392:6:0;:14;;-1:-1:-1;;;;6392:14:0;;;-1:-1:-1;;;;11243:483:0:o;11901:92::-;11958:10;;:27;;-1:-1:-1;;;;;11958:10:0;;;;:27;;;;;11978:6;;11958:10;:27;:10;:27;11978:6;11958:10;:27;;;;;;;;;;;;;;;;;;;2858:246;2916:7;2940:1;2945;2940:6;2936:47;;-1:-1:-1;2970:1:0;2963:8;;2936:47;2993:9;3005:5;3009:1;3005;:5;:::i;:::-;2993:17;-1:-1:-1;3038:1:0;3029:5;3033:1;2993:17;3029:5;:::i;:::-;:10;3021:56;;;;-1:-1:-1;;;3021:56:0;;13304:2:1;3021:56:0;;;13286:21:1;13343:2;13323:18;;;13316:30;13382:34;13362:18;;;13355:62;-1:-1:-1;;;13433:18:1;;;13426:31;13474:19;;3021:56:0;13102:397:1;3021:56:0;3095:1;2858:246;-1:-1:-1;;;2858:246:0:o;3112:132::-;3170:7;3197:39;3201:1;3204;3197:39;;;;;;;;;;;;;;;;;:3;:39::i;10934:98::-;10991:7;11018:1;11016;:3;11015:9;;11023:1;11015:9;;;-1:-1:-1;11021:1:0;10934:98;-1:-1:-1;10934:98:0:o;2329:179::-;2387:7;;2419:5;2423:1;2419;:5;:::i;:::-;2407:17;;2448:1;2443;:6;;2435:46;;;;-1:-1:-1;;;2435:46:0;;13706:2:1;2435:46:0;;;13688:21:1;13745:2;13725:18;;;13718:30;13784:29;13764:18;;;13757:57;13831:18;;2435:46:0;13504:351:1;2516:136:0;2574:7;2601:43;2605:1;2608;2601:43;;;;;;;;;;;;;;;;;:3;:43::i;3252:189::-;3338:7;3373:12;3366:5;3358:28;;;;-1:-1:-1;;;3358:28:0;;;;;;;;:::i;:::-;-1:-1:-1;3397:9:0;3409:5;3413:1;3409;: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:134::-;771:20;;800:31;771:20;800:31;:::i;:::-;703:134;;;:::o;842:315::-;910:6;918;971:2;959:9;950:7;946:23;942:32;939:52;;;987:1;984;977:12;939:52;1026:9;1013:23;1045:31;1070:5;1045:31;:::i;:::-;1095:5;1147:2;1132:18;;;;1119:32;;-1:-1:-1;;;842:315:1:o;1536:456::-;1613:6;1621;1629;1682:2;1670:9;1661:7;1657:23;1653:32;1650:52;;;1698:1;1695;1688:12;1650:52;1737:9;1724:23;1756:31;1781:5;1756:31;:::i;:::-;1806:5;-1:-1:-1;1863:2:1;1848:18;;1835:32;1876:33;1835:32;1876:33;:::i;:::-;1536:456;;1928:7;;-1:-1:-1;;;1982:2:1;1967:18;;;;1954:32;;1536:456::o;2186:127::-;2247:10;2242:3;2238:20;2235:1;2228:31;2278:4;2275:1;2268:15;2302:4;2299:1;2292:15;2318:1121;2402:6;2433:2;2476;2464:9;2455:7;2451:23;2447:32;2444:52;;;2492:1;2489;2482:12;2444:52;2532:9;2519:23;2561:18;2602:2;2594:6;2591:14;2588:34;;;2618:1;2615;2608:12;2588:34;2656:6;2645:9;2641:22;2631:32;;2701:7;2694:4;2690:2;2686:13;2682:27;2672:55;;2723:1;2720;2713:12;2672:55;2759:2;2746:16;2781:2;2777;2774:10;2771:36;;;2787:18;;:::i;:::-;2833:2;2830:1;2826:10;2865:2;2859:9;2928:2;2924:7;2919:2;2915;2911:11;2907:25;2899:6;2895:38;2983:6;2971:10;2968:22;2963:2;2951:10;2948:18;2945:46;2942:72;;;2994:18;;:::i;:::-;3030:2;3023:22;3080:18;;;3114:15;;;;-1:-1:-1;3156:11:1;;;3152:20;;;3184:19;;;3181:39;;;3216:1;3213;3206:12;3181:39;3240:11;;;;3260:148;3276:6;3271:3;3268:15;3260:148;;;3342:23;3361:3;3342:23;:::i;:::-;3330:36;;3293:12;;;;3386;;;;3260:148;;;3427:6;2318:1121;-1:-1:-1;;;;;;;;2318:1121:1:o;3444:247::-;3503:6;3556:2;3544:9;3535:7;3531:23;3527:32;3524:52;;;3572:1;3569;3562:12;3524:52;3611:9;3598:23;3630:31;3655:5;3630:31;:::i;3904:388::-;3972:6;3980;4033:2;4021:9;4012:7;4008:23;4004:32;4001:52;;;4049:1;4046;4039:12;4001:52;4088:9;4075:23;4107:31;4132:5;4107:31;:::i;:::-;4157:5;-1:-1:-1;4214:2:1;4199:18;;4186:32;4227:33;4186:32;4227:33;:::i;:::-;4279:7;4269:17;;;3904:388;;;;;:::o;4297:180::-;4356:6;4409:2;4397:9;4388:7;4384:23;4380:32;4377:52;;;4425:1;4422;4415:12;4377:52;-1:-1:-1;4448:23:1;;4297:180;-1:-1:-1;4297:180:1:o;4482:127::-;4543:10;4538:3;4534:20;4531:1;4524:31;4574:4;4571:1;4564:15;4598:4;4595:1;4588:15;4614:422;4703:1;4746:5;4703:1;4760:270;4781:7;4771:8;4768:21;4760:270;;;4840:4;4836:1;4832:6;4828:17;4822:4;4819:27;4816:53;;;4849:18;;:::i;:::-;4899:7;4889:8;4885:22;4882:55;;;4919:16;;;;4882:55;4998:22;;;;4958:15;;;;4760:270;;;4764:3;4614:422;;;;;:::o;5041:806::-;5090:5;5120:8;5110:80;;-1:-1:-1;5161:1:1;5175:5;;5110:80;5209:4;5199:76;;-1:-1:-1;5246:1:1;5260:5;;5199:76;5291:4;5309:1;5304:59;;;;5377:1;5372:130;;;;5284:218;;5304:59;5334:1;5325:10;;5348:5;;;5372:130;5409:3;5399:8;5396:17;5393:43;;;5416:18;;:::i;:::-;-1:-1:-1;;5472:1:1;5458:16;;5487:5;;5284:218;;5586:2;5576:8;5573:16;5567:3;5561:4;5558:13;5554:36;5548:2;5538:8;5535:16;5530:2;5524:4;5521:12;5517:35;5514:77;5511:159;;;-1:-1:-1;5623:19:1;;;5655:5;;5511:159;5702:34;5727:8;5721:4;5702:34;:::i;:::-;5772:6;5768:1;5764:6;5760:19;5751:7;5748:32;5745:58;;;5783:18;;:::i;:::-;5821:20;;5041:806;-1:-1:-1;;;5041:806:1:o;5852:140::-;5910:5;5939:47;5980:4;5970:8;5966:19;5960:4;5939:47;:::i;5997:168::-;6070:9;;;6101;;6118:15;;;6112:22;;6098:37;6088:71;;6139:18;;:::i;6170:356::-;6372:2;6354:21;;;6391:18;;;6384:30;6450:34;6445:2;6430:18;;6423:62;6517:2;6502:18;;6170:356::o;6531:127::-;6592:10;6587:3;6583:20;6580:1;6573:31;6623:4;6620:1;6613:15;6647:4;6644:1;6637:15;6663:135;6702:3;6723:17;;;6720:43;;6743:18;;:::i;:::-;-1:-1:-1;6790:1:1;6779:13;;6663:135::o;7767:306::-;7855:6;7863;7871;7924:2;7912:9;7903:7;7899:23;7895:32;7892:52;;;7940:1;7937;7930:12;7892:52;7969:9;7963:16;7953:26;;8019:2;8008:9;8004:18;7998:25;7988:35;;8063:2;8052:9;8048:18;8042:25;8032:35;;7767:306;;;;;:::o;8357:277::-;8424:6;8477:2;8465:9;8456:7;8452:23;8448:32;8445:52;;;8493:1;8490;8483:12;8445:52;8525:9;8519:16;8578:5;8571:13;8564:21;8557:5;8554:32;8544:60;;8600:1;8597;8590:12;11021:125;11086:9;;;11107:10;;;11104:36;;;11120:18;;:::i;11506:128::-;11573:9;;;11594:11;;;11591:37;;;11608:18;;:::i;11639:251::-;11709:6;11762:2;11750:9;11741:7;11737:23;11733:32;11730:52;;;11778:1;11775;11768:12;11730:52;11810:9;11804:16;11829:31;11854:5;11829:31;:::i;11895:980::-;12157:4;12205:3;12194:9;12190:19;12236:6;12225:9;12218:25;12262:2;12300:6;12295:2;12284:9;12280:18;12273:34;12343:3;12338:2;12327:9;12323:18;12316:31;12367:6;12402;12396:13;12433:6;12425;12418:22;12471:3;12460:9;12456:19;12449:26;;12510:2;12502:6;12498:15;12484:29;;12531:1;12541:195;12555:6;12552:1;12549:13;12541:195;;;12620:13;;-1:-1:-1;;;;;12616:39:1;12604:52;;12711:15;;;;12676:12;;;;12652:1;12570:9;12541:195;;;-1:-1:-1;;;;;;;12792:32:1;;;;12787:2;12772:18;;12765:60;-1:-1:-1;;;12856:3:1;12841:19;12834:35;12753:3;11895:980;-1:-1:-1;;;11895:980:1:o;12880:217::-;12920:1;12946;12936:132;;12990:10;12985:3;12981:20;12978:1;12971:31;13025:4;13022:1;13015:15;13053:4;13050:1;13043:15;12936:132;-1:-1:-1;13082:9:1;;12880:217::o

Swarm Source

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