ETH Price: $2,422.64 (-2.72%)

Token

PsychoWojakImInYourWallsImInYourWallsImInYourWalls... (PSYCHO)
 

Overview

Max Total Supply

1,000,000,000 PSYCHO

Holders

20

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
860,478,878.66637982 PSYCHO

Value
$0.00
0x89fed108f67122bf98816afee6c5bbcedcf6c630
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:
PsychoWojak

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

// SPDX-License-Identifier: MIT
/*

ImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWalls!

Website: https://psychowojak.xyz
Twitter: https://x.com/psycho_wojak_
Telegram: https://t.me/PsychoWojakErc

*/

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 PsychoWojak 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=20;
    uint256 private _initialSellTax=20;
    uint256 private _finalBuyTax=2;
    uint256 private _finalSellTax=2;
    uint256 private _reduceBuyTaxAt=2;
    uint256 private _reduceSellTaxAt=2;
    uint256 private _preventSwapBefore=10;
    uint256 private _buyCount=0;

    uint8 private constant _decimals = 8;
    uint256 private constant _tTotal = 1000000000 * 10**_decimals;
    string private constant _name = unicode"PsychoWojakImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWallsImInYourWalls?";
    string private constant _symbol = unicode"PSYCHO";
    uint256 public _maxTxAmount =   20000000 * 10**_decimals;
    uint256 public _maxWalletSize = 20000000 * 10**_decimals;
    uint256 public _taxSwapThreshold=1000000 * 10**_decimals;
    uint256 public _maxTaxSwap=10000000 * 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(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 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 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":"_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":"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":[],"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":[],"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"}]

60806040526006805460ff1916905560146007819055600890815560026009819055600a818155600b829055600c91909155600d8190555f600e5562000046919062000345565b62000056906301312d006200035c565b600f55620000676008600a62000345565b62000077906301312d006200035c565b601055620000886008600a62000345565b6200009790620f42406200035c565b601155620000a86008600a62000345565b620000b790629896806200035c565b6012556014805461ffff60a81b19169055348015620000d4575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060068054610100600160a81b03191661010033021790556200013a6008600a62000345565b6200014a90633b9aca006200035c565b335f908152600160208190526040822092909255600390620001735f546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff1996871617905530815260039093528183208054851660019081179091556006546101009004909116835291208054909216179055620001d63390565b6001600160a01b03165f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6200020f6008600a62000345565b6200021f90633b9aca006200035c565b60405190815260200160405180910390a362000376565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200028a57815f19048211156200026e576200026e62000236565b808516156200027c57918102915b93841c93908002906200024f565b509250929050565b5f82620002a2575060016200033f565b81620002b057505f6200033f565b8160018114620002c95760028114620002d457620002f4565b60019150506200033f565b60ff841115620002e857620002e862000236565b50506001821b6200033f565b5060208310610133831016604e8410600b841016171562000319575081810a6200033f565b6200032583836200024a565b805f19048211156200033b576200033b62000236565b0290505b92915050565b5f6200035560ff84168362000292565b9392505050565b80820281158282048414176200033f576200033f62000236565b611a5080620003845f395ff3fe60806040526004361061011e575f3560e01c8063751039fc1161009d578063a9059cbb11610062578063a9059cbb1461031a578063bf474bed14610339578063c876d0b91461034e578063c9567bf914610367578063dd62ed3e1461037b575f80fd5b8063751039fc146102885780637d1db4a51461029c5780638da5cb5b146102b15780638f9a55c0146102d757806395d89b41146102ec575f80fd5b8063313ce567116100e3578063313ce567146101d85780633bbac579146101f357806351bc3c851461022a57806370a0823114610240578063715018a614610274575f80fd5b806306fdde0314610129578063095ea7b3146101535780630faee56f1461018257806318160ddd146101a557806323b872dd146101b9575f80fd5b3661012557005b5f80fd5b348015610134575f80fd5b5061013d6103bf565b60405161014a91906114cb565b60405180910390f35b34801561015e575f80fd5b5061017261016d36600461152d565b6103e2565b604051901515815260200161014a565b34801561018d575f80fd5b5061019760125481565b60405190815260200161014a565b3480156101b0575f80fd5b506101976103f8565b3480156101c4575f80fd5b506101726101d3366004611557565b610418565b3480156101e3575f80fd5b506040516008815260200161014a565b3480156101fe575f80fd5b5061017261020d366004611595565b6001600160a01b03165f9081526004602052604090205460ff1690565b348015610235575f80fd5b5061023e61047f565b005b34801561024b575f80fd5b5061019761025a366004611595565b6001600160a01b03165f9081526001602052604090205490565b34801561027f575f80fd5b5061023e6104d5565b348015610293575f80fd5b5061023e61054f565b3480156102a7575f80fd5b50610197600f5481565b3480156102bc575f80fd5b505f546040516001600160a01b03909116815260200161014a565b3480156102e2575f80fd5b5061019760105481565b3480156102f7575f80fd5b5060408051808201909152600681526550535943484f60d01b602082015261013d565b348015610325575f80fd5b5061017261033436600461152d565b61060a565b348015610344575f80fd5b5061019760115481565b348015610359575f80fd5b506006546101729060ff1681565b348015610372575f80fd5b5061023e610616565b348015610386575f80fd5b506101976103953660046115b0565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6060604051806101a00160405280610178815260200161187b6101789139905090565b5f6103ee3384846109bf565b5060015b92915050565b5f6104056008600a6116db565b61041390633b9aca006116e9565b905090565b5f610424848484610ae2565b6104758433610470856040518060600160405280602881526020016119f3602891396001600160a01b038a165f908152600260209081526040808320338452909152902054919061112a565b6109bf565b5060019392505050565b60065461010090046001600160a01b0316336001600160a01b0316146104a3575f80fd5b305f9081526001602052604090205480156104c1576104c181611162565b4780156104d1576104d1816112eb565b5050565b5f546001600160a01b031633146105075760405162461bcd60e51b81526004016104fe90611700565b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146105785760405162461bcd60e51b81526004016104fe90611700565b6105846008600a6116db565b61059290633b9aca006116e9565b600f556105a16008600a6116db565b6105af90633b9aca006116e9565b6010556006805460ff191690557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6105e96008600a6116db565b6105f790633b9aca006116e9565b60405190815260200160405180910390a1565b5f6103ee338484610ae2565b5f546001600160a01b0316331461063f5760405162461bcd60e51b81526004016104fe90611700565b601454600160a01b900460ff16156106995760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016104fe565b601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556106e29030906106d46008600a6116db565b61047090633b9aca006116e9565b60135f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610732573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107569190611735565b6001600160a01b031663c9c653963060135f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107d99190611735565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610823573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108479190611735565b601480546001600160a01b039283166001600160a01b03199091161790556013541663f305d719473061088e816001600160a01b03165f9081526001602052604090205490565b5f806108a15f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610907573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061092c9190611750565b505060145460135460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610981573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109a5919061177b565b506014805462ff00ff60a01b19166201000160a01b179055565b6001600160a01b038316610a215760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104fe565b6001600160a01b038216610a825760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104fe565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b465760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104fe565b6001600160a01b038216610ba85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104fe565b5f8111610c095760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104fe565b5f80546001600160a01b03858116911614801590610c3457505f546001600160a01b03848116911614155b15610fed576001600160a01b0384165f9081526004602052604090205460ff16158015610c7957506001600160a01b0383165f9081526004602052604090205460ff16155b610c81575f80fd5b60065460ff1615610d38576013546001600160a01b03848116911614801590610cb857506014546001600160a01b03848116911614155b15610d3857325f908152600560205260409020544311610d265760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b60648201526084016104fe565b325f9081526005602052604090204390555b6014546001600160a01b038581169116148015610d6357506013546001600160a01b03848116911614155b8015610d8757506001600160a01b0383165f9081526003602052604090205460ff16155b15610e8057600f54821115610dda5760405162461bcd60e51b815260206004820152601960248201527822bc31b2b2b239903a3432902fb6b0bc2a3c20b6b7bab73a1760391b60448201526064016104fe565b60105482610dfc856001600160a01b03165f9081526001602052604090205490565b610e06919061179a565b1115610e545760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104fe565b600d54600e541015610e6b57823b15610e6b575f80fd5b600e8054905f610e7a836117ad565b91905055505b610eac6064610ea6600b54600e5411610e9b57600754610e9f565b6009545b8590611326565b906113ab565b6014549091506001600160a01b038481169116148015610ed557506001600160a01b0384163014155b15610f5057600f54821115610f285760405162461bcd60e51b815260206004820152601960248201527822bc31b2b2b239903a3432902fb6b0bc2a3c20b6b7bab73a1760391b60448201526064016104fe565b610f4d6064610ea6600c54600e5411610f4357600854610e9f565b600a548590611326565b90505b305f90815260016020526040902054601454600160a81b900460ff16158015610f8657506014546001600160a01b038581169116145b8015610f9b5750601454600160b01b900460ff165b8015610fa8575060115481115b8015610fb75750600d54600e54115b15610feb57610fd9610fd484610fcf846012546113ec565b6113ec565b611162565b478015610fe957610fe9476112eb565b505b505b801561106557305f9081526001602052604090205461100c9082611400565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061105c9085815260200190565b60405180910390a35b6001600160a01b0384165f90815260016020526040902054611087908361145e565b6001600160a01b0385165f908152600160205260409020556110ca6110ac838361145e565b6001600160a01b0385165f9081526001602052604090205490611400565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611113858561145e565b60405190815260200160405180910390a350505050565b5f818484111561114d5760405162461bcd60e51b81526004016104fe91906114cb565b505f61115984866117c5565b95945050505050565b6014805460ff60a81b1916600160a81b17905580156112db57601454600160a01b900460ff16156112db576040805160028082526060820183525f9260208301908036833701905050905030815f815181106111c0576111c06117d8565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611217573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061123b9190611735565b8160018151811061124e5761124e6117d8565b6001600160a01b03928316602091820292909201015260135461127491309116846109bf565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac947906112ac9085905f908690309042906004016117ec565b5f604051808303815f87803b1580156112c3575f80fd5b505af11580156112d5573d5f803e3d5ffd5b50505050505b506014805460ff60a81b19169055565b6006546040516101009091046001600160a01b0316906108fc8315029083905f818181858888f193505050501580156104d1573d5f803e3d5ffd5b5f825f0361133557505f6103f2565b5f61134083856116e9565b90508261134d858361185b565b146113a45760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104fe565b9392505050565b5f6113a483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061149f565b5f8183116113fa57826113a4565b50919050565b5f8061140c838561179a565b9050838110156113a45760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104fe565b5f6113a483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061112a565b5f81836114bf5760405162461bcd60e51b81526004016104fe91906114cb565b505f611159848661185b565b5f6020808352835180828501525f5b818110156114f6578581018301518582016040015282016114da565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461152a575f80fd5b50565b5f806040838503121561153e575f80fd5b823561154981611516565b946020939093013593505050565b5f805f60608486031215611569575f80fd5b833561157481611516565b9250602084013561158481611516565b929592945050506040919091013590565b5f602082840312156115a5575f80fd5b81356113a481611516565b5f80604083850312156115c1575f80fd5b82356115cc81611516565b915060208301356115dc81611516565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561163557815f190482111561161b5761161b6115e7565b8085161561162857918102915b93841c9390800290611600565b509250929050565b5f8261164b575060016103f2565b8161165757505f6103f2565b816001811461166d576002811461167757611693565b60019150506103f2565b60ff841115611688576116886115e7565b50506001821b6103f2565b5060208310610133831016604e8410600b84101617156116b6575081810a6103f2565b6116c083836115fb565b805f19048211156116d3576116d36115e7565b029392505050565b5f6113a460ff84168361163d565b80820281158282048414176103f2576103f26115e7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215611745575f80fd5b81516113a481611516565b5f805f60608486031215611762575f80fd5b8351925060208401519150604084015190509250925092565b5f6020828403121561178b575f80fd5b815180151581146113a4575f80fd5b808201808211156103f2576103f26115e7565b5f600182016117be576117be6115e7565b5060010190565b818103818111156103f2576103f26115e7565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561183a5784516001600160a01b031683529383019391830191600101611815565b50506001600160a01b03969096166060850152505050608001529392505050565b5f8261187557634e487b7160e01b5f52601260045260245ffd5b50049056fe50737963686f576f6a616b496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c733f45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220bf120c1a17db5a7efd1c04c6fd952c897160e5b0706b691e651ae5df3696cc9064736f6c63430008140033

Deployed Bytecode

0x60806040526004361061011e575f3560e01c8063751039fc1161009d578063a9059cbb11610062578063a9059cbb1461031a578063bf474bed14610339578063c876d0b91461034e578063c9567bf914610367578063dd62ed3e1461037b575f80fd5b8063751039fc146102885780637d1db4a51461029c5780638da5cb5b146102b15780638f9a55c0146102d757806395d89b41146102ec575f80fd5b8063313ce567116100e3578063313ce567146101d85780633bbac579146101f357806351bc3c851461022a57806370a0823114610240578063715018a614610274575f80fd5b806306fdde0314610129578063095ea7b3146101535780630faee56f1461018257806318160ddd146101a557806323b872dd146101b9575f80fd5b3661012557005b5f80fd5b348015610134575f80fd5b5061013d6103bf565b60405161014a91906114cb565b60405180910390f35b34801561015e575f80fd5b5061017261016d36600461152d565b6103e2565b604051901515815260200161014a565b34801561018d575f80fd5b5061019760125481565b60405190815260200161014a565b3480156101b0575f80fd5b506101976103f8565b3480156101c4575f80fd5b506101726101d3366004611557565b610418565b3480156101e3575f80fd5b506040516008815260200161014a565b3480156101fe575f80fd5b5061017261020d366004611595565b6001600160a01b03165f9081526004602052604090205460ff1690565b348015610235575f80fd5b5061023e61047f565b005b34801561024b575f80fd5b5061019761025a366004611595565b6001600160a01b03165f9081526001602052604090205490565b34801561027f575f80fd5b5061023e6104d5565b348015610293575f80fd5b5061023e61054f565b3480156102a7575f80fd5b50610197600f5481565b3480156102bc575f80fd5b505f546040516001600160a01b03909116815260200161014a565b3480156102e2575f80fd5b5061019760105481565b3480156102f7575f80fd5b5060408051808201909152600681526550535943484f60d01b602082015261013d565b348015610325575f80fd5b5061017261033436600461152d565b61060a565b348015610344575f80fd5b5061019760115481565b348015610359575f80fd5b506006546101729060ff1681565b348015610372575f80fd5b5061023e610616565b348015610386575f80fd5b506101976103953660046115b0565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6060604051806101a00160405280610178815260200161187b6101789139905090565b5f6103ee3384846109bf565b5060015b92915050565b5f6104056008600a6116db565b61041390633b9aca006116e9565b905090565b5f610424848484610ae2565b6104758433610470856040518060600160405280602881526020016119f3602891396001600160a01b038a165f908152600260209081526040808320338452909152902054919061112a565b6109bf565b5060019392505050565b60065461010090046001600160a01b0316336001600160a01b0316146104a3575f80fd5b305f9081526001602052604090205480156104c1576104c181611162565b4780156104d1576104d1816112eb565b5050565b5f546001600160a01b031633146105075760405162461bcd60e51b81526004016104fe90611700565b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146105785760405162461bcd60e51b81526004016104fe90611700565b6105846008600a6116db565b61059290633b9aca006116e9565b600f556105a16008600a6116db565b6105af90633b9aca006116e9565b6010556006805460ff191690557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6105e96008600a6116db565b6105f790633b9aca006116e9565b60405190815260200160405180910390a1565b5f6103ee338484610ae2565b5f546001600160a01b0316331461063f5760405162461bcd60e51b81526004016104fe90611700565b601454600160a01b900460ff16156106995760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016104fe565b601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556106e29030906106d46008600a6116db565b61047090633b9aca006116e9565b60135f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610732573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107569190611735565b6001600160a01b031663c9c653963060135f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107d99190611735565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610823573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108479190611735565b601480546001600160a01b039283166001600160a01b03199091161790556013541663f305d719473061088e816001600160a01b03165f9081526001602052604090205490565b5f806108a15f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610907573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061092c9190611750565b505060145460135460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610981573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109a5919061177b565b506014805462ff00ff60a01b19166201000160a01b179055565b6001600160a01b038316610a215760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104fe565b6001600160a01b038216610a825760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104fe565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b465760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104fe565b6001600160a01b038216610ba85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104fe565b5f8111610c095760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104fe565b5f80546001600160a01b03858116911614801590610c3457505f546001600160a01b03848116911614155b15610fed576001600160a01b0384165f9081526004602052604090205460ff16158015610c7957506001600160a01b0383165f9081526004602052604090205460ff16155b610c81575f80fd5b60065460ff1615610d38576013546001600160a01b03848116911614801590610cb857506014546001600160a01b03848116911614155b15610d3857325f908152600560205260409020544311610d265760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b60648201526084016104fe565b325f9081526005602052604090204390555b6014546001600160a01b038581169116148015610d6357506013546001600160a01b03848116911614155b8015610d8757506001600160a01b0383165f9081526003602052604090205460ff16155b15610e8057600f54821115610dda5760405162461bcd60e51b815260206004820152601960248201527822bc31b2b2b239903a3432902fb6b0bc2a3c20b6b7bab73a1760391b60448201526064016104fe565b60105482610dfc856001600160a01b03165f9081526001602052604090205490565b610e06919061179a565b1115610e545760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104fe565b600d54600e541015610e6b57823b15610e6b575f80fd5b600e8054905f610e7a836117ad565b91905055505b610eac6064610ea6600b54600e5411610e9b57600754610e9f565b6009545b8590611326565b906113ab565b6014549091506001600160a01b038481169116148015610ed557506001600160a01b0384163014155b15610f5057600f54821115610f285760405162461bcd60e51b815260206004820152601960248201527822bc31b2b2b239903a3432902fb6b0bc2a3c20b6b7bab73a1760391b60448201526064016104fe565b610f4d6064610ea6600c54600e5411610f4357600854610e9f565b600a548590611326565b90505b305f90815260016020526040902054601454600160a81b900460ff16158015610f8657506014546001600160a01b038581169116145b8015610f9b5750601454600160b01b900460ff165b8015610fa8575060115481115b8015610fb75750600d54600e54115b15610feb57610fd9610fd484610fcf846012546113ec565b6113ec565b611162565b478015610fe957610fe9476112eb565b505b505b801561106557305f9081526001602052604090205461100c9082611400565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061105c9085815260200190565b60405180910390a35b6001600160a01b0384165f90815260016020526040902054611087908361145e565b6001600160a01b0385165f908152600160205260409020556110ca6110ac838361145e565b6001600160a01b0385165f9081526001602052604090205490611400565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611113858561145e565b60405190815260200160405180910390a350505050565b5f818484111561114d5760405162461bcd60e51b81526004016104fe91906114cb565b505f61115984866117c5565b95945050505050565b6014805460ff60a81b1916600160a81b17905580156112db57601454600160a01b900460ff16156112db576040805160028082526060820183525f9260208301908036833701905050905030815f815181106111c0576111c06117d8565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611217573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061123b9190611735565b8160018151811061124e5761124e6117d8565b6001600160a01b03928316602091820292909201015260135461127491309116846109bf565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac947906112ac9085905f908690309042906004016117ec565b5f604051808303815f87803b1580156112c3575f80fd5b505af11580156112d5573d5f803e3d5ffd5b50505050505b506014805460ff60a81b19169055565b6006546040516101009091046001600160a01b0316906108fc8315029083905f818181858888f193505050501580156104d1573d5f803e3d5ffd5b5f825f0361133557505f6103f2565b5f61134083856116e9565b90508261134d858361185b565b146113a45760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104fe565b9392505050565b5f6113a483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061149f565b5f8183116113fa57826113a4565b50919050565b5f8061140c838561179a565b9050838110156113a45760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104fe565b5f6113a483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061112a565b5f81836114bf5760405162461bcd60e51b81526004016104fe91906114cb565b505f611159848661185b565b5f6020808352835180828501525f5b818110156114f6578581018301518582016040015282016114da565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461152a575f80fd5b50565b5f806040838503121561153e575f80fd5b823561154981611516565b946020939093013593505050565b5f805f60608486031215611569575f80fd5b833561157481611516565b9250602084013561158481611516565b929592945050506040919091013590565b5f602082840312156115a5575f80fd5b81356113a481611516565b5f80604083850312156115c1575f80fd5b82356115cc81611516565b915060208301356115dc81611516565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561163557815f190482111561161b5761161b6115e7565b8085161561162857918102915b93841c9390800290611600565b509250929050565b5f8261164b575060016103f2565b8161165757505f6103f2565b816001811461166d576002811461167757611693565b60019150506103f2565b60ff841115611688576116886115e7565b50506001821b6103f2565b5060208310610133831016604e8410600b84101617156116b6575081810a6103f2565b6116c083836115fb565b805f19048211156116d3576116d36115e7565b029392505050565b5f6113a460ff84168361163d565b80820281158282048414176103f2576103f26115e7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215611745575f80fd5b81516113a481611516565b5f805f60608486031215611762575f80fd5b8351925060208401519150604084015190509250925092565b5f6020828403121561178b575f80fd5b815180151581146113a4575f80fd5b808201808211156103f2576103f26115e7565b5f600182016117be576117be6115e7565b5060010190565b818103818111156103f2576103f26115e7565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561183a5784516001600160a01b031683529383019391830191600101611815565b50506001600160a01b03969096166060850152505050608001529392505050565b5f8261187557634e487b7160e01b5f52601260045260245ffd5b50049056fe50737963686f576f6a616b496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c73496d496e596f757257616c6c733f45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220bf120c1a17db5a7efd1c04c6fd952c897160e5b0706b691e651ae5df3696cc9064736f6c63430008140033

Deployed Bytecode Sourcemap

3971:8820:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6277:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7112:161;;;;;;;;;;-1:-1:-1;7112:161:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;7112:161:0;1023:187:1;5551:51:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;5551:51:0;1215:177:1;6554:95:0;;;;;;;;;;;;;:::i;7281:313::-;;;;;;;;;;-1:-1:-1;7281:313:0;;;;;:::i;:::-;;:::i;6463:83::-;;;;;;;;;;-1:-1:-1;6463:83:0;;4806:1;2000:36:1;;1988:2;1973:18;6463:83:0;1858:184:1;11408:83:0;;;;;;;;;;-1:-1:-1;11408:83:0;;;;;:::i;:::-;-1:-1:-1;;;;;11476:7:0;11455:4;11476:7;;;:4;:7;;;;;;;;;11408:83;12420:348;;;;;;;;;;;;;:::i;:::-;;6659:119;;;;;;;;;;-1:-1:-1;6659:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;6752:18:0;6725:7;6752:18;;;:9;:18;;;;;;;6659:119;3048:148;;;;;;;;;;;;;:::i;11104:196::-;;;;;;;;;;;;;:::i;5362:56::-;;;;;;;;;;;;;;;;2834:79;;;;;;;;;;-1:-1:-1;2872:7:0;2899:6;2834:79;;-1:-1:-1;;;;;2899:6:0;;;2445:51:1;;2433:2;2418:18;2834:79:0;2299:203:1;5425:56:0;;;;;;;;;;;;;;;;6368:87;;;;;;;;;;-1:-1:-1;6440:7:0;;;;;;;;;;;;-1:-1:-1;;;6440:7:0;;;;6368:87;;6786:167;;;;;;;;;;-1:-1:-1;6786:167:0;;;;;:::i;:::-;;:::i;5488:56::-;;;;;;;;;;;;;;;;4364:40;;;;;;;;;;-1:-1:-1;4364:40:0;;;;;;;;11499:671;;;;;;;;;;;;;:::i;6961:143::-;;;;;;;;;;-1:-1:-1;6961:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;7069:18:0;;;7042:7;7069:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6961:143;6277:83;6314:13;6347:5;;;;;;;;;;;;;;;;;6340:12;;6277:83;:::o;7112:161::-;7187:4;7204:39;667:10;7227:7;7236:6;7204:8;:39::i;:::-;-1:-1:-1;7261:4:0;7112:161;;;;;:::o;6554:95::-;6607:7;4862:13;4806:1;4862:2;:13;:::i;:::-;4849:26;;:10;:26;:::i;:::-;6627:14;;6554:95;:::o;7281:313::-;7379:4;7396:36;7406:6;7414:9;7425:6;7396:9;:36::i;:::-;7443:121;7452:6;667:10;7474:89;7512:6;7474:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7474:19:0;;;;;;:11;:19;;;;;;;;667:10;7474:33;;;;;;;;;;:37;:89::i;:::-;7443:8;:121::i;:::-;-1:-1:-1;7582:4:0;7281:313;;;;;:::o;12420:348::-;12484:10;;;;;-1:-1:-1;;;;;12484:10:0;667;-1:-1:-1;;;;;12470:24:0;;12462:33;;;;;;12545:4;12506:20;6752:18;;;:9;:18;;;;;;12565:14;;12562:73;;12593:30;12610:12;12593:16;:30::i;:::-;12664:21;12699:12;;12696:65;;12725:24;12738:10;12725:12;:24::i;:::-;12451:317;;12420:348::o;3048:148::-;2961:6;;-1:-1:-1;;;;;2961:6:0;667:10;2961:22;2953:67;;;;-1:-1:-1;;;2953:67:0;;;;;;;:::i;:::-;;;;;;;;;3155:1:::1;3139:6:::0;;3118:40:::1;::::0;-1:-1:-1;;;;;3139:6:0;;::::1;::::0;3118:40:::1;::::0;3155:1;;3118:40:::1;3186:1;3169:19:::0;;-1:-1:-1;;;;;;3169:19:0::1;::::0;;3048:148::o;11104:196::-;2961:6;;-1:-1:-1;;;;;2961:6:0;667:10;2961:22;2953:67;;;;-1:-1:-1;;;2953:67:0;;;;;;;:::i;:::-;4862:13:::1;4806:1;4862:2;:13;:::i;:::-;4849:26;::::0;:10:::1;:26;:::i;:::-;11157:12;:22:::0;4862:13:::1;4806:1;4862:2;:13;:::i;:::-;4849:26;::::0;:10:::1;:26;:::i;:::-;11190:14;:22:::0;11223:20:::1;:26:::0;;-1:-1:-1;;11223:26:0::1;::::0;;11265:27:::1;4862:13;4806:1;-1:-1:-1::0;4862:13:0::1;:::i;:::-;4849:26;::::0;:10:::1;:26;:::i;:::-;11265:27;::::0;1361:25:1;;;1349:2;1334:18;11265:27:0::1;;;;;;;11104:196::o:0;6786:167::-;6864:4;6881:42;667:10;6905:9;6916:6;6881:9;:42::i;11499:671::-;2961:6;;-1:-1:-1;;;;;2961:6:0;667:10;2961:22;2953:67;;;;-1:-1:-1;;;2953:67:0;;;;;;;:::i;:::-;11563:11:::1;::::0;-1:-1:-1;;;11563:11:0;::::1;;;11562:12;11554:47;;;::::0;-1:-1:-1;;;11554:47:0;;5151:2:1;11554:47:0::1;::::0;::::1;5133:21:1::0;5190:2;5170:18;;;5163:30;5229:25;5209:18;;;5202:53;5272:18;;11554:47:0::1;4949:347:1::0;11554:47:0::1;11612:15;:80:::0;;-1:-1:-1;;;;;;11612:80:0::1;11649:42;11612:80:::0;;::::1;::::0;;;11703:58:::1;::::0;11720:4:::1;::::0;4862:13:::1;4806:1;4862:2;:13;:::i;:::-;4849:26;::::0;:10:::1;:26;:::i;11703:58::-;11806:15;;;;;;;;;-1:-1:-1::0;;;;;11806:15:0::1;-1:-1:-1::0;;;;;11806:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;11788:55:0::1;;11852:4;11859:15;;;;;;;;;-1:-1:-1::0;;;;;11859:15:0::1;-1:-1:-1::0;;;;;11859:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11788:94;::::0;-1:-1:-1;;;;;;11788:94:0::1;::::0;;;;;;-1:-1:-1;;;;;5787:15:1;;;11788:94:0::1;::::0;::::1;5769:34:1::0;5839:15;;5819:18;;;5812:43;5704:18;;11788:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11772:13;:110:::0;;-1:-1:-1;;;;;11772:110:0;;::::1;-1:-1:-1::0;;;;;;11772:110:0;;::::1;;::::0;;11893:15:::1;::::0;::::1;:31;11932:21;11963:4;11969:24;11963:4:::0;-1:-1:-1;;;;;6752:18:0;6725:7;6752:18;;;:9;:18;;;;;;;6659:119;11969:24:::1;11994:1;11996::::0;11998:7:::1;2872::::0;2899:6;-1:-1:-1;;;;;2899:6:0;;2834:79;11998:7:::1;11893:129;::::0;::::1;::::0;;;-1:-1:-1;;;;;;11893:129:0;;;-1:-1:-1;;;;;6225:15:1;;;11893:129:0::1;::::0;::::1;6207:34:1::0;6257:18;;;6250:34;;;;6300:18;;;6293:34;;;;6343:18;;;6336:34;6407:15;;;6386:19;;;6379:44;12006:15:0::1;6439:19:1::0;;;6432:35;6141:19;;11893:129:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;12040:13:0::1;::::0;12071:15:::1;::::0;12033:71:::1;::::0;-1:-1:-1;;;12033:71:0;;-1:-1:-1;;;;;12071:15:0;;::::1;12033:71;::::0;::::1;6963:51:1::0;-1:-1:-1;;7030:18:1;;;7023:34;12040:13:0;::::1;::::0;-1:-1:-1;12033:29:0::1;::::0;6936:18:1;;12033:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;12115:11:0::1;:18:::0;;-1:-1:-1;;;;12144:18:0;-1:-1:-1;;;12144:18:0;;;11499:671::o;7602:335::-;-1:-1:-1;;;;;7695:19:0;;7687:68;;;;-1:-1:-1;;;7687:68:0;;7552:2:1;7687:68:0;;;7534:21:1;7591:2;7571:18;;;7564:30;7630:34;7610:18;;;7603:62;-1:-1:-1;;;7681:18:1;;;7674:34;7725:19;;7687:68:0;7350:400:1;7687:68:0;-1:-1:-1;;;;;7774:21:0;;7766:68;;;;-1:-1:-1;;;7766:68:0;;7957:2:1;7766:68:0;;;7939:21:1;7996:2;7976:18;;;7969:30;8035:34;8015:18;;;8008:62;-1:-1:-1;;;8086:18:1;;;8079:32;8128:19;;7766:68:0;7755:398:1;7766:68:0;-1:-1:-1;;;;;7845:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;7897:32;;1361:25:1;;;7897:32:0;;1334:18:1;7897:32:0;;;;;;;7602:335;;;:::o;7947:2478::-;-1:-1:-1;;;;;8035:18:0;;8027:68;;;;-1:-1:-1;;;8027:68:0;;8360:2:1;8027:68:0;;;8342:21:1;8399:2;8379:18;;;8372:30;8438:34;8418:18;;;8411:62;-1:-1:-1;;;8489:18:1;;;8482:35;8534:19;;8027:68:0;8158:401:1;8027:68:0;-1:-1:-1;;;;;8114:16:0;;8106:64;;;;-1:-1:-1;;;8106:64:0;;8766:2:1;8106:64:0;;;8748:21:1;8805:2;8785:18;;;8778:30;8844:34;8824:18;;;8817:62;-1:-1:-1;;;8895:18:1;;;8888:33;8938:19;;8106:64:0;8564:399:1;8106:64:0;8198:1;8189:6;:10;8181:64;;;;-1:-1:-1;;;8181:64:0;;9170:2:1;8181:64:0;;;9152:21:1;9209:2;9189:18;;;9182:30;9248:34;9228:18;;;9221:62;-1:-1:-1;;;9299:18:1;;;9292:39;9348:19;;8181:64:0;8968:405:1;8181:64:0;8256:17;2899:6;;-1:-1:-1;;;;;8290:15:0;;;2899:6;;8290:15;;;;:32;;-1:-1:-1;2872:7:0;2899:6;-1:-1:-1;;;;;8309:13:0;;;2899:6;;8309:13;;8290:32;8286:1783;;;-1:-1:-1;;;;;8348:10:0;;;;;;:4;:10;;;;;;;;8347:11;:24;;;;-1:-1:-1;;;;;;8363:8:0;;;;;;:4;:8;;;;;;;;8362:9;8347:24;8339:33;;;;;;8393:20;;;;8389:346;;;8452:15;;-1:-1:-1;;;;;8438:30:0;;;8452:15;;8438:30;;;;:62;;-1:-1:-1;8486:13:0;;-1:-1:-1;;;;;8472:28:0;;;8486:13;;8472:28;;8438:62;8434:286;;;8560:9;8531:39;;;;:28;:39;;;;;;8573:12;-1:-1:-1;8523:102:0;;;;-1:-1:-1;;;8523:102:0;;9580:2:1;8523:102:0;;;9562:21:1;9619:2;9599:18;;;9592:30;9658:34;9638:18;;;9631:62;-1:-1:-1;;;9709:18:1;;;9702:34;9753:19;;8523:102:0;9378:400:1;8523:102:0;8675:9;8646:39;;;;:28;:39;;;;;8688:12;8646:54;;8434:286;8763:13;;-1:-1:-1;;;;;8755:21:0;;;8763:13;;8755:21;:55;;;;-1:-1:-1;8794:15:0;;-1:-1:-1;;;;;8780:30:0;;;8794:15;;8780:30;;8755:55;:83;;;;-1:-1:-1;;;;;;8816:22:0;;;;;;:18;:22;;;;;;;;8814:24;8755:83;8751:428;;;8878:12;;8868:6;:22;;8860:60;;;;-1:-1:-1;;;8860:60:0;;9985:2:1;8860:60:0;;;9967:21:1;10024:2;10004:18;;;9997:30;-1:-1:-1;;;10043:18:1;;;10036:55;10108:18;;8860:60:0;9783:349:1;8860:60:0;8973:14;;8963:6;8947:13;8957:2;-1:-1:-1;;;;;6752:18:0;6725:7;6752:18;;;:9;:18;;;;;;;6659:119;8947:13;:22;;;;:::i;:::-;:40;;8939:79;;;;-1:-1:-1;;;8939:79:0;;10469:2:1;8939:79:0;;;10451:21:1;10508:2;10488:18;;;10481:30;10547:28;10527:18;;;10520:56;10593:18;;8939:79:0;10267:350:1;8939:79:0;9050:18;;9040:9;;:28;9037:97;;;12348:20;;12396:8;9090:24;;;;;;9152:9;:11;;;:9;:11;;;:::i;:::-;;;;;;8751:428;9209:76;9281:3;9209:67;9231:15;;9221:9;;:25;9220:55;;9261:14;;9220:55;;;9248:12;;9220:55;9209:6;;:10;:67::i;:::-;:71;;:76::i;:::-;9309:13;;9197:88;;-1:-1:-1;;;;;;9303:19:0;;;9309:13;;9303:19;:43;;;;-1:-1:-1;;;;;;9326:20:0;;9341:4;9326:20;;9303:43;9300:253;;;9385:12;;9375:6;:22;;9367:60;;;;-1:-1:-1;;;9367:60:0;;9985:2:1;9367:60:0;;;9967:21:1;10024:2;10004:18;;;9997:30;-1:-1:-1;;;10043:18:1;;;10036:55;10108:18;;9367:60:0;9783:349:1;9367:60:0;9458:79;9533:3;9458:70;9480:16;;9470:9;;:26;9469:58;;9512:15;;9469:58;;;9498:13;;9458:6;;:10;:70::i;:79::-;9446:91;;9300:253;9618:4;9569:28;6752:18;;;:9;:18;;;;;;9644:6;;-1:-1:-1;;;9644:6:0;;;;9643:7;:30;;;;-1:-1:-1;9660:13:0;;-1:-1:-1;;;;;9654:19:0;;;9660:13;;9654:19;9643:30;:45;;;;-1:-1:-1;9677:11:0;;-1:-1:-1;;;9677:11:0;;;;9643:45;:87;;;;;9713:17;;9692:20;:38;9643:87;:119;;;;;9744:18;;9734:9;;:28;9643:119;9639:419;;;9783:67;9800:49;9804:6;9811:37;9815:20;9836:11;;9811:3;:37::i;:::-;9800:3;:49::i;:::-;9783:16;:67::i;:::-;9898:21;9941:22;;9938:105;;9988:35;10001:21;9988:12;:35::i;:::-;9764:294;9639:419;8324:1745;8286:1783;10084:11;;10081:161;;10152:4;10134:24;;;;:9;:24;;;;;;:39;;10163:9;10134:28;:39::i;:::-;10127:4;10109:24;;;;:9;:24;;;;;;;:64;;;;10191:39;;-1:-1:-1;;;;;10191:39:0;;;;;;;10220:9;1361:25:1;;1349:2;1334:18;;1215:177;10191:39:0;;;;;;;;10081:161;-1:-1:-1;;;;;10268:15:0;;;;;;:9;:15;;;;;;:27;;10288:6;10268:19;:27::i;:::-;-1:-1:-1;;;;;10252:15:0;;;;;;:9;:15;;;;;:43;10320:40;10338:21;:6;10349:9;10338:10;:21::i;:::-;-1:-1:-1;;;;;10320:13:0;;;;;;:9;:13;;;;;;;:17;:40::i;:::-;-1:-1:-1;;;;;10306:13:0;;;;;;;:9;:13;;;;;:54;;;;10376:41;;;10395:21;:6;10406:9;10395:10;:21::i;:::-;10376:41;;1361:25:1;;;1349:2;1334:18;10376:41:0;;;;;;;8016:2409;7947:2478;;;:::o;1724:190::-;1810:7;1846:12;1838:6;;;;1830:29;;;;-1:-1:-1;;;1830:29:0;;;;;;;;:::i;:::-;-1:-1:-1;1870:9:0;1882:5;1886:1;1882;:5;:::i;:::-;1870:17;1724:190;-1:-1:-1;;;;;1724:190:0:o;10541:555::-;5884:6;:13;;-1:-1:-1;;;;5884:13:0;-1:-1:-1;;;5884:13:0;;;10619:27;;10638:7:::1;10619:27;10660:11;::::0;-1:-1:-1;;;10660:11:0;::::1;;;10656:25:::0;10673:7:::1;10656:25;10715:16;::::0;;10729:1:::1;10715:16:::0;;;;;::::1;::::0;;10691:21:::1;::::0;10715:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;10715:16:0::1;10691:40;;10760:4;10742;10747:1;10742:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;10742:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;10786:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;10786:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;10742:7;;10786:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10776:4;10781:1;10776:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;10776:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;10851:15:::1;::::0;10819:62:::1;::::0;10836:4:::1;::::0;10851:15:::1;10869:11:::0;10819:8:::1;:62::i;:::-;10892:15;::::0;:196:::1;::::0;-1:-1:-1;;;10892:196:0;;-1:-1:-1;;;;;10892:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;10973:11;;10892:15:::1;::::0;11015:4;;11042::::1;::::0;11062:15:::1;::::0;10892:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;10608:488;5908:1;-1:-1:-1::0;5920:6:0;:14;;-1:-1:-1;;;;5920:14:0;;;10541:555::o;11308:92::-;11365:10;;:27;;:10;;;;-1:-1:-1;;;;;11365:10:0;;:27;;;;;;;;;;;;:10;:27;;;;;;;;;;;;;;;;;;;1922:246;1980:7;2004:1;2009;2004:6;2000:47;;-1:-1:-1;2034:1:0;2027:8;;2000:47;2057:9;2069:5;2073:1;2069;:5;:::i;:::-;2057:17;-1:-1:-1;2102:1:0;2093:5;2097:1;2057:17;2093:5;:::i;:::-;:10;2085:56;;;;-1:-1:-1;;;2085:56:0;;12568:2:1;2085:56:0;;;12550:21:1;12607:2;12587:18;;;12580:30;12646:34;12626:18;;;12619:62;-1:-1:-1;;;12697:18:1;;;12690:31;12738:19;;2085:56:0;12366:397:1;2085:56:0;2159:1;1922:246;-1:-1:-1;;;1922:246:0:o;2176:132::-;2234:7;2261:39;2265:1;2268;2261:39;;;;;;;;;;;;;;;;;:3;:39::i;10435:98::-;10492:7;10519:1;10517;:3;10516:9;;10524:1;10516:9;;;-1:-1:-1;10522:1:0;10435:98;-1:-1:-1;10435:98:0:o;1393:179::-;1451:7;;1483:5;1487:1;1483;:5;:::i;:::-;1471:17;;1512:1;1507;:6;;1499:46;;;;-1:-1:-1;;;1499:46:0;;12970:2:1;1499:46:0;;;12952:21:1;13009:2;12989:18;;;12982:30;13048:29;13028:18;;;13021:57;13095:18;;1499:46:0;12768:351:1;1580:136:0;1638:7;1665:43;1669:1;1672;1665:43;;;;;;;;;;;;;;;;;:3;:43::i;2316:189::-;2402:7;2437:12;2430:5;2422:28;;;;-1:-1:-1;;;2422:28:0;;;;;;;;:::i;:::-;-1:-1:-1;2461:9:0;2473:5;2477:1;2473;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:247::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:52;;;2175:1;2172;2165:12;2127:52;2214:9;2201:23;2233:31;2258:5;2233:31;:::i;2507:388::-;2575:6;2583;2636:2;2624:9;2615:7;2611:23;2607:32;2604:52;;;2652:1;2649;2642:12;2604:52;2691:9;2678:23;2710:31;2735:5;2710:31;:::i;:::-;2760:5;-1:-1:-1;2817:2:1;2802:18;;2789:32;2830:33;2789:32;2830:33;:::i;:::-;2882:7;2872:17;;;2507:388;;;;;:::o;2900:127::-;2961:10;2956:3;2952:20;2949:1;2942:31;2992:4;2989:1;2982:15;3016:4;3013:1;3006:15;3032:422;3121:1;3164:5;3121:1;3178:270;3199:7;3189:8;3186:21;3178:270;;;3258:4;3254:1;3250:6;3246:17;3240:4;3237:27;3234:53;;;3267:18;;:::i;:::-;3317:7;3307:8;3303:22;3300:55;;;3337:16;;;;3300:55;3416:22;;;;3376:15;;;;3178:270;;;3182:3;3032:422;;;;;:::o;3459:806::-;3508:5;3538:8;3528:80;;-1:-1:-1;3579:1:1;3593:5;;3528:80;3627:4;3617:76;;-1:-1:-1;3664:1:1;3678:5;;3617:76;3709:4;3727:1;3722:59;;;;3795:1;3790:130;;;;3702:218;;3722:59;3752:1;3743:10;;3766:5;;;3790:130;3827:3;3817:8;3814:17;3811:43;;;3834:18;;:::i;:::-;-1:-1:-1;;3890:1:1;3876:16;;3905:5;;3702:218;;4004:2;3994:8;3991:16;3985:3;3979:4;3976:13;3972:36;3966:2;3956:8;3953:16;3948:2;3942:4;3939:12;3935:35;3932:77;3929:159;;;-1:-1:-1;4041:19:1;;;4073:5;;3929:159;4120:34;4145:8;4139:4;4120:34;:::i;:::-;4190:6;4186:1;4182:6;4178:19;4169:7;4166:32;4163:58;;;4201:18;;:::i;:::-;4239:20;;3459:806;-1:-1:-1;;;3459:806:1:o;4270:140::-;4328:5;4357:47;4398:4;4388:8;4384:19;4378:4;4357:47;:::i;4415:168::-;4488:9;;;4519;;4536:15;;;4530:22;;4516:37;4506:71;;4557:18;;:::i;4588:356::-;4790:2;4772:21;;;4809:18;;;4802:30;4868:34;4863:2;4848:18;;4841:62;4935:2;4920:18;;4588:356::o;5301:251::-;5371:6;5424:2;5412:9;5403:7;5399:23;5395:32;5392:52;;;5440:1;5437;5430:12;5392:52;5472:9;5466:16;5491:31;5516:5;5491:31;:::i;6478:306::-;6566:6;6574;6582;6635:2;6623:9;6614:7;6610:23;6606:32;6603:52;;;6651:1;6648;6641:12;6603:52;6680:9;6674:16;6664:26;;6730:2;6719:9;6715:18;6709:25;6699:35;;6774:2;6763:9;6759:18;6753:25;6743:35;;6478:306;;;;;:::o;7068:277::-;7135:6;7188:2;7176:9;7167:7;7163:23;7159:32;7156:52;;;7204:1;7201;7194:12;7156:52;7236:9;7230:16;7289:5;7282:13;7275:21;7268:5;7265:32;7255:60;;7311:1;7308;7301:12;10137:125;10202:9;;;10223:10;;;10220:36;;;10236:18;;:::i;10622:135::-;10661:3;10682:17;;;10679:43;;10702:18;;:::i;:::-;-1:-1:-1;10749:1:1;10738:13;;10622:135::o;10762:128::-;10829:9;;;10850:11;;;10847:37;;;10864:18;;:::i;11027:127::-;11088:10;11083:3;11079:20;11076:1;11069:31;11119:4;11116:1;11109:15;11143:4;11140:1;11133:15;11159:980;11421:4;11469:3;11458:9;11454:19;11500:6;11489:9;11482:25;11526:2;11564:6;11559:2;11548:9;11544:18;11537:34;11607:3;11602:2;11591:9;11587:18;11580:31;11631:6;11666;11660:13;11697:6;11689;11682:22;11735:3;11724:9;11720:19;11713:26;;11774:2;11766:6;11762:15;11748:29;;11795:1;11805:195;11819:6;11816:1;11813:13;11805:195;;;11884:13;;-1:-1:-1;;;;;11880:39:1;11868:52;;11975:15;;;;11940:12;;;;11916:1;11834:9;11805:195;;;-1:-1:-1;;;;;;;12056:32:1;;;;12051:2;12036:18;;12029:60;-1:-1:-1;;;12120:3:1;12105:19;12098:35;12017:3;11159:980;-1:-1:-1;;;11159:980:1:o;12144:217::-;12184:1;12210;12200:132;;12254:10;12249:3;12245:20;12242:1;12235:31;12289:4;12286:1;12279:15;12317:4;12314:1;12307:15;12200:132;-1:-1:-1;12346:9:1;;12144:217::o

Swarm Source

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