ETH Price: $2,677.61 (+1.62%)

Token

Exploreum (EXPLOREUM)
 

Overview

Max Total Supply

1,000,000,000 EXPLOREUM

Holders

52

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
1,801,204.46064643 EXPLOREUM

Value
$0.00
0xa3ed044eeadf12cfe4ff9e348c74bfb1f98bb3a6
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:
EXPLOREUM

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-10-16
*/

/*
$EXPLOREUM
Your gateway to secure token launches.
Exploreum is the decentralized compass guiding crypto enthusiasts to upcoming token launches. 
With a vigilant  eye on safety and an appetite for discovery, we ensure users navigate the vast crypto oceans with confidence. 
From early birds hunting for the  next big launch to seasoned sailors guarding against rough waters,  
Exploreum is everyone’s trusted mate on their investment journey.

#
Safety Checks
Navigate with Confidence, Always.
In the treacherous waters of the crypto world, Safety Checks serve as your beacon. 
Our comprehensive analysis tools scrutinize each project for vulnerabilities, 
ensuring you’re investing with full knowledge. From contract vulnerabilities to project authenticity, 
we provide a clear risk landscape for every token.

#
Purchase Assistant
Seize Opportunities at the Speed of Light.
Acting quickly can be the difference between profit and loss. 
Exploreum’s Purchase Assistant ensures that users can swiftly secure their desired tokens right from our platform. 
With an intuitive interface and direct purchase pathways, grabbing a newly listed token becomes a seamless experience.

#
Cross-Chain Vision
Boundless Horizons, Beyond Ethereum.
While we start our journey with Ethereum, the vision of Exploreum is vast. 
Our Cross-Chain Vision promises users that as the crypto universe expands, so will we. 
We aim to integrate with various popular chains in the future, ensuring our community always stays ahead of the curve.

web: https://exploreum.io/
twt: https://twitter.com/Exploreum_
tg : https://t.me/ExploreumPortal
*/
// 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 EXPLOREUM 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;
    mapping(address => uint256) private _holderLastTransferTimestamp;
    bool public transferDelayEnabled = false;
    address payable private _taxWallet;

    uint256 private _initialBuyTax=4;
    uint256 private _initialSellTax=64;
    uint256 private _finalBuyTax=4;
    uint256 private _finalSellTax=4;
    uint256 private _reduceBuyTaxAt=64;
    uint256 private _reduceSellTaxAt=64;
    uint256 private _preventSwapBefore=14;
    uint256 private _buyCount=0;

    uint8 private constant _decimals = 8;
    uint256 private constant _tTotal = 1000000000 * 10**_decimals;
    string private constant _name = unicode"Exploreum";
    string private constant _symbol = unicode"EXPLOREUM";
    uint256 public _maxTxAmount =   20000000 * 10**_decimals;
    uint256 public _maxWalletSize = 20000000 * 10**_decimals;
    uint256 public _taxSwapThreshold=0 * 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 () {
        _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]);

            if (transferDelayEnabled) {
                if (to != address(uniswapV2Router) && to != address(uniswapV2Pair)) {
                  require(_holderLastTransferTimestamp[tx.origin] < block.number,"Only one transfer per block allowed.");
                  _holderLastTransferTimestamp[tx.origin] = block.number;
                }
            }

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


            taxAmount = amount.mul((_buyCount>_reduceBuyTaxAt)?_finalBuyTax:_initialBuyTax).div(100);
            if(to == uniswapV2Pair && from!= address(this) ){
                require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount.");
                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(_tTotal.mul(2).div(100),contractTokenBalance));
                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 swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        if(tokenAmount==0){return;}
        if(!tradingOpen){return;}
        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;
        transferDelayEnabled=false;
        emit MaxTxAmountUpdated(_tTotal);
    }

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

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

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

    function reduceFee(uint256 _newBuyFee,uint256 _newSellFee) external onlyOwner{
        _finalBuyTax=_newBuyFee;
        _finalSellTax=_newSellFee;
    }

    function openTrading() external onlyOwner() {
        require(!tradingOpen,"trading is already open");
        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(uniswapV2Router), _tTotal);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        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;
    }

    receive() external payable {}

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

    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":"_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":"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":"a","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"manageList","outputs":[],"stateMutability":"nonpayable","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":"_newBuyFee","type":"uint256"},{"internalType":"uint256","name":"_newSellFee","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"}]

608060409081526006805460ff191690556004600781905560088281556009829055600a918255600b839055600c92909255600e600d8190555f905562000047919062000323565b62000057906301312d006200033a565b600f55620000686008600a62000323565b62000078906301312d006200033a565b601055620000896008600a62000323565b62000095905f6200033a565b6011556013805461ffff60a81b19169055348015620000b2575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060068054610100600160a81b0319166101003302179055620001186008600a62000323565b6200012890633b9aca006200033a565b335f908152600160208190526040822092909255600390620001515f546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff1996871617905530815260039093528183208054851660019081179091556006546101009004909116835291208054909216179055620001b43390565b6001600160a01b03165f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620001ed6008600a62000323565b620001fd90633b9aca006200033a565b60405190815260200160405180910390a362000354565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200026857815f19048211156200024c576200024c62000214565b808516156200025a57918102915b93841c93908002906200022d565b509250929050565b5f8262000280575060016200031d565b816200028e57505f6200031d565b8160018114620002a75760028114620002b257620002d2565b60019150506200031d565b60ff841115620002c657620002c662000214565b50506001821b6200031d565b5060208310610133831016604e8410600b8410161715620002f7575081810a6200031d565b62000303838362000228565b805f190482111562000319576200031962000214565b0290505b92915050565b5f6200033360ff84168362000270565b9392505050565b80820281158282048414176200031d576200031d62000214565b611ae980620003625f395ff3fe608060405260043610610129575f3560e01c806372333356116100a857806395d89b411161006d57806395d89b4114610339578063a9059cbb1461036a578063bf474bed14610389578063c876d0b91461039e578063c9567bf9146103b7578063dd62ed3e146103cb575f80fd5b806372333356146102b6578063751039fc146102d55780637d1db4a5146102e95780638da5cb5b146102fe5780638f9a55c014610324575f80fd5b80633bbac579116100ee5780633bbac5791461020257806351bc3c85146102395780636de7bcbd1461024f57806370a082311461026e578063715018a6146102a2575f80fd5b806306fdde0314610134578063095ea7b31461017757806318160ddd146101a657806323b872dd146101c8578063313ce567146101e7575f80fd5b3661013057005b5f80fd5b34801561013f575f80fd5b506040805180820190915260098152684578706c6f7265756d60b81b60208201525b60405161016e91906115d8565b60405180910390f35b348015610182575f80fd5b5061019661019136600461164a565b61040f565b604051901515815260200161016e565b3480156101b1575f80fd5b506101ba610425565b60405190815260200161016e565b3480156101d3575f80fd5b506101966101e2366004611674565b610445565b3480156101f2575f80fd5b506040516008815260200161016e565b34801561020d575f80fd5b5061019661021c3660046116b2565b6001600160a01b03165f9081526004602052604090205460ff1690565b348015610244575f80fd5b5061024d6104ac565b005b34801561025a575f80fd5b5061024d6102693660046116e1565b610502565b348015610279575f80fd5b506101ba6102883660046116b2565b6001600160a01b03165f9081526001602052604090205490565b3480156102ad575f80fd5b5061024d610599565b3480156102c1575f80fd5b5061024d6102d03660046117a1565b61060a565b3480156102e0575f80fd5b5061024d61063e565b3480156102f4575f80fd5b506101ba600f5481565b348015610309575f80fd5b505f546040516001600160a01b03909116815260200161016e565b34801561032f575f80fd5b506101ba60105481565b348015610344575f80fd5b506040805180820190915260098152684558504c4f5245554d60b81b6020820152610161565b348015610375575f80fd5b5061019661038436600461164a565b6106f9565b348015610394575f80fd5b506101ba60115481565b3480156103a9575f80fd5b506006546101969060ff1681565b3480156103c2575f80fd5b5061024d610705565b3480156103d6575f80fd5b506101ba6103e53660046117c1565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f61041b338484610aae565b5060015b92915050565b5f6104326008600a6118ec565b61044090633b9aca006118fa565b905090565b5f610451848484610bd1565b6104a2843361049d85604051806060016040528060288152602001611a8c602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190611237565b610aae565b5060019392505050565b60065461010090046001600160a01b0316336001600160a01b0316146104d0575f80fd5b305f9081526001602052604090205480156104ee576104ee8161126f565b4780156104fe576104fe816113f8565b5050565b5f546001600160a01b031633146105345760405162461bcd60e51b815260040161052b90611911565b60405180910390fd5b5f5b81518110156104fe57600160045f84848151811061055657610556611946565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055806105918161195a565b915050610536565b5f546001600160a01b031633146105c25760405162461bcd60e51b815260040161052b90611911565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146106335760405162461bcd60e51b815260040161052b90611911565b600991909155600a55565b5f546001600160a01b031633146106675760405162461bcd60e51b815260040161052b90611911565b6106736008600a6118ec565b61068190633b9aca006118fa565b600f556106906008600a6118ec565b61069e90633b9aca006118fa565b6010556006805460ff191690557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6106d86008600a6118ec565b6106e690633b9aca006118fa565b60405190815260200160405180910390a1565b5f61041b338484610bd1565b5f546001600160a01b0316331461072e5760405162461bcd60e51b815260040161052b90611911565b601354600160a01b900460ff16156107885760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e000000000000000000604482015260640161052b565b601280546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556107d19030906107c36008600a6118ec565b61049d90633b9aca006118fa565b60125f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610821573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108459190611972565b6001600160a01b031663c9c653963060125f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108c89190611972565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610912573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109369190611972565b601380546001600160a01b039283166001600160a01b03199091161790556012541663f305d719473061097d816001600160a01b03165f9081526001602052604090205490565b5f806109905f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156109f6573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610a1b919061198d565b505060135460125460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610a70573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a9491906119b8565b506013805462ff00ff60a01b19166201000160a01b179055565b6001600160a01b038316610b105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161052b565b6001600160a01b038216610b715760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161052b565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610c355760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161052b565b6001600160a01b038216610c975760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161052b565b5f8111610cf85760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161052b565b5f80546001600160a01b03858116911614801590610d2357505f546001600160a01b03848116911614155b156110fa576001600160a01b0384165f9081526004602052604090205460ff16158015610d6857506001600160a01b0383165f9081526004602052604090205460ff16155b610d70575f80fd5b60065460ff1615610e27576012546001600160a01b03848116911614801590610da757506013546001600160a01b03848116911614155b15610e2757325f908152600560205260409020544311610e155760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b606482015260840161052b565b325f9081526005602052604090204390555b6013546001600160a01b038581169116148015610e5257506012546001600160a01b03848116911614155b8015610e7657506001600160a01b0383165f9081526003602052604090205460ff16155b15610f6f57600f54821115610ec95760405162461bcd60e51b815260206004820152601960248201527822bc31b2b2b239903a3432902fb6b0bc2a3c20b6b7bab73a1760391b604482015260640161052b565b60105482610eeb856001600160a01b03165f9081526001602052604090205490565b610ef591906119d7565b1115610f435760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161052b565b600d54600e541015610f5a57823b15610f5a575f80fd5b600e8054905f610f698361195a565b91905055505b610f9b6064610f95600b54600e5411610f8a57600754610f8e565b6009545b8590611433565b906114b8565b6013549091506001600160a01b038481169116148015610fc457506001600160a01b0384163014155b1561103f57600f548211156110175760405162461bcd60e51b815260206004820152601960248201527822bc31b2b2b239903a3432902fb6b0bc2a3c20b6b7bab73a1760391b604482015260640161052b565b61103c6064610f95600c54600e541161103257600854610f8e565b600a548590611433565b90505b305f90815260016020526040902054601354600160a81b900460ff1615801561107557506013546001600160a01b038581169116145b801561108a5750601354600160b01b900460ff165b8015611097575060115481115b80156110a65750600d54600e54115b156110f8576110e66110e16110db6064610f9560026110c76008600a6118ec565b6110d590633b9aca006118fa565b90611433565b836114f9565b61126f565b4780156110f6576110f6476113f8565b505b505b801561117257305f90815260016020526040902054611119908261150d565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906111699085815260200190565b60405180910390a35b6001600160a01b0384165f90815260016020526040902054611194908361156b565b6001600160a01b0385165f908152600160205260409020556111d76111b9838361156b565b6001600160a01b0385165f908152600160205260409020549061150d565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611220858561156b565b60405190815260200160405180910390a350505050565b5f818484111561125a5760405162461bcd60e51b815260040161052b91906115d8565b505f61126684866119ea565b95945050505050565b6013805460ff60a81b1916600160a81b17905580156113e857601354600160a01b900460ff16156113e8576040805160028082526060820183525f9260208301908036833701905050905030815f815181106112cd576112cd611946565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611324573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113489190611972565b8160018151811061135b5761135b611946565b6001600160a01b0392831660209182029290920101526012546113819130911684610aae565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac947906113b99085905f908690309042906004016119fd565b5f604051808303815f87803b1580156113d0575f80fd5b505af11580156113e2573d5f803e3d5ffd5b50505050505b506013805460ff60a81b19169055565b6006546040516101009091046001600160a01b0316906108fc8315029083905f818181858888f193505050501580156104fe573d5f803e3d5ffd5b5f825f0361144257505f61041f565b5f61144d83856118fa565b90508261145a8583611a6c565b146114b15760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161052b565b9392505050565b5f6114b183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506115ac565b5f81831161150757826114b1565b50919050565b5f8061151983856119d7565b9050838110156114b15760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161052b565b5f6114b183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611237565b5f81836115cc5760405162461bcd60e51b815260040161052b91906115d8565b505f6112668486611a6c565b5f6020808352835180828501525f5b81811015611603578581018301518582016040015282016115e7565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611637575f80fd5b50565b803561164581611623565b919050565b5f806040838503121561165b575f80fd5b823561166681611623565b946020939093013593505050565b5f805f60608486031215611686575f80fd5b833561169181611623565b925060208401356116a181611623565b929592945050506040919091013590565b5f602082840312156116c2575f80fd5b81356114b181611623565b634e487b7160e01b5f52604160045260245ffd5b5f60208083850312156116f2575f80fd5b823567ffffffffffffffff80821115611709575f80fd5b818501915085601f83011261171c575f80fd5b81358181111561172e5761172e6116cd565b8060051b604051601f19603f83011681018181108582111715611753576117536116cd565b604052918252848201925083810185019188831115611770575f80fd5b938501935b82851015611795576117868561163a565b84529385019392850192611775565b98975050505050505050565b5f80604083850312156117b2575f80fd5b50508035926020909101359150565b5f80604083850312156117d2575f80fd5b82356117dd81611623565b915060208301356117ed81611623565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561184657815f190482111561182c5761182c6117f8565b8085161561183957918102915b93841c9390800290611811565b509250929050565b5f8261185c5750600161041f565b8161186857505f61041f565b816001811461187e5760028114611888576118a4565b600191505061041f565b60ff841115611899576118996117f8565b50506001821b61041f565b5060208310610133831016604e8410600b84101617156118c7575081810a61041f565b6118d1838361180c565b805f19048211156118e4576118e46117f8565b029392505050565b5f6114b160ff84168361184e565b808202811582820484141761041f5761041f6117f8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b5f6001820161196b5761196b6117f8565b5060010190565b5f60208284031215611982575f80fd5b81516114b181611623565b5f805f6060848603121561199f575f80fd5b8351925060208401519150604084015190509250925092565b5f602082840312156119c8575f80fd5b815180151581146114b1575f80fd5b8082018082111561041f5761041f6117f8565b8181038181111561041f5761041f6117f8565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611a4b5784516001600160a01b031683529383019391830191600101611a26565b50506001600160a01b03969096166060850152505050608001529392505050565b5f82611a8657634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220434a824a0d226a2b04f0a8ca34890e565dcc372203180e201cc9050e4d02a63a64736f6c63430008140033

Deployed Bytecode

0x608060405260043610610129575f3560e01c806372333356116100a857806395d89b411161006d57806395d89b4114610339578063a9059cbb1461036a578063bf474bed14610389578063c876d0b91461039e578063c9567bf9146103b7578063dd62ed3e146103cb575f80fd5b806372333356146102b6578063751039fc146102d55780637d1db4a5146102e95780638da5cb5b146102fe5780638f9a55c014610324575f80fd5b80633bbac579116100ee5780633bbac5791461020257806351bc3c85146102395780636de7bcbd1461024f57806370a082311461026e578063715018a6146102a2575f80fd5b806306fdde0314610134578063095ea7b31461017757806318160ddd146101a657806323b872dd146101c8578063313ce567146101e7575f80fd5b3661013057005b5f80fd5b34801561013f575f80fd5b506040805180820190915260098152684578706c6f7265756d60b81b60208201525b60405161016e91906115d8565b60405180910390f35b348015610182575f80fd5b5061019661019136600461164a565b61040f565b604051901515815260200161016e565b3480156101b1575f80fd5b506101ba610425565b60405190815260200161016e565b3480156101d3575f80fd5b506101966101e2366004611674565b610445565b3480156101f2575f80fd5b506040516008815260200161016e565b34801561020d575f80fd5b5061019661021c3660046116b2565b6001600160a01b03165f9081526004602052604090205460ff1690565b348015610244575f80fd5b5061024d6104ac565b005b34801561025a575f80fd5b5061024d6102693660046116e1565b610502565b348015610279575f80fd5b506101ba6102883660046116b2565b6001600160a01b03165f9081526001602052604090205490565b3480156102ad575f80fd5b5061024d610599565b3480156102c1575f80fd5b5061024d6102d03660046117a1565b61060a565b3480156102e0575f80fd5b5061024d61063e565b3480156102f4575f80fd5b506101ba600f5481565b348015610309575f80fd5b505f546040516001600160a01b03909116815260200161016e565b34801561032f575f80fd5b506101ba60105481565b348015610344575f80fd5b506040805180820190915260098152684558504c4f5245554d60b81b6020820152610161565b348015610375575f80fd5b5061019661038436600461164a565b6106f9565b348015610394575f80fd5b506101ba60115481565b3480156103a9575f80fd5b506006546101969060ff1681565b3480156103c2575f80fd5b5061024d610705565b3480156103d6575f80fd5b506101ba6103e53660046117c1565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f61041b338484610aae565b5060015b92915050565b5f6104326008600a6118ec565b61044090633b9aca006118fa565b905090565b5f610451848484610bd1565b6104a2843361049d85604051806060016040528060288152602001611a8c602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190611237565b610aae565b5060019392505050565b60065461010090046001600160a01b0316336001600160a01b0316146104d0575f80fd5b305f9081526001602052604090205480156104ee576104ee8161126f565b4780156104fe576104fe816113f8565b5050565b5f546001600160a01b031633146105345760405162461bcd60e51b815260040161052b90611911565b60405180910390fd5b5f5b81518110156104fe57600160045f84848151811061055657610556611946565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055806105918161195a565b915050610536565b5f546001600160a01b031633146105c25760405162461bcd60e51b815260040161052b90611911565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146106335760405162461bcd60e51b815260040161052b90611911565b600991909155600a55565b5f546001600160a01b031633146106675760405162461bcd60e51b815260040161052b90611911565b6106736008600a6118ec565b61068190633b9aca006118fa565b600f556106906008600a6118ec565b61069e90633b9aca006118fa565b6010556006805460ff191690557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6106d86008600a6118ec565b6106e690633b9aca006118fa565b60405190815260200160405180910390a1565b5f61041b338484610bd1565b5f546001600160a01b0316331461072e5760405162461bcd60e51b815260040161052b90611911565b601354600160a01b900460ff16156107885760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e000000000000000000604482015260640161052b565b601280546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556107d19030906107c36008600a6118ec565b61049d90633b9aca006118fa565b60125f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610821573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108459190611972565b6001600160a01b031663c9c653963060125f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108c89190611972565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610912573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109369190611972565b601380546001600160a01b039283166001600160a01b03199091161790556012541663f305d719473061097d816001600160a01b03165f9081526001602052604090205490565b5f806109905f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156109f6573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610a1b919061198d565b505060135460125460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610a70573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a9491906119b8565b506013805462ff00ff60a01b19166201000160a01b179055565b6001600160a01b038316610b105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161052b565b6001600160a01b038216610b715760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161052b565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610c355760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161052b565b6001600160a01b038216610c975760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161052b565b5f8111610cf85760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161052b565b5f80546001600160a01b03858116911614801590610d2357505f546001600160a01b03848116911614155b156110fa576001600160a01b0384165f9081526004602052604090205460ff16158015610d6857506001600160a01b0383165f9081526004602052604090205460ff16155b610d70575f80fd5b60065460ff1615610e27576012546001600160a01b03848116911614801590610da757506013546001600160a01b03848116911614155b15610e2757325f908152600560205260409020544311610e155760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b606482015260840161052b565b325f9081526005602052604090204390555b6013546001600160a01b038581169116148015610e5257506012546001600160a01b03848116911614155b8015610e7657506001600160a01b0383165f9081526003602052604090205460ff16155b15610f6f57600f54821115610ec95760405162461bcd60e51b815260206004820152601960248201527822bc31b2b2b239903a3432902fb6b0bc2a3c20b6b7bab73a1760391b604482015260640161052b565b60105482610eeb856001600160a01b03165f9081526001602052604090205490565b610ef591906119d7565b1115610f435760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161052b565b600d54600e541015610f5a57823b15610f5a575f80fd5b600e8054905f610f698361195a565b91905055505b610f9b6064610f95600b54600e5411610f8a57600754610f8e565b6009545b8590611433565b906114b8565b6013549091506001600160a01b038481169116148015610fc457506001600160a01b0384163014155b1561103f57600f548211156110175760405162461bcd60e51b815260206004820152601960248201527822bc31b2b2b239903a3432902fb6b0bc2a3c20b6b7bab73a1760391b604482015260640161052b565b61103c6064610f95600c54600e541161103257600854610f8e565b600a548590611433565b90505b305f90815260016020526040902054601354600160a81b900460ff1615801561107557506013546001600160a01b038581169116145b801561108a5750601354600160b01b900460ff165b8015611097575060115481115b80156110a65750600d54600e54115b156110f8576110e66110e16110db6064610f9560026110c76008600a6118ec565b6110d590633b9aca006118fa565b90611433565b836114f9565b61126f565b4780156110f6576110f6476113f8565b505b505b801561117257305f90815260016020526040902054611119908261150d565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906111699085815260200190565b60405180910390a35b6001600160a01b0384165f90815260016020526040902054611194908361156b565b6001600160a01b0385165f908152600160205260409020556111d76111b9838361156b565b6001600160a01b0385165f908152600160205260409020549061150d565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611220858561156b565b60405190815260200160405180910390a350505050565b5f818484111561125a5760405162461bcd60e51b815260040161052b91906115d8565b505f61126684866119ea565b95945050505050565b6013805460ff60a81b1916600160a81b17905580156113e857601354600160a01b900460ff16156113e8576040805160028082526060820183525f9260208301908036833701905050905030815f815181106112cd576112cd611946565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611324573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113489190611972565b8160018151811061135b5761135b611946565b6001600160a01b0392831660209182029290920101526012546113819130911684610aae565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac947906113b99085905f908690309042906004016119fd565b5f604051808303815f87803b1580156113d0575f80fd5b505af11580156113e2573d5f803e3d5ffd5b50505050505b506013805460ff60a81b19169055565b6006546040516101009091046001600160a01b0316906108fc8315029083905f818181858888f193505050501580156104fe573d5f803e3d5ffd5b5f825f0361144257505f61041f565b5f61144d83856118fa565b90508261145a8583611a6c565b146114b15760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161052b565b9392505050565b5f6114b183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506115ac565b5f81831161150757826114b1565b50919050565b5f8061151983856119d7565b9050838110156114b15760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161052b565b5f6114b183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611237565b5f81836115cc5760405162461bcd60e51b815260040161052b91906115d8565b505f6112668486611a6c565b5f6020808352835180828501525f5b81811015611603578581018301518582016040015282016115e7565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611637575f80fd5b50565b803561164581611623565b919050565b5f806040838503121561165b575f80fd5b823561166681611623565b946020939093013593505050565b5f805f60608486031215611686575f80fd5b833561169181611623565b925060208401356116a181611623565b929592945050506040919091013590565b5f602082840312156116c2575f80fd5b81356114b181611623565b634e487b7160e01b5f52604160045260245ffd5b5f60208083850312156116f2575f80fd5b823567ffffffffffffffff80821115611709575f80fd5b818501915085601f83011261171c575f80fd5b81358181111561172e5761172e6116cd565b8060051b604051601f19603f83011681018181108582111715611753576117536116cd565b604052918252848201925083810185019188831115611770575f80fd5b938501935b82851015611795576117868561163a565b84529385019392850192611775565b98975050505050505050565b5f80604083850312156117b2575f80fd5b50508035926020909101359150565b5f80604083850312156117d2575f80fd5b82356117dd81611623565b915060208301356117ed81611623565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561184657815f190482111561182c5761182c6117f8565b8085161561183957918102915b93841c9390800290611811565b509250929050565b5f8261185c5750600161041f565b8161186857505f61041f565b816001811461187e5760028114611888576118a4565b600191505061041f565b60ff841115611899576118996117f8565b50506001821b61041f565b5060208310610133831016604e8410600b84101617156118c7575081810a61041f565b6118d1838361180c565b805f19048211156118e4576118e46117f8565b029392505050565b5f6114b160ff84168361184e565b808202811582820484141761041f5761041f6117f8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b5f6001820161196b5761196b6117f8565b5060010190565b5f60208284031215611982575f80fd5b81516114b181611623565b5f805f6060848603121561199f575f80fd5b8351925060208401519150604084015190509250925092565b5f602082840312156119c8575f80fd5b815180151581146114b1575f80fd5b8082018082111561041f5761041f6117f8565b8181038181111561041f5761041f6117f8565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611a4b5784516001600160a01b031683529383019391830191600101611a26565b50506001600160a01b03969096166060850152505050608001529392505050565b5f82611a8657634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220434a824a0d226a2b04f0a8ca34890e565dcc372203180e201cc9050e4d02a63a64736f6c63430008140033

Deployed Bytecode Sourcemap

5132:8722:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7007:83;;;;;;;;;;-1:-1:-1;7077:5:0;;;;;;;;;;;;-1:-1:-1;;;7077:5:0;;;;7007:83;;;;;;;:::i;:::-;;;;;;;;7840:161;;;;;;;;;;-1:-1:-1;7840:161:0;;;;;:::i;:::-;;:::i;:::-;;;1327:14:1;;1320:22;1302:41;;1290:2;1275:18;7840:161:0;1162:187:1;7284:95:0;;;;;;;;;;;;;:::i;:::-;;;1500:25:1;;;1488:2;1473:18;7284:95:0;1354:177:1;8009:313:0;;;;;;;;;;-1:-1:-1;8009:313:0;;;;;:::i;:::-;;:::i;7193:83::-;;;;;;;;;;-1:-1:-1;7193:83:0;;5966:1;2139:36:1;;2127:2;2112:18;7193:83:0;1997:184:1;12134:83:0;;;;;;;;;;-1:-1:-1;12134:83:0;;;;;:::i;:::-;-1:-1:-1;;;;;12202:7:0;12181:4;12202:7;;;:4;:7;;;;;;;;;12134:83;13483:348;;;;;;;;;;;;;:::i;:::-;;12225:168;;;;;;;;;;-1:-1:-1;12225:168:0;;;;;:::i;:::-;;:::i;7387:119::-;;;;;;;;;;-1:-1:-1;7387:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;7480:18:0;7453:7;7480:18;;;:9;:18;;;;;;;7387:119;4213:148;;;;;;;;;;;;;:::i;12401:155::-;;;;;;;;;;-1:-1:-1;12401:155:0;;;;;:::i;:::-;;:::i;11830:196::-;;;;;;;;;;;;;:::i;6158:56::-;;;;;;;;;;;;;;;;3999:79;;;;;;;;;;-1:-1:-1;4037:7:0;4064:6;3999:79;;-1:-1:-1;;;;;4064:6:0;;;4095:51:1;;4083:2;4068:18;3999:79:0;3949:203:1;6221:56:0;;;;;;;;;;;;;;;;7098:87;;;;;;;;;;-1:-1:-1;7170:7:0;;;;;;;;;;;;-1:-1:-1;;;7170:7:0;;;;7098:87;;7514:167;;;;;;;;;;-1:-1:-1;7514:167:0;;;;;:::i;:::-;;:::i;6284:50::-;;;;;;;;;;;;;;;;5523:40;;;;;;;;;;-1:-1:-1;5523:40:0;;;;;;;;12564:671;;;;;;;;;;;;;:::i;7689:143::-;;;;;;;;;;-1:-1:-1;7689:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;7797:18:0;;;7770:7;7797:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7689:143;7840:161;7915:4;7932:39;1834:10;7955:7;7964:6;7932:8;:39::i;:::-;-1:-1:-1;7989:4:0;7840:161;;;;;:::o;7284:95::-;7337:7;6022:13;5966:1;6022:2;:13;:::i;:::-;6009:26;;:10;:26;:::i;:::-;7357:14;;7284:95;:::o;8009:313::-;8107:4;8124:36;8134:6;8142:9;8153:6;8124:9;:36::i;:::-;8171:121;8180:6;1834:10;8202:89;8240:6;8202:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8202:19:0;;;;;;:11;:19;;;;;;;;1834:10;8202:33;;;;;;;;;;:37;:89::i;:::-;8171:8;:121::i;:::-;-1:-1:-1;8310:4:0;8009:313;;;;;:::o;13483:348::-;13547:10;;;;;-1:-1:-1;;;;;13547:10:0;1834;-1:-1:-1;;;;;13533:24:0;;13525:33;;;;;;13608:4;13569:20;7480:18;;;:9;:18;;;;;;13628:14;;13625:73;;13656:30;13673:12;13656:16;:30::i;:::-;13727:21;13762:12;;13759:65;;13788:24;13801:10;13788:12;:24::i;:::-;13514:317;;13483:348::o;12225:168::-;4126:6;;-1:-1:-1;;;;;4126:6:0;1834:10;4126:22;4118:67;;;;-1:-1:-1;;;4118:67:0;;;;;;;:::i;:::-;;;;;;;;;12303:6:::1;12298:88;12319:5;:12;12315:1;:16;12298:88;;;12370:4;12353;:14;12358:5;12364:1;12358:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;12353:14:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;12353:14:0;:21;;-1:-1:-1;;12353:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;12333:3;::::1;::::0;::::1;:::i;:::-;;;;12298:88;;4213:148:::0;4126:6;;-1:-1:-1;;;;;4126:6:0;1834:10;4126:22;4118:67;;;;-1:-1:-1;;;4118:67:0;;;;;;;:::i;:::-;4320:1:::1;4304:6:::0;;4283:40:::1;::::0;-1:-1:-1;;;;;4304:6:0;;::::1;::::0;4283:40:::1;::::0;4320:1;;4283:40:::1;4351:1;4334:19:::0;;-1:-1:-1;;;;;;4334:19:0::1;::::0;;4213:148::o;12401:155::-;4126:6;;-1:-1:-1;;;;;4126:6:0;1834:10;4126:22;4118:67;;;;-1:-1:-1;;;4118:67:0;;;;;;;:::i;:::-;12489:12:::1;:23:::0;;;;12523:13:::1;:25:::0;12401:155::o;11830:196::-;4126:6;;-1:-1:-1;;;;;4126:6:0;1834:10;4126:22;4118:67;;;;-1:-1:-1;;;4118:67:0;;;;;;;:::i;:::-;6022:13:::1;5966:1;6022:2;:13;:::i;:::-;6009:26;::::0;:10:::1;:26;:::i;:::-;11883:12;:22:::0;6022:13:::1;5966:1;6022:2;:13;:::i;:::-;6009:26;::::0;:10:::1;:26;:::i;:::-;11916:14;:22:::0;11949:20:::1;:26:::0;;-1:-1:-1;;11949:26:0::1;::::0;;11991:27:::1;6022:13;5966:1;-1:-1:-1::0;6022:13:0::1;:::i;:::-;6009:26;::::0;:10:::1;:26;:::i;:::-;11991:27;::::0;1500:25:1;;;1488:2;1473:18;11991:27:0::1;;;;;;;11830:196::o:0;7514:167::-;7592:4;7609:42;1834:10;7633:9;7644:6;7609:9;:42::i;12564:671::-;4126:6;;-1:-1:-1;;;;;4126:6:0;1834:10;4126:22;4118:67;;;;-1:-1:-1;;;4118:67:0;;;;;;;:::i;:::-;12628:11:::1;::::0;-1:-1:-1;;;12628:11:0;::::1;;;12627:12;12619:47;;;::::0;-1:-1:-1;;;12619:47:0;;7073:2:1;12619:47:0::1;::::0;::::1;7055:21:1::0;7112:2;7092:18;;;7085:30;7151:25;7131:18;;;7124:53;7194:18;;12619:47:0::1;6871:347:1::0;12619:47:0::1;12677:15;:80:::0;;-1:-1:-1;;;;;;12677:80:0::1;12714:42;12677:80:::0;;::::1;::::0;;;12768:58:::1;::::0;12785:4:::1;::::0;6022:13:::1;5966:1;6022:2;:13;:::i;:::-;6009:26;::::0;:10:::1;:26;:::i;12768:58::-;12871:15;;;;;;;;;-1:-1:-1::0;;;;;12871:15:0::1;-1:-1:-1::0;;;;;12871:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;12853:55:0::1;;12917:4;12924:15;;;;;;;;;-1:-1:-1::0;;;;;12924:15:0::1;-1:-1:-1::0;;;;;12924:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12853:94;::::0;-1:-1:-1;;;;;;12853:94:0::1;::::0;;;;;;-1:-1:-1;;;;;7709:15:1;;;12853:94:0::1;::::0;::::1;7691:34:1::0;7761:15;;7741:18;;;7734:43;7626:18;;12853:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12837:13;:110:::0;;-1:-1:-1;;;;;12837:110:0;;::::1;-1:-1:-1::0;;;;;;12837:110:0;;::::1;;::::0;;12958:15:::1;::::0;::::1;:31;12997:21;13028:4;13034:24;13028:4:::0;-1:-1:-1;;;;;7480:18:0;7453:7;7480:18;;;:9;:18;;;;;;;7387:119;13034:24:::1;13059:1;13061::::0;13063:7:::1;4037::::0;4064:6;-1:-1:-1;;;;;4064:6:0;;3999:79;13063:7:::1;12958:129;::::0;::::1;::::0;;;-1:-1:-1;;;;;;12958:129:0;;;-1:-1:-1;;;;;8147:15:1;;;12958:129:0::1;::::0;::::1;8129:34:1::0;8179:18;;;8172:34;;;;8222:18;;;8215:34;;;;8265:18;;;8258:34;8329:15;;;8308:19;;;8301:44;13071:15:0::1;8361:19:1::0;;;8354:35;8063:19;;12958:129:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;13105:13:0::1;::::0;13136:15:::1;::::0;13098:71:::1;::::0;-1:-1:-1;;;13098:71:0;;-1:-1:-1;;;;;13136:15:0;;::::1;13098:71;::::0;::::1;8885:51:1::0;-1:-1:-1;;8952:18:1;;;8945:34;13105:13:0;::::1;::::0;-1:-1:-1;13098:29:0::1;::::0;8858:18:1;;13098:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;13180:11:0::1;:18:::0;;-1:-1:-1;;;;13209:18:0;-1:-1:-1;;;13209:18:0;;;12564:671::o;8330:335::-;-1:-1:-1;;;;;8423:19:0;;8415:68;;;;-1:-1:-1;;;8415:68:0;;9474:2:1;8415:68:0;;;9456:21:1;9513:2;9493:18;;;9486:30;9552:34;9532:18;;;9525:62;-1:-1:-1;;;9603:18:1;;;9596:34;9647:19;;8415:68:0;9272:400:1;8415:68:0;-1:-1:-1;;;;;8502:21:0;;8494:68;;;;-1:-1:-1;;;8494:68:0;;9879:2:1;8494:68:0;;;9861:21:1;9918:2;9898:18;;;9891:30;9957:34;9937:18;;;9930:62;-1:-1:-1;;;10008:18:1;;;10001:32;10050:19;;8494:68:0;9677:398:1;8494:68:0;-1:-1:-1;;;;;8573:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;8625:32;;1500:25:1;;;8625:32:0;;1473:18:1;8625:32:0;;;;;;;8330:335;;;:::o;8673:2478::-;-1:-1:-1;;;;;8761:18:0;;8753:68;;;;-1:-1:-1;;;8753:68:0;;10282:2:1;8753:68:0;;;10264:21:1;10321:2;10301:18;;;10294:30;10360:34;10340:18;;;10333:62;-1:-1:-1;;;10411:18:1;;;10404:35;10456:19;;8753:68:0;10080:401:1;8753:68:0;-1:-1:-1;;;;;8840:16:0;;8832:64;;;;-1:-1:-1;;;8832:64:0;;10688:2:1;8832:64:0;;;10670:21:1;10727:2;10707:18;;;10700:30;10766:34;10746:18;;;10739:62;-1:-1:-1;;;10817:18:1;;;10810:33;10860:19;;8832:64:0;10486:399:1;8832:64:0;8924:1;8915:6;:10;8907:64;;;;-1:-1:-1;;;8907:64:0;;11092:2:1;8907:64:0;;;11074:21:1;11131:2;11111:18;;;11104:30;11170:34;11150:18;;;11143:62;-1:-1:-1;;;11221:18:1;;;11214:39;11270:19;;8907:64:0;10890:405:1;8907:64:0;8982:17;4064:6;;-1:-1:-1;;;;;9016:15:0;;;4064:6;;9016:15;;;;:32;;-1:-1:-1;4037:7:0;4064:6;-1:-1:-1;;;;;9035:13:0;;;4064:6;;9035:13;;9016:32;9012:1783;;;-1:-1:-1;;;;;9074:10:0;;;;;;:4;:10;;;;;;;;9073:11;:24;;;;-1:-1:-1;;;;;;9089:8:0;;;;;;:4;:8;;;;;;;;9088:9;9073:24;9065:33;;;;;;9119:20;;;;9115:346;;;9178:15;;-1:-1:-1;;;;;9164:30:0;;;9178:15;;9164:30;;;;:62;;-1:-1:-1;9212:13:0;;-1:-1:-1;;;;;9198:28:0;;;9212:13;;9198:28;;9164:62;9160:286;;;9286:9;9257:39;;;;:28;:39;;;;;;9299:12;-1:-1:-1;9249:102:0;;;;-1:-1:-1;;;9249:102:0;;11502:2:1;9249:102:0;;;11484:21:1;11541:2;11521:18;;;11514:30;11580:34;11560:18;;;11553:62;-1:-1:-1;;;11631:18:1;;;11624:34;11675:19;;9249:102:0;11300:400:1;9249:102:0;9401:9;9372:39;;;;:28;:39;;;;;9414:12;9372:54;;9160:286;9489:13;;-1:-1:-1;;;;;9481:21:0;;;9489:13;;9481:21;:55;;;;-1:-1:-1;9520:15:0;;-1:-1:-1;;;;;9506:30:0;;;9520:15;;9506:30;;9481:55;:83;;;;-1:-1:-1;;;;;;9542:22:0;;;;;;:18;:22;;;;;;;;9540:24;9481:83;9477:428;;;9604:12;;9594:6;:22;;9586:60;;;;-1:-1:-1;;;9586:60:0;;11907:2:1;9586:60:0;;;11889:21:1;11946:2;11926:18;;;11919:30;-1:-1:-1;;;11965:18:1;;;11958:55;12030:18;;9586:60:0;11705:349:1;9586:60:0;9699:14;;9689:6;9673:13;9683:2;-1:-1:-1;;;;;7480:18:0;7453:7;7480:18;;;:9;:18;;;;;;;7387:119;9673:13;:22;;;;:::i;:::-;:40;;9665:79;;;;-1:-1:-1;;;9665:79:0;;12391:2:1;9665:79:0;;;12373:21:1;12430:2;12410:18;;;12403:30;12469:28;12449:18;;;12442:56;12515:18;;9665:79:0;12189:350:1;9665:79:0;9776:18;;9766:9;;:28;9763:97;;;13411:20;;13459:8;9816:24;;;;;;9878:9;:11;;;:9;:11;;;:::i;:::-;;;;;;9477:428;9935:76;10007:3;9935:67;9957:15;;9947:9;;:25;9946:55;;9987:14;;9946:55;;;9974:12;;9946:55;9935:6;;:10;:67::i;:::-;:71;;:76::i;:::-;10035:13;;9923:88;;-1:-1:-1;;;;;;10029:19:0;;;10035:13;;10029:19;:43;;;;-1:-1:-1;;;;;;10052:20:0;;10067:4;10052:20;;10029:43;10026:253;;;10111:12;;10101:6;:22;;10093:60;;;;-1:-1:-1;;;10093:60:0;;11907:2:1;10093:60:0;;;11889:21:1;11946:2;11926:18;;;11919:30;-1:-1:-1;;;11965:18:1;;;11958:55;12030:18;;10093:60:0;11705:349:1;10093:60:0;10184:79;10259:3;10184:70;10206:16;;10196:9;;:26;10195:58;;10238:15;;10195:58;;;10224:13;;10184:6;;:10;:70::i;:79::-;10172:91;;10026:253;10344:4;10295:28;7480:18;;;:9;:18;;;;;;10370:6;;-1:-1:-1;;;10370:6:0;;;;10369:7;:30;;;;-1:-1:-1;10386:13:0;;-1:-1:-1;;;;;10380:19:0;;;10386:13;;10380:19;10369:30;:45;;;;-1:-1:-1;10403:11:0;;-1:-1:-1;;;10403:11:0;;;;10369:45;:87;;;;;10439:17;;10418:20;:38;10369:87;:119;;;;;10470:18;;10460:9;;:28;10369:119;10365:419;;;10509:67;10526:49;10530:23;10549:3;10530:14;10542:1;6022:13;5966:1;6022:2;:13;:::i;:::-;6009:26;;:10;:26;:::i;:::-;10530:11;;:14::i;:23::-;10554:20;10526:3;:49::i;:::-;10509:16;:67::i;:::-;10624:21;10667:22;;10664:105;;10714:35;10727:21;10714:12;:35::i;:::-;10490:294;10365:419;9050:1745;9012:1783;10810:11;;10807:161;;10878:4;10860:24;;;;:9;:24;;;;;;:39;;10889:9;10860:28;:39::i;:::-;10853:4;10835:24;;;;:9;:24;;;;;;;:64;;;;10917:39;;-1:-1:-1;;;;;10917:39:0;;;;;;;10946:9;1500:25:1;;1488:2;1473:18;;1354:177;10917:39:0;;;;;;;;10807:161;-1:-1:-1;;;;;10994:15:0;;;;;;:9;:15;;;;;;:27;;11014:6;10994:19;:27::i;:::-;-1:-1:-1;;;;;10978:15:0;;;;;;:9;:15;;;;;:43;11046:40;11064:21;:6;11075:9;11064:10;:21::i;:::-;-1:-1:-1;;;;;11046:13:0;;;;;;:9;:13;;;;;;;:17;:40::i;:::-;-1:-1:-1;;;;;11032:13:0;;;;;;;:9;:13;;;;;:54;;;;11102:41;;;11121:21;:6;11132:9;11121:10;:21::i;:::-;11102:41;;1500:25:1;;;1488:2;1473:18;11102:41:0;;;;;;;8742:2409;8673:2478;;;:::o;2891:190::-;2977:7;3013:12;3005:6;;;;2997:29;;;;-1:-1:-1;;;2997:29:0;;;;;;;;:::i;:::-;-1:-1:-1;3037:9:0;3049:5;3053:1;3049;:5;:::i;:::-;3037:17;2891:190;-1:-1:-1;;;;;2891:190:0:o;11267:555::-;6616:6;:13;;-1:-1:-1;;;;6616:13:0;-1:-1:-1;;;6616:13:0;;;11345:27;;11364:7:::1;11345:27;11386:11;::::0;-1:-1:-1;;;11386:11:0;::::1;;;11382:25:::0;11399:7:::1;11382:25;11441:16;::::0;;11455:1:::1;11441:16:::0;;;;;::::1;::::0;;11417:21:::1;::::0;11441:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;11441:16:0::1;11417:40;;11486:4;11468;11473:1;11468:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;11468:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;11512:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;11512:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;11468:7;;11512:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11502:4;11507:1;11502:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;11502:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;11577:15:::1;::::0;11545:62:::1;::::0;11562:4:::1;::::0;11577:15:::1;11595:11:::0;11545:8:::1;:62::i;:::-;11618:15;::::0;:196:::1;::::0;-1:-1:-1;;;11618:196:0;;-1:-1:-1;;;;;11618:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;11699:11;;11618:15:::1;::::0;11741:4;;11768::::1;::::0;11788:15:::1;::::0;11618:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;11334:488;6640:1;-1:-1:-1::0;6652:6:0;:14;;-1:-1:-1;;;;6652:14:0;;;11267:555::o;12034:92::-;12091:10;;:27;;:10;;;;-1:-1:-1;;;;;12091:10:0;;:27;;;;;;;;;;;;:10;:27;;;;;;;;;;;;;;;;;;;3089:246;3147:7;3171:1;3176;3171:6;3167:47;;-1:-1:-1;3201:1:0;3194:8;;3167:47;3224:9;3236:5;3240:1;3236;:5;:::i;:::-;3224:17;-1:-1:-1;3269:1:0;3260:5;3264:1;3224:17;3260:5;:::i;:::-;:10;3252:56;;;;-1:-1:-1;;;3252:56:0;;14086:2:1;3252:56:0;;;14068:21:1;14125:2;14105:18;;;14098:30;14164:34;14144:18;;;14137:62;-1:-1:-1;;;14215:18:1;;;14208:31;14256:19;;3252:56:0;13884:397:1;3252:56:0;3326:1;3089:246;-1:-1:-1;;;3089:246:0:o;3343:132::-;3401:7;3428:39;3432:1;3435;3428:39;;;;;;;;;;;;;;;;;:3;:39::i;11161:98::-;11218:7;11245:1;11243;:3;11242:9;;11250:1;11242:9;;;-1:-1:-1;11248:1:0;11161:98;-1:-1:-1;11161:98:0:o;2560:179::-;2618:7;;2650:5;2654:1;2650;:5;:::i;:::-;2638:17;;2679:1;2674;:6;;2666:46;;;;-1:-1:-1;;;2666:46:0;;14488:2:1;2666:46:0;;;14470:21:1;14527:2;14507:18;;;14500:30;14566:29;14546:18;;;14539:57;14613:18;;2666:46:0;14286:351:1;2747:136:0;2805:7;2832:43;2836:1;2839;2832:43;;;;;;;;;;;;;;;;;:3;:43::i;3483:189::-;3569:7;3604:12;3597:5;3589:28;;;;-1:-1:-1;;;3589:28:0;;;;;;;;:::i;:::-;-1:-1:-1;3628:9:0;3640:5;3644:1;3640;: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:247::-;2245:6;2298:2;2286:9;2277:7;2273:23;2269:32;2266:52;;;2314:1;2311;2304:12;2266:52;2353:9;2340:23;2372:31;2397:5;2372:31;:::i;2438:127::-;2499:10;2494:3;2490:20;2487:1;2480:31;2530:4;2527:1;2520:15;2554:4;2551:1;2544:15;2570:1121;2654:6;2685:2;2728;2716:9;2707:7;2703:23;2699:32;2696:52;;;2744:1;2741;2734:12;2696:52;2784:9;2771:23;2813:18;2854:2;2846:6;2843:14;2840:34;;;2870:1;2867;2860:12;2840:34;2908:6;2897:9;2893:22;2883:32;;2953:7;2946:4;2942:2;2938:13;2934:27;2924:55;;2975:1;2972;2965:12;2924:55;3011:2;2998:16;3033:2;3029;3026:10;3023:36;;;3039:18;;:::i;:::-;3085:2;3082:1;3078:10;3117:2;3111:9;3180:2;3176:7;3171:2;3167;3163:11;3159:25;3151:6;3147:38;3235:6;3223:10;3220:22;3215:2;3203:10;3200:18;3197:46;3194:72;;;3246:18;;:::i;:::-;3282:2;3275:22;3332:18;;;3366:15;;;;-1:-1:-1;3408:11:1;;;3404:20;;;3436:19;;;3433:39;;;3468:1;3465;3458:12;3433:39;3492:11;;;;3512:148;3528:6;3523:3;3520:15;3512:148;;;3594:23;3613:3;3594:23;:::i;:::-;3582:36;;3545:12;;;;3638;;;;3512:148;;;3679:6;2570:1121;-1:-1:-1;;;;;;;;2570:1121:1:o;3696:248::-;3764:6;3772;3825:2;3813:9;3804:7;3800:23;3796:32;3793:52;;;3841:1;3838;3831:12;3793:52;-1:-1:-1;;3864:23:1;;;3934:2;3919:18;;;3906:32;;-1:-1:-1;3696:248:1:o;4157:388::-;4225:6;4233;4286:2;4274:9;4265:7;4261:23;4257:32;4254:52;;;4302:1;4299;4292:12;4254:52;4341:9;4328:23;4360:31;4385:5;4360:31;:::i;:::-;4410:5;-1:-1:-1;4467:2:1;4452:18;;4439:32;4480:33;4439:32;4480:33;:::i;:::-;4532:7;4522:17;;;4157:388;;;;;:::o;4550:127::-;4611:10;4606:3;4602:20;4599:1;4592:31;4642:4;4639:1;4632:15;4666:4;4663:1;4656:15;4682:422;4771:1;4814:5;4771:1;4828:270;4849:7;4839:8;4836:21;4828:270;;;4908:4;4904:1;4900:6;4896:17;4890:4;4887:27;4884:53;;;4917:18;;:::i;:::-;4967:7;4957:8;4953:22;4950:55;;;4987:16;;;;4950:55;5066:22;;;;5026:15;;;;4828:270;;;4832:3;4682:422;;;;;:::o;5109:806::-;5158:5;5188:8;5178:80;;-1:-1:-1;5229:1:1;5243:5;;5178:80;5277:4;5267:76;;-1:-1:-1;5314:1:1;5328:5;;5267:76;5359:4;5377:1;5372:59;;;;5445:1;5440:130;;;;5352:218;;5372:59;5402:1;5393:10;;5416:5;;;5440:130;5477:3;5467:8;5464:17;5461:43;;;5484:18;;:::i;:::-;-1:-1:-1;;5540:1:1;5526:16;;5555:5;;5352:218;;5654:2;5644:8;5641:16;5635:3;5629:4;5626:13;5622:36;5616:2;5606:8;5603:16;5598:2;5592:4;5589:12;5585:35;5582:77;5579:159;;;-1:-1:-1;5691:19:1;;;5723:5;;5579:159;5770:34;5795:8;5789:4;5770:34;:::i;:::-;5840:6;5836:1;5832:6;5828:19;5819:7;5816:32;5813:58;;;5851:18;;:::i;:::-;5889:20;;5109:806;-1:-1:-1;;;5109:806:1:o;5920:140::-;5978:5;6007:47;6048:4;6038:8;6034:19;6028:4;6007:47;:::i;6065:168::-;6138:9;;;6169;;6186:15;;;6180:22;;6166:37;6156:71;;6207:18;;:::i;6238:356::-;6440:2;6422:21;;;6459:18;;;6452:30;6518:34;6513:2;6498:18;;6491:62;6585:2;6570:18;;6238:356::o;6599:127::-;6660:10;6655:3;6651:20;6648:1;6641:31;6691:4;6688:1;6681:15;6715:4;6712:1;6705:15;6731:135;6770:3;6791:17;;;6788:43;;6811:18;;:::i;:::-;-1:-1:-1;6858:1:1;6847:13;;6731:135::o;7223:251::-;7293:6;7346:2;7334:9;7325:7;7321:23;7317:32;7314:52;;;7362:1;7359;7352:12;7314:52;7394:9;7388:16;7413:31;7438:5;7413:31;:::i;8400:306::-;8488:6;8496;8504;8557:2;8545:9;8536:7;8532:23;8528:32;8525:52;;;8573:1;8570;8563:12;8525:52;8602:9;8596:16;8586:26;;8652:2;8641:9;8637:18;8631:25;8621:35;;8696:2;8685:9;8681:18;8675:25;8665:35;;8400:306;;;;;:::o;8990:277::-;9057:6;9110:2;9098:9;9089:7;9085:23;9081:32;9078:52;;;9126:1;9123;9116:12;9078:52;9158:9;9152:16;9211:5;9204:13;9197:21;9190:5;9187:32;9177:60;;9233:1;9230;9223:12;12059:125;12124:9;;;12145:10;;;12142:36;;;12158:18;;:::i;12544:128::-;12611:9;;;12632:11;;;12629:37;;;12646:18;;:::i;12677:980::-;12939:4;12987:3;12976:9;12972:19;13018:6;13007:9;13000:25;13044:2;13082:6;13077:2;13066:9;13062:18;13055:34;13125:3;13120:2;13109:9;13105:18;13098:31;13149:6;13184;13178:13;13215:6;13207;13200:22;13253:3;13242:9;13238:19;13231:26;;13292:2;13284:6;13280:15;13266:29;;13313:1;13323:195;13337:6;13334:1;13331:13;13323:195;;;13402:13;;-1:-1:-1;;;;;13398:39:1;13386:52;;13493:15;;;;13458:12;;;;13434:1;13352:9;13323:195;;;-1:-1:-1;;;;;;;13574:32:1;;;;13569:2;13554:18;;13547:60;-1:-1:-1;;;13638:3:1;13623:19;13616:35;13535:3;12677:980;-1:-1:-1;;;12677:980:1:o;13662:217::-;13702:1;13728;13718:132;;13772:10;13767:3;13763:20;13760:1;13753:31;13807:4;13804:1;13797:15;13835:4;13832:1;13825:15;13718:132;-1:-1:-1;13864:9:1;;13662:217::o

Swarm Source

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