ETH Price: $2,885.59 (-10.96%)
Gas: 20 Gwei

Token

President Ron DeSantis (RON)
 

Overview

Max Total Supply

1,000,000,000 RON

Holders

1,574 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$42,400.00

Circulating Supply Market Cap

$41,645.00

Other Info

Token Contract (WITH 9 Decimals)

Balance
656,821.267847582 RON

Value
$27.85 ( ~0.00965139299772215 Eth) [0.0657%]
0xd53070988c5851ddfbaa7b9eaffba1986eccffea
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

During the 2024 Presidential race, an ERC20 token named $RON was launched to champion President DeSantis.

Market

Volume (24H):$41.94
Market Capitalization:$41,645.00
Circulating Supply:982,200,000.00 RON
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PresidentRonDeSantis

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-24
*/

/**
FOR IMMEDIATE RELEASE

"DeSantis Wins the Presidential Race to the White House"
Washington, D.C. – November 6, 2024

The American people have cast their votes, and the results are in. Governor Ron DeSantis of Florida has secured his place as the 47th President of the United States, marking an historic election that captivated the nation.

Governor DeSantis, a proud advocate for fiscal responsibility and personal freedom, campaigned on a platform of economic growth, technological innovation, and American unity. His victory is a reflection of the country's desire for strong leadership and a prosperous future.

A key element of the DeSantis campaign was an emphasis on the importance of technology and innovation in driving America's future. This focus was exemplified by a high-profile endorsement from Elon Musk, the owner of Twitter and CEO of SpaceX and Tesla. Musk, a visionary in the tech industry with over 140 million Twitter followers, rallied his vast online community in support of DeSantis, emphasizing their shared commitment to fostering innovation and entrepreneurship in the United States​1​.

"Elon Musk's endorsement of our campaign underscores our shared belief that the future of America lies in its ability to innovate and adapt," said President-elect DeSantis. "Our nation has always been at the forefront of technological advances, and we plan to keep it that way."

President-elect DeSantis has promised to work closely with leaders in the tech industry, including Musk, to ensure that American innovation continues to thrive. His administration plans to invest in infrastructure, education, and policies that will foster a business-friendly environment where entrepreneurs and companies can thrive.

The DeSantis administration also plans to strengthen America's position in the global economy and build on the progress made in recent years. "We are committed to making America the best place in the world to start and grow a business. This is how we ensure that our nation remains a beacon of opportunity and prosperity," DeSantis said.

The inauguration of President-elect DeSantis is scheduled for January 20, 2025. The DeSantis team extends its heartfelt thanks to all Americans for their support and looks forward to serving the nation over the next four years.

About the DeSantis Campaign:

The DeSantis Campaign is committed to fostering a prosperous, united, and innovative America. Governor Ron DeSantis, now President-elect, has dedicated his career to serving the people of Florida and now aims to serve all Americans. He believes in the power of free markets, personal freedom, and American innovation to shape a brighter future for all.

//How DeSantis won the race//
Governor Ron DeSantis's win in the 2024 Presidential race was significantly boosted by the endorsement of Elon Musk, one of the most influential figures in the tech industry. Musk's support, leveraged through his vast online presence with over 140 million Twitter followers, amplified DeSantis's campaign messages and connected them to a diverse, global audience. 
Musk's endorsement also underscored DeSantis's commitment to technological innovation, entrepreneurship, and a forward-looking economic policy, which resonated with a broad base of voters seeking strong and innovative leadership for the future of the United States. This, in turn, solidified DeSantis's standing among voters, ultimately contributing to his victory.

https://twitter.com/BillMelugin_/status/1661071316664094720?s=20
https://www.foxnews.com/politics/florida-gov-ron-desantis-announce-candidacy-president-wednesday-twitter-sources

//Socials + Website will be broadcast via Immutable messages to the deployer. 
// 0% Tax after renounce

*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

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

contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    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;
    }

}

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

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

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );
}

contract PresidentRonDeSantis  is Context, IERC20, Ownable {

    using SafeMath for uint256;

    string private constant _name = "President Ron DeSantis";
    string private constant _symbol = "RON";
    uint8 private constant _decimals = 9;

    mapping(address => uint256) private _rOwned;
    mapping(address => uint256) private _tOwned;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private constant MAX = ~uint256(0);
    uint256 private constant _tTotal = 1000000000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
    uint256 private _redisFeeOnBuy = 0;
    uint256 private _taxFeeOnBuy = 3;
    uint256 private _redisFeeOnSell = 0;
    uint256 private _taxFeeOnSell = 3;

    //Original Fee
    uint256 private _redisFee = _redisFeeOnSell;
    uint256 private _taxFee = _taxFeeOnSell;

    uint256 private _previousredisFee = _redisFee;
    uint256 private _previoustaxFee = _taxFee;

    mapping(address => bool) public bots; mapping (address => uint256) public _buyMap;
    address payable private _developmentAddress = payable(0x16b769993338d257da8b332206ceE6f7eF86a692);
    address payable private _marketingAddress = payable(0x16b769993338d257da8b332206ceE6f7eF86a692);

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    bool private tradingOpen;
    bool private inSwap = false;
    bool private swapEnabled = true;

    uint256 public _maxTxAmount = 30000000 * 10**9;
    uint256 public _maxWalletSize = 30000000 * 10**9;
    uint256 public _swapTokensAtAmount = 10000 * 10**9;

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

    constructor() {

        _rOwned[_msgSender()] = _rTotal;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);//
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_developmentAddress] = true;
        _isExcludedFromFee[_marketingAddress] = 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 tokenFromReflection(_rOwned[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 tokenFromReflection(uint256 rAmount)
        private
        view
        returns (uint256)
    {
        require(
            rAmount <= _rTotal,
            "Amount must be less than total reflections"
        );
        uint256 currentRate = _getRate();
        return rAmount.div(currentRate);
    }

    function removeAllFee() private {
        if (_redisFee == 0 && _taxFee == 0) return;

        _previousredisFee = _redisFee;
        _previoustaxFee = _taxFee;

        _redisFee = 0;
        _taxFee = 0;
    }

    function restoreAllFee() private {
        _redisFee = _previousredisFee;
        _taxFee = _previoustaxFee;
    }

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

        if (from != owner() && to != owner()) {

            //Trade start check
            if (!tradingOpen) {
                require(from == owner(), "TOKEN: This account cannot send tokens until trading is enabled");
            }

            require(amount <= _maxTxAmount, "TOKEN: Max Transaction Limit");
            require(!bots[from] && !bots[to], "TOKEN: Your account is blacklisted!");

            if(to != uniswapV2Pair) {
                require(balanceOf(to) + amount < _maxWalletSize, "TOKEN: Balance exceeds wallet size!");
            }

            uint256 contractTokenBalance = balanceOf(address(this));
            bool canSwap = contractTokenBalance >= _swapTokensAtAmount;

            if(contractTokenBalance >= _maxTxAmount)
            {
                contractTokenBalance = _maxTxAmount;
            }

            if (canSwap && !inSwap && from != uniswapV2Pair && swapEnabled && !_isExcludedFromFee[from] && !_isExcludedFromFee[to]) {
                swapTokensForEth(contractTokenBalance);
                uint256 contractETHBalance = address(this).balance;
                if (contractETHBalance > 0) {
                    sendETHToFee(address(this).balance);
                }
            }
        }

        bool takeFee = true;

        //Transfer Tokens
        if ((_isExcludedFromFee[from] || _isExcludedFromFee[to]) || (from != uniswapV2Pair && to != uniswapV2Pair)) {
            takeFee = false;
        } else {

            //Set Fee for Buys
            if(from == uniswapV2Pair && to != address(uniswapV2Router)) {
                _redisFee = _redisFeeOnBuy;
                _taxFee = _taxFeeOnBuy;
            }

            //Set Fee for Sells
            if (to == uniswapV2Pair && from != address(uniswapV2Router)) {
                _redisFee = _redisFeeOnSell;
                _taxFee = _taxFeeOnSell;
            }

        }

        _tokenTransfer(from, to, amount, takeFee);
    }

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

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

    function setTrading(bool _tradingOpen) public onlyOwner {
        tradingOpen = _tradingOpen;
    }

    function manualswap() external {
        require(_msgSender() == _developmentAddress || _msgSender() == _marketingAddress);
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualsend() external {
        require(_msgSender() == _developmentAddress || _msgSender() == _marketingAddress);
        uint256 contractETHBalance = address(this).balance;
        sendETHToFee(contractETHBalance);
    }

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

    function unblockBot(address notbot) public onlyOwner {
        bots[notbot] = false;
    }

    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        if (!takeFee) removeAllFee();
        _transferStandard(sender, recipient, amount);
        if (!takeFee) restoreAllFee();
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tTeam
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeTeam(tTeam);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _takeTeam(uint256 tTeam) private {
        uint256 currentRate = _getRate();
        uint256 rTeam = tTeam.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rTeam);
    }

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    receive() external payable {}

    function _getValues(uint256 tAmount)
        private
        view
        returns (
            uint256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) =
            _getTValues(tAmount, _redisFee, _taxFee);
        uint256 currentRate = _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) =
            _getRValues(tAmount, tFee, tTeam, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam);
    }

    function _getTValues(
        uint256 tAmount,
        uint256 redisFee,
        uint256 taxFee
    )
        private
        pure
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 tFee = tAmount.mul(redisFee).div(100);
        uint256 tTeam = tAmount.mul(taxFee).div(100);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam);
        return (tTransferAmount, tFee, tTeam);
    }

    function _getRValues(
        uint256 tAmount,
        uint256 tFee,
        uint256 tTeam,
        uint256 currentRate
    )
        private
        pure
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rTeam = tTeam.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns (uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns (uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    function setFee(uint256 redisFeeOnBuy, uint256 redisFeeOnSell, uint256 taxFeeOnBuy, uint256 taxFeeOnSell) public onlyOwner {
        _redisFeeOnBuy = redisFeeOnBuy;
        _redisFeeOnSell = redisFeeOnSell;
        _taxFeeOnBuy = taxFeeOnBuy;
        _taxFeeOnSell = taxFeeOnSell;
    }

    //Set minimum tokens required to swap.
    function setMinSwapTokensThreshold(uint256 swapTokensAtAmount) public onlyOwner {
        _swapTokensAtAmount = swapTokensAtAmount;
    }

    //Set minimum tokens required to swap.
    function toggleSwap(bool _swapEnabled) public onlyOwner {
        swapEnabled = _swapEnabled;
    }

    //Set maximum transaction
    function setMaxTxnAmount(uint256 maxTxAmount) public onlyOwner {
        _maxTxAmount = maxTxAmount;
    }

    function setMaxWalletSize(uint256 maxWalletSize) public onlyOwner {
        _maxWalletSize = maxWalletSize;
    }

    function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFee[accounts[i]] = excluded;
        }
    }

}

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":[{"internalType":"address","name":"","type":"address"}],"name":"_buyMap","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":"_swapTokensAtAmount","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":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"blockBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"redisFeeOnBuy","type":"uint256"},{"internalType":"uint256","name":"redisFeeOnSell","type":"uint256"},{"internalType":"uint256","name":"taxFeeOnBuy","type":"uint256"},{"internalType":"uint256","name":"taxFeeOnSell","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"setMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"swapTokensAtAmount","type":"uint256"}],"name":"setMinSwapTokensThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_tradingOpen","type":"bool"}],"name":"setTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bool","name":"_swapEnabled","type":"bool"}],"name":"toggleSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"notbot","type":"address"}],"name":"unblockBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526200001a670de0b6b3a764000060001962000362565b620000289060001962000385565b6006556000600881905560036009819055600a829055600b819055600c829055600d819055600e91909155600f55601280546001600160a01b03199081167316b769993338d257da8b332206cee6f7ef86a6929081179092556013805490911690911790556015805461ffff60a81b1916600160b01b179055666a94d74f43000060168190556017556509184e72a000601855348015620000c857600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506006543360009081526002602090815260409182902092909255601480546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155815163c45a015560e01b815291519092839263c45a015592600480830193928290030181865afa15801562000186573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ac9190620003ad565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001fa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002209190620003ad565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200026e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002949190620003ad565b601580546001600160a01b0319166001600160a01b03928316179055600080548216815260056020526040808220805460ff1990811660019081179092553084528284208054821683179055601254851684528284208054821683179055601354909416835291208054909216179055336001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef670de0b6b3a76400006040516200035391815260200190565b60405180910390a350620003df565b6000826200038057634e487b7160e01b600052601260045260246000fd5b500690565b81810381811115620003a757634e487b7160e01b600052601160045260246000fd5b92915050565b600060208284031215620003c057600080fd5b81516001600160a01b0381168114620003d857600080fd5b9392505050565b611df380620003ef6000396000f3fe6080604052600436106101d05760003560e01c80637d1db4a5116100f7578063a2a957bb11610095578063c492f04611610064578063c492f04614610560578063dd62ed3e14610580578063ea1644d5146105c6578063f2fde38b146105e657600080fd5b8063a2a957bb146104db578063a9059cbb146104fb578063bfd792841461051b578063c3c8cd801461054b57600080fd5b80638f70ccf7116100d15780638f70ccf7146104595780638f9a55c01461047957806395d89b411461048f57806398a5c315146104bb57600080fd5b80637d1db4a5146103f85780637f2feddc1461040e5780638da5cb5b1461043b57600080fd5b8063313ce5671161016f5780636fc3eaec1161013e5780636fc3eaec1461038e57806370a08231146103a3578063715018a6146103c357806374010ece146103d857600080fd5b8063313ce5671461031257806349bd5a5e1461032e5780636b9990531461034e5780636d8aa8f81461036e57600080fd5b80631694505e116101ab5780631694505e1461027f57806318160ddd146102b757806323b872dd146102dc5780632fd689e3146102fc57600080fd5b8062b8cf2a146101dc57806306fdde03146101fe578063095ea7b31461024f57600080fd5b366101d757005b600080fd5b3480156101e857600080fd5b506101fc6101f736600461195e565b610606565b005b34801561020a57600080fd5b50604080518082019091526016815275507265736964656e7420526f6e20446553616e74697360501b60208201525b6040516102469190611a23565b60405180910390f35b34801561025b57600080fd5b5061026f61026a366004611a71565b6106a5565b6040519015158152602001610246565b34801561028b57600080fd5b5060145461029f906001600160a01b031681565b6040516001600160a01b039091168152602001610246565b3480156102c357600080fd5b50670de0b6b3a76400005b604051908152602001610246565b3480156102e857600080fd5b5061026f6102f7366004611a9d565b6106bc565b34801561030857600080fd5b506102ce60185481565b34801561031e57600080fd5b5060405160098152602001610246565b34801561033a57600080fd5b5060155461029f906001600160a01b031681565b34801561035a57600080fd5b506101fc610369366004611ade565b610725565b34801561037a57600080fd5b506101fc610389366004611b0b565b610770565b34801561039a57600080fd5b506101fc6107b8565b3480156103af57600080fd5b506102ce6103be366004611ade565b610803565b3480156103cf57600080fd5b506101fc610825565b3480156103e457600080fd5b506101fc6103f3366004611b26565b610899565b34801561040457600080fd5b506102ce60165481565b34801561041a57600080fd5b506102ce610429366004611ade565b60116020526000908152604090205481565b34801561044757600080fd5b506000546001600160a01b031661029f565b34801561046557600080fd5b506101fc610474366004611b0b565b6108c8565b34801561048557600080fd5b506102ce60175481565b34801561049b57600080fd5b506040805180820190915260038152622927a760e91b6020820152610239565b3480156104c757600080fd5b506101fc6104d6366004611b26565b610910565b3480156104e757600080fd5b506101fc6104f6366004611b3f565b61093f565b34801561050757600080fd5b5061026f610516366004611a71565b61097d565b34801561052757600080fd5b5061026f610536366004611ade565b60106020526000908152604090205460ff1681565b34801561055757600080fd5b506101fc61098a565b34801561056c57600080fd5b506101fc61057b366004611b71565b6109de565b34801561058c57600080fd5b506102ce61059b366004611bf5565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b3480156105d257600080fd5b506101fc6105e1366004611b26565b610a7f565b3480156105f257600080fd5b506101fc610601366004611ade565b610aae565b6000546001600160a01b031633146106395760405162461bcd60e51b815260040161063090611c2e565b60405180910390fd5b60005b81518110156106a15760016010600084848151811061065d5761065d611c63565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061069981611c8f565b91505061063c565b5050565b60006106b2338484610b98565b5060015b92915050565b60006106c9848484610cbc565b61071b843361071685604051806060016040528060288152602001611d96602891396001600160a01b038a16600090815260046020908152604080832033845290915290205491906111f8565b610b98565b5060019392505050565b6000546001600160a01b0316331461074f5760405162461bcd60e51b815260040161063090611c2e565b6001600160a01b03166000908152601060205260409020805460ff19169055565b6000546001600160a01b0316331461079a5760405162461bcd60e51b815260040161063090611c2e565b60158054911515600160b01b0260ff60b01b19909216919091179055565b6012546001600160a01b0316336001600160a01b031614806107ed57506013546001600160a01b0316336001600160a01b0316145b6107f657600080fd5b4761080081611232565b50565b6001600160a01b0381166000908152600260205260408120546106b69061126c565b6000546001600160a01b0316331461084f5760405162461bcd60e51b815260040161063090611c2e565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146108c35760405162461bcd60e51b815260040161063090611c2e565b601655565b6000546001600160a01b031633146108f25760405162461bcd60e51b815260040161063090611c2e565b60158054911515600160a01b0260ff60a01b19909216919091179055565b6000546001600160a01b0316331461093a5760405162461bcd60e51b815260040161063090611c2e565b601855565b6000546001600160a01b031633146109695760405162461bcd60e51b815260040161063090611c2e565b600893909355600a91909155600955600b55565b60006106b2338484610cbc565b6012546001600160a01b0316336001600160a01b031614806109bf57506013546001600160a01b0316336001600160a01b0316145b6109c857600080fd5b60006109d330610803565b9050610800816112f0565b6000546001600160a01b03163314610a085760405162461bcd60e51b815260040161063090611c2e565b60005b82811015610a79578160056000868685818110610a2a57610a2a611c63565b9050602002016020810190610a3f9190611ade565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610a7181611c8f565b915050610a0b565b50505050565b6000546001600160a01b03163314610aa95760405162461bcd60e51b815260040161063090611c2e565b601755565b6000546001600160a01b03163314610ad85760405162461bcd60e51b815260040161063090611c2e565b6001600160a01b038116610b3d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610630565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610bfa5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610630565b6001600160a01b038216610c5b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610630565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d205760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610630565b6001600160a01b038216610d825760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610630565b60008111610de45760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610630565b6000546001600160a01b03848116911614801590610e1057506000546001600160a01b03838116911614155b156110f157601554600160a01b900460ff16610ea9576000546001600160a01b03848116911614610ea95760405162461bcd60e51b815260206004820152603f60248201527f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060448201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c6564006064820152608401610630565b601654811115610efb5760405162461bcd60e51b815260206004820152601c60248201527f544f4b454e3a204d6178205472616e73616374696f6e204c696d6974000000006044820152606401610630565b6001600160a01b03831660009081526010602052604090205460ff16158015610f3d57506001600160a01b03821660009081526010602052604090205460ff16155b610f955760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a20596f7572206163636f756e7420697320626c61636b6c69737460448201526265642160e81b6064820152608401610630565b6015546001600160a01b0383811691161461101a5760175481610fb784610803565b610fc19190611ca8565b1061101a5760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b6064820152608401610630565b600061102530610803565b60185460165491925082101590821061103e5760165491505b8080156110555750601554600160a81b900460ff16155b801561106f57506015546001600160a01b03868116911614155b80156110845750601554600160b01b900460ff165b80156110a957506001600160a01b03851660009081526005602052604090205460ff16155b80156110ce57506001600160a01b03841660009081526005602052604090205460ff16155b156110ee576110dc826112f0565b4780156110ec576110ec47611232565b505b50505b6001600160a01b03831660009081526005602052604090205460019060ff168061113357506001600160a01b03831660009081526005602052604090205460ff165b8061116557506015546001600160a01b0385811691161480159061116557506015546001600160a01b03848116911614155b15611172575060006111ec565b6015546001600160a01b03858116911614801561119d57506014546001600160a01b03848116911614155b156111af57600854600c55600954600d555b6015546001600160a01b0384811691161480156111da57506014546001600160a01b03858116911614155b156111ec57600a54600c55600b54600d555b610a798484848461146a565b6000818484111561121c5760405162461bcd60e51b81526004016106309190611a23565b5060006112298486611cbb565b95945050505050565b6013546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156106a1573d6000803e3d6000fd5b60006006548211156112d35760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610630565b60006112dd611498565b90506112e983826114bb565b9392505050565b6015805460ff60a81b1916600160a81b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061133857611338611c63565b6001600160a01b03928316602091820292909201810191909152601454604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611391573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b59190611cce565b816001815181106113c8576113c8611c63565b6001600160a01b0392831660209182029290920101526014546113ee9130911684610b98565b60145460405163791ac94760e01b81526001600160a01b039091169063791ac94790611427908590600090869030904290600401611ceb565b600060405180830381600087803b15801561144157600080fd5b505af1158015611455573d6000803e3d6000fd5b50506015805460ff60a81b1916905550505050565b80611477576114776114fd565b61148284848461152b565b80610a7957610a79600e54600c55600f54600d55565b60008060006114a5611622565b90925090506114b482826114bb565b9250505090565b60006112e983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611662565b600c5415801561150d5750600d54155b1561151457565b600c8054600e55600d8054600f5560009182905555565b60008060008060008061153d87611690565b6001600160a01b038f16600090815260026020526040902054959b5093995091975095509350915061156f90876116ed565b6001600160a01b03808b1660009081526002602052604080822093909355908a168152205461159e908661172f565b6001600160a01b0389166000908152600260205260409020556115c08161178e565b6115ca84836117d8565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161160f91815260200190565b60405180910390a3505050505050505050565b6006546000908190670de0b6b3a764000061163d82826114bb565b82101561165957505060065492670de0b6b3a764000092509050565b90939092509050565b600081836116835760405162461bcd60e51b81526004016106309190611a23565b5060006112298486611d5c565b60008060008060008060008060006116ad8a600c54600d546117fc565b92509250925060006116bd611498565b905060008060006116d08e878787611851565b919e509c509a509598509396509194505050505091939550919395565b60006112e983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111f8565b60008061173c8385611ca8565b9050838110156112e95760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610630565b6000611798611498565b905060006117a683836118a1565b306000908152600260205260409020549091506117c3908261172f565b30600090815260026020526040902055505050565b6006546117e590836116ed565b6006556007546117f5908261172f565b6007555050565b6000808080611816606461181089896118a1565b906114bb565b9050600061182960646118108a896118a1565b905060006118418261183b8b866116ed565b906116ed565b9992985090965090945050505050565b600080808061186088866118a1565b9050600061186e88876118a1565b9050600061187c88886118a1565b9050600061188e8261183b86866116ed565b939b939a50919850919650505050505050565b6000826000036118b3575060006106b6565b60006118bf8385611d7e565b9050826118cc8583611d5c565b146112e95760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610630565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461080057600080fd5b803561195981611939565b919050565b6000602080838503121561197157600080fd5b823567ffffffffffffffff8082111561198957600080fd5b818501915085601f83011261199d57600080fd5b8135818111156119af576119af611923565b8060051b604051601f19603f830116810181811085821117156119d4576119d4611923565b6040529182528482019250838101850191888311156119f257600080fd5b938501935b82851015611a1757611a088561194e565b845293850193928501926119f7565b98975050505050505050565b600060208083528351808285015260005b81811015611a5057858101830151858201604001528201611a34565b506000604082860101526040601f19601f8301168501019250505092915050565b60008060408385031215611a8457600080fd5b8235611a8f81611939565b946020939093013593505050565b600080600060608486031215611ab257600080fd5b8335611abd81611939565b92506020840135611acd81611939565b929592945050506040919091013590565b600060208284031215611af057600080fd5b81356112e981611939565b8035801515811461195957600080fd5b600060208284031215611b1d57600080fd5b6112e982611afb565b600060208284031215611b3857600080fd5b5035919050565b60008060008060808587031215611b5557600080fd5b5050823594602084013594506040840135936060013592509050565b600080600060408486031215611b8657600080fd5b833567ffffffffffffffff80821115611b9e57600080fd5b818601915086601f830112611bb257600080fd5b813581811115611bc157600080fd5b8760208260051b8501011115611bd657600080fd5b602092830195509350611bec9186019050611afb565b90509250925092565b60008060408385031215611c0857600080fd5b8235611c1381611939565b91506020830135611c2381611939565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611ca157611ca1611c79565b5060010190565b808201808211156106b6576106b6611c79565b818103818111156106b6576106b6611c79565b600060208284031215611ce057600080fd5b81516112e981611939565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611d3b5784516001600160a01b031683529383019391830191600101611d16565b50506001600160a01b03969096166060850152505050608001529392505050565b600082611d7957634e487b7160e01b600052601260045260246000fd5b500490565b80820281158282048414176106b6576106b6611c7956fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212207998fccf05f657504b75e183f4c9f91a0e67f774fe832b0f8d318f4f7f1b863264736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101d05760003560e01c80637d1db4a5116100f7578063a2a957bb11610095578063c492f04611610064578063c492f04614610560578063dd62ed3e14610580578063ea1644d5146105c6578063f2fde38b146105e657600080fd5b8063a2a957bb146104db578063a9059cbb146104fb578063bfd792841461051b578063c3c8cd801461054b57600080fd5b80638f70ccf7116100d15780638f70ccf7146104595780638f9a55c01461047957806395d89b411461048f57806398a5c315146104bb57600080fd5b80637d1db4a5146103f85780637f2feddc1461040e5780638da5cb5b1461043b57600080fd5b8063313ce5671161016f5780636fc3eaec1161013e5780636fc3eaec1461038e57806370a08231146103a3578063715018a6146103c357806374010ece146103d857600080fd5b8063313ce5671461031257806349bd5a5e1461032e5780636b9990531461034e5780636d8aa8f81461036e57600080fd5b80631694505e116101ab5780631694505e1461027f57806318160ddd146102b757806323b872dd146102dc5780632fd689e3146102fc57600080fd5b8062b8cf2a146101dc57806306fdde03146101fe578063095ea7b31461024f57600080fd5b366101d757005b600080fd5b3480156101e857600080fd5b506101fc6101f736600461195e565b610606565b005b34801561020a57600080fd5b50604080518082019091526016815275507265736964656e7420526f6e20446553616e74697360501b60208201525b6040516102469190611a23565b60405180910390f35b34801561025b57600080fd5b5061026f61026a366004611a71565b6106a5565b6040519015158152602001610246565b34801561028b57600080fd5b5060145461029f906001600160a01b031681565b6040516001600160a01b039091168152602001610246565b3480156102c357600080fd5b50670de0b6b3a76400005b604051908152602001610246565b3480156102e857600080fd5b5061026f6102f7366004611a9d565b6106bc565b34801561030857600080fd5b506102ce60185481565b34801561031e57600080fd5b5060405160098152602001610246565b34801561033a57600080fd5b5060155461029f906001600160a01b031681565b34801561035a57600080fd5b506101fc610369366004611ade565b610725565b34801561037a57600080fd5b506101fc610389366004611b0b565b610770565b34801561039a57600080fd5b506101fc6107b8565b3480156103af57600080fd5b506102ce6103be366004611ade565b610803565b3480156103cf57600080fd5b506101fc610825565b3480156103e457600080fd5b506101fc6103f3366004611b26565b610899565b34801561040457600080fd5b506102ce60165481565b34801561041a57600080fd5b506102ce610429366004611ade565b60116020526000908152604090205481565b34801561044757600080fd5b506000546001600160a01b031661029f565b34801561046557600080fd5b506101fc610474366004611b0b565b6108c8565b34801561048557600080fd5b506102ce60175481565b34801561049b57600080fd5b506040805180820190915260038152622927a760e91b6020820152610239565b3480156104c757600080fd5b506101fc6104d6366004611b26565b610910565b3480156104e757600080fd5b506101fc6104f6366004611b3f565b61093f565b34801561050757600080fd5b5061026f610516366004611a71565b61097d565b34801561052757600080fd5b5061026f610536366004611ade565b60106020526000908152604090205460ff1681565b34801561055757600080fd5b506101fc61098a565b34801561056c57600080fd5b506101fc61057b366004611b71565b6109de565b34801561058c57600080fd5b506102ce61059b366004611bf5565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b3480156105d257600080fd5b506101fc6105e1366004611b26565b610a7f565b3480156105f257600080fd5b506101fc610601366004611ade565b610aae565b6000546001600160a01b031633146106395760405162461bcd60e51b815260040161063090611c2e565b60405180910390fd5b60005b81518110156106a15760016010600084848151811061065d5761065d611c63565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061069981611c8f565b91505061063c565b5050565b60006106b2338484610b98565b5060015b92915050565b60006106c9848484610cbc565b61071b843361071685604051806060016040528060288152602001611d96602891396001600160a01b038a16600090815260046020908152604080832033845290915290205491906111f8565b610b98565b5060019392505050565b6000546001600160a01b0316331461074f5760405162461bcd60e51b815260040161063090611c2e565b6001600160a01b03166000908152601060205260409020805460ff19169055565b6000546001600160a01b0316331461079a5760405162461bcd60e51b815260040161063090611c2e565b60158054911515600160b01b0260ff60b01b19909216919091179055565b6012546001600160a01b0316336001600160a01b031614806107ed57506013546001600160a01b0316336001600160a01b0316145b6107f657600080fd5b4761080081611232565b50565b6001600160a01b0381166000908152600260205260408120546106b69061126c565b6000546001600160a01b0316331461084f5760405162461bcd60e51b815260040161063090611c2e565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146108c35760405162461bcd60e51b815260040161063090611c2e565b601655565b6000546001600160a01b031633146108f25760405162461bcd60e51b815260040161063090611c2e565b60158054911515600160a01b0260ff60a01b19909216919091179055565b6000546001600160a01b0316331461093a5760405162461bcd60e51b815260040161063090611c2e565b601855565b6000546001600160a01b031633146109695760405162461bcd60e51b815260040161063090611c2e565b600893909355600a91909155600955600b55565b60006106b2338484610cbc565b6012546001600160a01b0316336001600160a01b031614806109bf57506013546001600160a01b0316336001600160a01b0316145b6109c857600080fd5b60006109d330610803565b9050610800816112f0565b6000546001600160a01b03163314610a085760405162461bcd60e51b815260040161063090611c2e565b60005b82811015610a79578160056000868685818110610a2a57610a2a611c63565b9050602002016020810190610a3f9190611ade565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610a7181611c8f565b915050610a0b565b50505050565b6000546001600160a01b03163314610aa95760405162461bcd60e51b815260040161063090611c2e565b601755565b6000546001600160a01b03163314610ad85760405162461bcd60e51b815260040161063090611c2e565b6001600160a01b038116610b3d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610630565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610bfa5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610630565b6001600160a01b038216610c5b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610630565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d205760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610630565b6001600160a01b038216610d825760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610630565b60008111610de45760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610630565b6000546001600160a01b03848116911614801590610e1057506000546001600160a01b03838116911614155b156110f157601554600160a01b900460ff16610ea9576000546001600160a01b03848116911614610ea95760405162461bcd60e51b815260206004820152603f60248201527f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060448201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c6564006064820152608401610630565b601654811115610efb5760405162461bcd60e51b815260206004820152601c60248201527f544f4b454e3a204d6178205472616e73616374696f6e204c696d6974000000006044820152606401610630565b6001600160a01b03831660009081526010602052604090205460ff16158015610f3d57506001600160a01b03821660009081526010602052604090205460ff16155b610f955760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a20596f7572206163636f756e7420697320626c61636b6c69737460448201526265642160e81b6064820152608401610630565b6015546001600160a01b0383811691161461101a5760175481610fb784610803565b610fc19190611ca8565b1061101a5760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b6064820152608401610630565b600061102530610803565b60185460165491925082101590821061103e5760165491505b8080156110555750601554600160a81b900460ff16155b801561106f57506015546001600160a01b03868116911614155b80156110845750601554600160b01b900460ff165b80156110a957506001600160a01b03851660009081526005602052604090205460ff16155b80156110ce57506001600160a01b03841660009081526005602052604090205460ff16155b156110ee576110dc826112f0565b4780156110ec576110ec47611232565b505b50505b6001600160a01b03831660009081526005602052604090205460019060ff168061113357506001600160a01b03831660009081526005602052604090205460ff165b8061116557506015546001600160a01b0385811691161480159061116557506015546001600160a01b03848116911614155b15611172575060006111ec565b6015546001600160a01b03858116911614801561119d57506014546001600160a01b03848116911614155b156111af57600854600c55600954600d555b6015546001600160a01b0384811691161480156111da57506014546001600160a01b03858116911614155b156111ec57600a54600c55600b54600d555b610a798484848461146a565b6000818484111561121c5760405162461bcd60e51b81526004016106309190611a23565b5060006112298486611cbb565b95945050505050565b6013546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156106a1573d6000803e3d6000fd5b60006006548211156112d35760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610630565b60006112dd611498565b90506112e983826114bb565b9392505050565b6015805460ff60a81b1916600160a81b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061133857611338611c63565b6001600160a01b03928316602091820292909201810191909152601454604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611391573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b59190611cce565b816001815181106113c8576113c8611c63565b6001600160a01b0392831660209182029290920101526014546113ee9130911684610b98565b60145460405163791ac94760e01b81526001600160a01b039091169063791ac94790611427908590600090869030904290600401611ceb565b600060405180830381600087803b15801561144157600080fd5b505af1158015611455573d6000803e3d6000fd5b50506015805460ff60a81b1916905550505050565b80611477576114776114fd565b61148284848461152b565b80610a7957610a79600e54600c55600f54600d55565b60008060006114a5611622565b90925090506114b482826114bb565b9250505090565b60006112e983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611662565b600c5415801561150d5750600d54155b1561151457565b600c8054600e55600d8054600f5560009182905555565b60008060008060008061153d87611690565b6001600160a01b038f16600090815260026020526040902054959b5093995091975095509350915061156f90876116ed565b6001600160a01b03808b1660009081526002602052604080822093909355908a168152205461159e908661172f565b6001600160a01b0389166000908152600260205260409020556115c08161178e565b6115ca84836117d8565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161160f91815260200190565b60405180910390a3505050505050505050565b6006546000908190670de0b6b3a764000061163d82826114bb565b82101561165957505060065492670de0b6b3a764000092509050565b90939092509050565b600081836116835760405162461bcd60e51b81526004016106309190611a23565b5060006112298486611d5c565b60008060008060008060008060006116ad8a600c54600d546117fc565b92509250925060006116bd611498565b905060008060006116d08e878787611851565b919e509c509a509598509396509194505050505091939550919395565b60006112e983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111f8565b60008061173c8385611ca8565b9050838110156112e95760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610630565b6000611798611498565b905060006117a683836118a1565b306000908152600260205260409020549091506117c3908261172f565b30600090815260026020526040902055505050565b6006546117e590836116ed565b6006556007546117f5908261172f565b6007555050565b6000808080611816606461181089896118a1565b906114bb565b9050600061182960646118108a896118a1565b905060006118418261183b8b866116ed565b906116ed565b9992985090965090945050505050565b600080808061186088866118a1565b9050600061186e88876118a1565b9050600061187c88886118a1565b9050600061188e8261183b86866116ed565b939b939a50919850919650505050505050565b6000826000036118b3575060006106b6565b60006118bf8385611d7e565b9050826118cc8583611d5c565b146112e95760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610630565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461080057600080fd5b803561195981611939565b919050565b6000602080838503121561197157600080fd5b823567ffffffffffffffff8082111561198957600080fd5b818501915085601f83011261199d57600080fd5b8135818111156119af576119af611923565b8060051b604051601f19603f830116810181811085821117156119d4576119d4611923565b6040529182528482019250838101850191888311156119f257600080fd5b938501935b82851015611a1757611a088561194e565b845293850193928501926119f7565b98975050505050505050565b600060208083528351808285015260005b81811015611a5057858101830151858201604001528201611a34565b506000604082860101526040601f19601f8301168501019250505092915050565b60008060408385031215611a8457600080fd5b8235611a8f81611939565b946020939093013593505050565b600080600060608486031215611ab257600080fd5b8335611abd81611939565b92506020840135611acd81611939565b929592945050506040919091013590565b600060208284031215611af057600080fd5b81356112e981611939565b8035801515811461195957600080fd5b600060208284031215611b1d57600080fd5b6112e982611afb565b600060208284031215611b3857600080fd5b5035919050565b60008060008060808587031215611b5557600080fd5b5050823594602084013594506040840135936060013592509050565b600080600060408486031215611b8657600080fd5b833567ffffffffffffffff80821115611b9e57600080fd5b818601915086601f830112611bb257600080fd5b813581811115611bc157600080fd5b8760208260051b8501011115611bd657600080fd5b602092830195509350611bec9186019050611afb565b90509250925092565b60008060408385031215611c0857600080fd5b8235611c1381611939565b91506020830135611c2381611939565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611ca157611ca1611c79565b5060010190565b808201808211156106b6576106b6611c79565b818103818111156106b6576106b6611c79565b600060208284031215611ce057600080fd5b81516112e981611939565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611d3b5784516001600160a01b031683529383019391830191600101611d16565b50506001600160a01b03969096166060850152505050608001529392505050565b600082611d7957634e487b7160e01b600052601260045260246000fd5b500490565b80820281158282048414176106b6576106b6611c7956fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212207998fccf05f657504b75e183f4c9f91a0e67f774fe832b0f8d318f4f7f1b863264736f6c63430008120033

Deployed Bytecode Sourcemap

7839:13516:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16528:169;;;;;;;;;;-1:-1:-1;16528:169:0;;;;;:::i;:::-;;:::i;:::-;;10356:83;;;;;;;;;;-1:-1:-1;10426:5:0;;;;;;;;;;;;-1:-1:-1;;;10426:5:0;;;;10356:83;;;;;;;:::i;:::-;;;;;;;;11281:193;;;;;;;;;;-1:-1:-1;11281:193:0;;;;;:::i;:::-;;:::i;:::-;;;2585:14:1;;2578:22;2560:41;;2548:2;2533:18;11281:193:0;2420:187:1;9206:41:0;;;;;;;;;;-1:-1:-1;9206:41:0;;;;-1:-1:-1;;;;;9206:41:0;;;;;;-1:-1:-1;;;;;2802:32:1;;;2784:51;;2772:2;2757:18;9206:41:0;2612:229:1;10633:95:0;;;;;;;;;;-1:-1:-1;8412:18:0;10633:95;;;2992:25:1;;;2980:2;2965:18;10633:95:0;2846:177:1;11482:446:0;;;;;;;;;;-1:-1:-1;11482:446:0;;;;;:::i;:::-;;:::i;9504:50::-;;;;;;;;;;;;;;;;10542:83;;;;;;;;;;-1:-1:-1;10542:83:0;;8086:1;3631:36:1;;3619:2;3604:18;10542:83:0;3489:184:1;9254:28:0;;;;;;;;;;-1:-1:-1;9254:28:0;;;;-1:-1:-1;;;;;9254:28:0;;;16705:92;;;;;;;;;;-1:-1:-1;16705:92:0;;;;;:::i;:::-;;:::i;20737:101::-;;;;;;;;;;-1:-1:-1;20737:101:0;;;;;:::i;:::-;;:::i;16285:235::-;;;;;;;;;;;;;:::i;10736:138::-;;;;;;;;;;-1:-1:-1;10736:138:0;;;;;:::i;:::-;;:::i;5326:148::-;;;;;;;;;;;;;:::i;20877:108::-;;;;;;;;;;-1:-1:-1;20877:108:0;;;;;:::i;:::-;;:::i;9396:46::-;;;;;;;;;;;;;;;;8948:43;;;;;;;;;;-1:-1:-1;8948:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;5112:79;;;;;;;;;;-1:-1:-1;5150:7:0;5177:6;-1:-1:-1;;;;;5177:6:0;5112:79;;15932:101;;;;;;;;;;-1:-1:-1;15932:101:0;;;;;:::i;:::-;;:::i;9449:48::-;;;;;;;;;;;;;;;;10447:87;;;;;;;;;;-1:-1:-1;10519:7:0;;;;;;;;;;;;-1:-1:-1;;;10519:7:0;;;;10447:87;;20546:139;;;;;;;;;;-1:-1:-1;20546:139:0;;;;;:::i;:::-;;:::i;20203:291::-;;;;;;;;;;-1:-1:-1;20203:291:0;;;;;:::i;:::-;;:::i;10882:199::-;;;;;;;;;;-1:-1:-1;10882:199:0;;;;;:::i;:::-;;:::i;8910:36::-;;;;;;;;;;-1:-1:-1;8910:36:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;16041:236;;;;;;;;;;;;;:::i;21116:234::-;;;;;;;;;;-1:-1:-1;21116:234:0;;;;;:::i;:::-;;:::i;11089:184::-;;;;;;;;;;-1:-1:-1;11089:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;11238:18:0;;;11206:7;11238:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11089:184;20993:115;;;;;;;;;;-1:-1:-1;20993:115:0;;;;;:::i;:::-;;:::i;5482:244::-;;;;;;;;;;-1:-1:-1;5482:244:0;;;;;:::i;:::-;;:::i;16528:169::-;5239:6;;-1:-1:-1;;;;;5239:6:0;3951:10;5239:22;5231:67;;;;-1:-1:-1;;;5231:67:0;;;;;;;:::i;:::-;;;;;;;;;16604:9:::1;16599:91;16623:5;:12;16619:1;:16;16599:91;;;16674:4;16657;:14;16662:5;16668:1;16662:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;16657:14:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;16657:14:0;:21;;-1:-1:-1;;16657:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;16637:3;::::1;::::0;::::1;:::i;:::-;;;;16599:91;;;;16528:169:::0;:::o;11281:193::-;11383:4;11405:39;3951:10;11428:7;11437:6;11405:8;:39::i;:::-;-1:-1:-1;11462:4:0;11281:193;;;;;:::o;11482:446::-;11614:4;11631:36;11641:6;11649:9;11660:6;11631:9;:36::i;:::-;11678:220;11701:6;3951:10;11749:138;11805:6;11749:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11749:19:0;;;;;;:11;:19;;;;;;;;3951:10;11749:33;;;;;;;;;;:37;:138::i;:::-;11678:8;:220::i;:::-;-1:-1:-1;11916:4:0;11482:446;;;;;:::o;16705:92::-;5239:6;;-1:-1:-1;;;;;5239:6:0;3951:10;5239:22;5231:67;;;;-1:-1:-1;;;5231:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16769:12:0::1;16784:5;16769:12:::0;;;:4:::1;:12;::::0;;;;:20;;-1:-1:-1;;16769:20:0::1;::::0;;16705:92::o;20737:101::-;5239:6;;-1:-1:-1;;;;;5239:6:0;3951:10;5239:22;5231:67;;;;-1:-1:-1;;;5231:67:0;;;;;;;:::i;:::-;20804:11:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;20804:26:0::1;-1:-1:-1::0;;;;20804:26:0;;::::1;::::0;;;::::1;::::0;;20737:101::o;16285:235::-;16351:19;;-1:-1:-1;;;;;16351:19:0;3951:10;-1:-1:-1;;;;;16335:35:0;;:72;;;-1:-1:-1;16390:17:0;;-1:-1:-1;;;;;16390:17:0;3951:10;-1:-1:-1;;;;;16374:33:0;;16335:72;16327:81;;;;;;16448:21;16480:32;16448:21;16480:12;:32::i;:::-;16316:204;16285:235::o;10736:138::-;-1:-1:-1;;;;;10849:16:0;;10802:7;10849:16;;;:7;:16;;;;;;10829:37;;:19;:37::i;5326:148::-;5239:6;;-1:-1:-1;;;;;5239:6:0;3951:10;5239:22;5231:67;;;;-1:-1:-1;;;5231:67:0;;;;;;;:::i;:::-;5433:1:::1;5417:6:::0;;5396:40:::1;::::0;-1:-1:-1;;;;;5417:6:0;;::::1;::::0;5396:40:::1;::::0;5433:1;;5396:40:::1;5464:1;5447:19:::0;;-1:-1:-1;;;;;;5447:19:0::1;::::0;;5326:148::o;20877:108::-;5239:6;;-1:-1:-1;;;;;5239:6:0;3951:10;5239:22;5231:67;;;;-1:-1:-1;;;5231:67:0;;;;;;;:::i;:::-;20951:12:::1;:26:::0;20877:108::o;15932:101::-;5239:6;;-1:-1:-1;;;;;5239:6:0;3951:10;5239:22;5231:67;;;;-1:-1:-1;;;5231:67:0;;;;;;;:::i;:::-;15999:11:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;15999:26:0::1;-1:-1:-1::0;;;;15999:26:0;;::::1;::::0;;;::::1;::::0;;15932:101::o;20546:139::-;5239:6;;-1:-1:-1;;;;;5239:6:0;3951:10;5239:22;5231:67;;;;-1:-1:-1;;;5231:67:0;;;;;;;:::i;:::-;20637:19:::1;:40:::0;20546:139::o;20203:291::-;5239:6;;-1:-1:-1;;;;;5239:6:0;3951:10;5239:22;5231:67;;;;-1:-1:-1;;;5231:67:0;;;;;;;:::i;:::-;20337:14:::1;:30:::0;;;;20378:15:::1;:32:::0;;;;20421:12:::1;:26:::0;20458:13:::1;:28:::0;20203:291::o;10882:199::-;10987:4;11009:42;3951:10;11033:9;11044:6;11009:9;:42::i;16041:236::-;16107:19;;-1:-1:-1;;;;;16107:19:0;3951:10;-1:-1:-1;;;;;16091:35:0;;:72;;;-1:-1:-1;16146:17:0;;-1:-1:-1;;;;;16146:17:0;3951:10;-1:-1:-1;;;;;16130:33:0;;16091:72;16083:81;;;;;;16175:23;16201:24;16219:4;16201:9;:24::i;:::-;16175:50;;16236:33;16253:15;16236:16;:33::i;21116:234::-;5239:6;;-1:-1:-1;;;;;5239:6:0;3951:10;5239:22;5231:67;;;;-1:-1:-1;;;5231:67:0;;;;;;;:::i;:::-;21233:9:::1;21229:114;21248:19:::0;;::::1;21229:114;;;21323:8;21289:18;:31;21308:8;;21317:1;21308:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;21289:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;21289:31:0;:42;;-1:-1:-1;;21289:42:0::1;::::0;::::1;;::::0;;;::::1;::::0;;21269:3;::::1;::::0;::::1;:::i;:::-;;;;21229:114;;;;21116:234:::0;;;:::o;20993:115::-;5239:6;;-1:-1:-1;;;;;5239:6:0;3951:10;5239:22;5231:67;;;;-1:-1:-1;;;5231:67:0;;;;;;;:::i;:::-;21070:14:::1;:30:::0;20993:115::o;5482:244::-;5239:6;;-1:-1:-1;;;;;5239:6:0;3951:10;5239:22;5231:67;;;;-1:-1:-1;;;5231:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5571:22:0;::::1;5563:73;;;::::0;-1:-1:-1;;;5563:73:0;;7117:2:1;5563:73:0::1;::::0;::::1;7099:21:1::0;7156:2;7136:18;;;7129:30;7195:34;7175:18;;;7168:62;-1:-1:-1;;;7246:18:1;;;7239:36;7292:19;;5563:73:0::1;6915:402:1::0;5563:73:0::1;5673:6;::::0;;5652:38:::1;::::0;-1:-1:-1;;;;;5652:38:0;;::::1;::::0;5673:6;::::1;::::0;5652:38:::1;::::0;::::1;5701:6;:17:::0;;-1:-1:-1;;;;;;5701:17:0::1;-1:-1:-1::0;;;;;5701:17:0;;;::::1;::::0;;;::::1;::::0;;5482:244::o;12619:369::-;-1:-1:-1;;;;;12746:19:0;;12738:68;;;;-1:-1:-1;;;12738:68:0;;7524:2:1;12738:68:0;;;7506:21:1;7563:2;7543:18;;;7536:30;7602:34;7582:18;;;7575:62;-1:-1:-1;;;7653:18:1;;;7646:34;7697:19;;12738:68:0;7322:400:1;12738:68:0;-1:-1:-1;;;;;12825:21:0;;12817:68;;;;-1:-1:-1;;;12817:68:0;;7929:2:1;12817:68:0;;;7911:21:1;7968:2;7948:18;;;7941:30;8007:34;7987:18;;;7980:62;-1:-1:-1;;;8058:18:1;;;8051:32;8100:19;;12817:68:0;7727:398:1;12817:68:0;-1:-1:-1;;;;;12896:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;12948:32;;2992:25:1;;;12948:32:0;;2965:18:1;12948:32:0;;;;;;;12619:369;;;:::o;12996:2330::-;-1:-1:-1;;;;;13118:18:0;;13110:68;;;;-1:-1:-1;;;13110:68:0;;8332:2:1;13110:68:0;;;8314:21:1;8371:2;8351:18;;;8344:30;8410:34;8390:18;;;8383:62;-1:-1:-1;;;8461:18:1;;;8454:35;8506:19;;13110:68:0;8130:401:1;13110:68:0;-1:-1:-1;;;;;13197:16:0;;13189:64;;;;-1:-1:-1;;;13189:64:0;;8738:2:1;13189:64:0;;;8720:21:1;8777:2;8757:18;;;8750:30;8816:34;8796:18;;;8789:62;-1:-1:-1;;;8867:18:1;;;8860:33;8910:19;;13189:64:0;8536:399:1;13189:64:0;13281:1;13272:6;:10;13264:64;;;;-1:-1:-1;;;13264:64:0;;9142:2:1;13264:64:0;;;9124:21:1;9181:2;9161:18;;;9154:30;9220:34;9200:18;;;9193:62;-1:-1:-1;;;9271:18:1;;;9264:39;9320:19;;13264:64:0;8940:405:1;13264:64:0;5150:7;5177:6;-1:-1:-1;;;;;13345:15:0;;;5177:6;;13345:15;;;;:32;;-1:-1:-1;5150:7:0;5177:6;-1:-1:-1;;;;;13364:13:0;;;5177:6;;13364:13;;13345:32;13341:1259;;;13434:11;;-1:-1:-1;;;13434:11:0;;;;13429:144;;5150:7;5177:6;-1:-1:-1;;;;;13474:15:0;;;5177:6;;13474:15;13466:91;;;;-1:-1:-1;;;13466:91:0;;9552:2:1;13466:91:0;;;9534:21:1;9591:2;9571:18;;;9564:30;9630:34;9610:18;;;9603:62;9701:33;9681:18;;;9674:61;9752:19;;13466:91:0;9350:427:1;13466:91:0;13607:12;;13597:6;:22;;13589:63;;;;-1:-1:-1;;;13589:63:0;;9984:2:1;13589:63:0;;;9966:21:1;10023:2;10003:18;;;9996:30;10062;10042:18;;;10035:58;10110:18;;13589:63:0;9782:352:1;13589:63:0;-1:-1:-1;;;;;13676:10:0;;;;;;:4;:10;;;;;;;;13675:11;:24;;;;-1:-1:-1;;;;;;13691:8:0;;;;;;:4;:8;;;;;;;;13690:9;13675:24;13667:72;;;;-1:-1:-1;;;13667:72:0;;10341:2:1;13667:72:0;;;10323:21:1;10380:2;10360:18;;;10353:30;10419:34;10399:18;;;10392:62;-1:-1:-1;;;10470:18:1;;;10463:33;10513:19;;13667:72:0;10139:399:1;13667:72:0;13765:13;;-1:-1:-1;;;;;13759:19:0;;;13765:13;;13759:19;13756:146;;13832:14;;13823:6;13807:13;13817:2;13807:9;:13::i;:::-;:22;;;;:::i;:::-;:39;13799:87;;;;-1:-1:-1;;;13799:87:0;;10875:2:1;13799:87:0;;;10857:21:1;10914:2;10894:18;;;10887:30;10953:34;10933:18;;;10926:62;-1:-1:-1;;;11004:18:1;;;10997:33;11047:19;;13799:87:0;10673:399:1;13799:87:0;13918:28;13949:24;13967:4;13949:9;:24::i;:::-;14027:19;;14090:12;;13918:55;;-1:-1:-1;14003:43:0;;;;14066:36;;14063:124;;14159:12;;14136:35;;14063:124;14207:7;:18;;;;-1:-1:-1;14219:6:0;;-1:-1:-1;;;14219:6:0;;;;14218:7;14207:18;:43;;;;-1:-1:-1;14237:13:0;;-1:-1:-1;;;;;14229:21:0;;;14237:13;;14229:21;;14207:43;:58;;;;-1:-1:-1;14254:11:0;;-1:-1:-1;;;14254:11:0;;;;14207:58;:87;;;;-1:-1:-1;;;;;;14270:24:0;;;;;;:18;:24;;;;;;;;14269:25;14207:87;:114;;;;-1:-1:-1;;;;;;14299:22:0;;;;;;:18;:22;;;;;;;;14298:23;14207:114;14203:386;;;14342:38;14359:20;14342:16;:38::i;:::-;14428:21;14472:22;;14468:106;;14519:35;14532:21;14519:12;:35::i;:::-;14323:266;14203:386;13379:1221;;13341:1259;-1:-1:-1;;;;;14676:24:0;;14612:12;14676:24;;;:18;:24;;;;;;14627:4;;14676:24;;;:50;;-1:-1:-1;;;;;;14704:22:0;;;;;;:18;:22;;;;;;;;14676:50;14675:102;;;-1:-1:-1;14740:13:0;;-1:-1:-1;;;;;14732:21:0;;;14740:13;;14732:21;;;;:44;;-1:-1:-1;14763:13:0;;-1:-1:-1;;;;;14757:19:0;;;14763:13;;14757:19;;14732:44;14671:594;;;-1:-1:-1;14804:5:0;14671:594;;;14887:13;;-1:-1:-1;;;;;14879:21:0;;;14887:13;;14879:21;:55;;;;-1:-1:-1;14918:15:0;;-1:-1:-1;;;;;14904:30:0;;;14918:15;;14904:30;;14879:55;14876:162;;;14967:14;;14955:9;:26;15010:12;;15000:7;:22;14876:162;15097:13;;-1:-1:-1;;;;;15091:19:0;;;15097:13;;15091:19;:55;;;;-1:-1:-1;15130:15:0;;-1:-1:-1;;;;;15114:32:0;;;15130:15;;15114:32;;15091:55;15087:165;;;15179:15;;15167:9;:27;15223:13;;15213:7;:23;15087:165;15277:41;15292:4;15298:2;15302:6;15310:7;15277:14;:41::i;6090:224::-;6210:7;6246:12;6238:6;;;;6230:29;;;;-1:-1:-1;;;6230:29:0;;;;;;;;:::i;:::-;-1:-1:-1;6270:9:0;6282:5;6286:1;6282;:5;:::i;:::-;6270:17;6090:224;-1:-1:-1;;;;;6090:224:0:o;15825:99::-;15882:17;;:34;;-1:-1:-1;;;;;15882:17:0;;;;:34;;;;;15909:6;;15882:17;:34;:17;:34;15909:6;15882:17;:34;;;;;;;;;;;;;;;;;;;11936:323;12031:7;12089;;12078;:18;;12056:110;;;;-1:-1:-1;;;12056:110:0;;11412:2:1;12056:110:0;;;11394:21:1;11451:2;11431:18;;;11424:30;11490:34;11470:18;;;11463:62;-1:-1:-1;;;11541:18:1;;;11534:40;11591:19;;12056:110:0;11210:406:1;12056:110:0;12177:19;12199:10;:8;:10::i;:::-;12177:32;-1:-1:-1;12227:24:0;:7;12177:32;12227:11;:24::i;:::-;12220:31;11936:323;-1:-1:-1;;;11936:323:0:o;15334:483::-;9648:6;:13;;-1:-1:-1;;;;9648:13:0;-1:-1:-1;;;9648:13:0;;;15436:16:::1;::::0;;15450:1:::1;15436:16:::0;;;;;::::1;::::0;;-1:-1:-1;;15436:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;15436:16:0::1;15412:40;;15481:4;15463;15468:1;15463:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;15463:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;15507:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;15507:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;15463:7;;15507:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15497:4;15502:1;15497:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;15497:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;15572:15:::1;::::0;15540:62:::1;::::0;15557:4:::1;::::0;15572:15:::1;15590:11:::0;15540:8:::1;:62::i;:::-;15613:15;::::0;:196:::1;::::0;-1:-1:-1;;;15613:196:0;;-1:-1:-1;;;;;15613:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;15694:11;;15613:15:::1;::::0;15736:4;;15763::::1;::::0;15783:15:::1;::::0;15613:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;9684:6:0;:14;;-1:-1:-1;;;;9684:14:0;;;-1:-1:-1;;;;15334:483:0:o;16805:282::-;16961:7;16956:28;;16970:14;:12;:14::i;:::-;16995:44;17013:6;17021:9;17032:6;16995:17;:44::i;:::-;17055:7;17050:29;;17064:15;12550:17;;12538:9;:29;12588:15;;12578:7;:25;12494:117;19766:164;19808:7;19829:15;19846;19865:19;:17;:19::i;:::-;19828:56;;-1:-1:-1;19828:56:0;-1:-1:-1;19902:20:0;19828:56;;19902:11;:20::i;:::-;19895:27;;;;19766:164;:::o;6576:132::-;6634:7;6661:39;6665:1;6668;6661:39;;;;;;;;;;;;;;;;;:3;:39::i;12267:219::-;12314:9;;:14;:30;;;;-1:-1:-1;12332:7:0;;:12;12314:30;12310:43;;;12267:219::o;12310:43::-;12385:9;;;12365:17;:29;12423:7;;;12405:15;:25;-1:-1:-1;12443:13:0;;;;12467:11;12267:219::o;17095:610::-;17242:15;17272:23;17310:12;17337:23;17375:12;17402:13;17429:19;17440:7;17429:10;:19::i;:::-;-1:-1:-1;;;;;17477:15:0;;;;;;:7;:15;;;;;;17227:221;;-1:-1:-1;17227:221:0;;-1:-1:-1;17227:221:0;;-1:-1:-1;17227:221:0;-1:-1:-1;17227:221:0;-1:-1:-1;17227:221:0;-1:-1:-1;17477:28:0;;17227:221;17477:19;:28::i;:::-;-1:-1:-1;;;;;17459:15:0;;;;;;;:7;:15;;;;;;:46;;;;17537:18;;;;;;;:39;;17560:15;17537:22;:39::i;:::-;-1:-1:-1;;;;;17516:18:0;;;;;;:7;:18;;;;;:60;17587:16;17597:5;17587:9;:16::i;:::-;17614:23;17626:4;17632;17614:11;:23::i;:::-;17670:9;-1:-1:-1;;;;;17653:44:0;17662:6;-1:-1:-1;;;;;17653:44:0;;17681:15;17653:44;;;;2992:25:1;;2980:2;2965:18;;2846:177;17653:44:0;;;;;;;;17216:489;;;;;;17095:610;;;:::o;19938:257::-;20036:7;;19989;;;;8412:18;20104:20;20036:7;8412:18;20104:11;:20::i;:::-;20094:7;:30;20090:61;;;-1:-1:-1;;20134:7:0;;;8412:18;;-1:-1:-1;19938:257:0;-1:-1:-1;19938:257:0:o;20090:61::-;20170:7;;20179;;-1:-1:-1;19938:257:0;-1:-1:-1;19938:257:0:o;6716:223::-;6836:7;6871:12;6864:5;6856:28;;;;-1:-1:-1;;;6856:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6895:9:0;6907:5;6911:1;6907;:5;:::i;18124:615::-;18224:7;18246;18268;18290;18312;18334;18370:23;18395:12;18409:13;18439:40;18451:7;18460:9;;18471:7;;18439:11;:40::i;:::-;18369:110;;;;;;18490:19;18512:10;:8;:10::i;:::-;18490:32;;18534:15;18551:23;18576:12;18605:46;18617:7;18626:4;18632:5;18639:11;18605;:46::i;:::-;18533:118;;-1:-1:-1;18533:118:0;-1:-1:-1;18533:118:0;-1:-1:-1;18702:15:0;;-1:-1:-1;18719:4:0;;-1:-1:-1;18725:5:0;;-1:-1:-1;;;;;18124:615:0;;;;;;;:::o;5946:136::-;6004:7;6031:43;6035:1;6038;6031:43;;;;;;;;;;;;;;;;;:3;:43::i;5759:179::-;5817:7;;5849:5;5853:1;5849;:5;:::i;:::-;5837:17;;5878:1;5873;:6;;5865:46;;;;-1:-1:-1;;;5865:46:0;;13286:2:1;5865:46:0;;;13268:21:1;13325:2;13305:18;;;13298:30;13364:29;13344:18;;;13337:57;13411:18;;5865:46:0;13084:351:1;17713:211:0;17766:19;17788:10;:8;:10::i;:::-;17766:32;-1:-1:-1;17809:13:0;17825:22;:5;17766:32;17825:9;:22::i;:::-;17899:4;17883:22;;;;:7;:22;;;;;;17809:38;;-1:-1:-1;17883:33:0;;17809:38;17883:26;:33::i;:::-;17874:4;17858:22;;;;:7;:22;;;;;:58;-1:-1:-1;;;17713:211:0:o;17932:147::-;18010:7;;:17;;18022:4;18010:11;:17::i;:::-;18000:7;:27;18051:10;;:20;;18066:4;18051:14;:20::i;:::-;18038:10;:33;-1:-1:-1;;17932:147:0:o;18747:469::-;18916:7;;;;19010:30;19036:3;19010:21;:7;19022:8;19010:11;:21::i;:::-;:25;;:30::i;:::-;18995:45;-1:-1:-1;19051:13:0;19067:28;19091:3;19067:19;:7;19079:6;19067:11;:19::i;:28::-;19051:44;-1:-1:-1;19106:23:0;19132:28;19051:44;19132:17;:7;19144:4;19132:11;:17::i;:::-;:21;;:28::i;:::-;19106:54;19196:4;;-1:-1:-1;19202:5:0;;-1:-1:-1;18747:469:0;;-1:-1:-1;;;;;18747:469:0:o;19224:534::-;19418:7;;;;19515:24;:7;19527:11;19515;:24::i;:::-;19497:42;-1:-1:-1;19550:12:0;19565:21;:4;19574:11;19565:8;:21::i;:::-;19550:36;-1:-1:-1;19597:13:0;19613:22;:5;19623:11;19613:9;:22::i;:::-;19597:38;-1:-1:-1;19646:23:0;19672:28;19597:38;19672:17;:7;19684:4;19672:11;:17::i;:28::-;19719:7;;;;-1:-1:-1;19745:4:0;;-1:-1:-1;19224:534:0;;-1:-1:-1;;;;;;;19224:534:0:o;6322:246::-;6380:7;6404:1;6409;6404:6;6400:47;;-1:-1:-1;6434:1:0;6427:8;;6400:47;6457:9;6469:5;6473:1;6469;:5;:::i;:::-;6457:17;-1:-1:-1;6502:1:0;6493:5;6497:1;6457:17;6493:5;:::i;:::-;:10;6485:56;;;;-1:-1:-1;;;6485:56:0;;13815:2:1;6485:56:0;;;13797:21:1;13854:2;13834:18;;;13827:30;13893:34;13873:18;;;13866:62;-1:-1:-1;;;13944:18:1;;;13937:31;13985:19;;6485:56:0;13613:397:1;14:127;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:131;-1:-1:-1;;;;;221:31:1;;211:42;;201:70;;267:1;264;257:12;282:134;350:20;;379:31;350:20;379:31;:::i;:::-;282:134;;;:::o;421:1121::-;505:6;536:2;579;567:9;558:7;554:23;550:32;547:52;;;595:1;592;585:12;547:52;635:9;622:23;664:18;705:2;697:6;694:14;691:34;;;721:1;718;711:12;691:34;759:6;748:9;744:22;734:32;;804:7;797:4;793:2;789:13;785:27;775:55;;826:1;823;816:12;775:55;862:2;849:16;884:2;880;877:10;874:36;;;890:18;;:::i;:::-;936:2;933:1;929:10;968:2;962:9;1031:2;1027:7;1022:2;1018;1014:11;1010:25;1002:6;998:38;1086:6;1074:10;1071:22;1066:2;1054:10;1051:18;1048:46;1045:72;;;1097:18;;:::i;:::-;1133:2;1126:22;1183:18;;;1217:15;;;;-1:-1:-1;1259:11:1;;;1255:20;;;1287:19;;;1284:39;;;1319:1;1316;1309:12;1284:39;1343:11;;;;1363:148;1379:6;1374:3;1371:15;1363:148;;;1445:23;1464:3;1445:23;:::i;:::-;1433:36;;1396:12;;;;1489;;;;1363:148;;;1530:6;421:1121;-1:-1:-1;;;;;;;;421:1121:1:o;1547:548::-;1659:4;1688:2;1717;1706:9;1699:21;1749:6;1743:13;1792:6;1787:2;1776:9;1772:18;1765:34;1817:1;1827:140;1841:6;1838:1;1835:13;1827:140;;;1936:14;;;1932:23;;1926:30;1902:17;;;1921:2;1898:26;1891:66;1856:10;;1827:140;;;1831:3;2016:1;2011:2;2002:6;1991:9;1987:22;1983:31;1976:42;2086:2;2079;2075:7;2070:2;2062:6;2058:15;2054:29;2043:9;2039:45;2035:54;2027:62;;;;1547:548;;;;:::o;2100:315::-;2168:6;2176;2229:2;2217:9;2208:7;2204:23;2200:32;2197:52;;;2245:1;2242;2235:12;2197:52;2284:9;2271:23;2303:31;2328:5;2303:31;:::i;:::-;2353:5;2405:2;2390:18;;;;2377:32;;-1:-1:-1;;;2100:315:1:o;3028:456::-;3105:6;3113;3121;3174:2;3162:9;3153:7;3149:23;3145:32;3142:52;;;3190:1;3187;3180:12;3142:52;3229:9;3216:23;3248:31;3273:5;3248:31;:::i;:::-;3298:5;-1:-1:-1;3355:2:1;3340:18;;3327:32;3368:33;3327:32;3368:33;:::i;:::-;3028:456;;3420:7;;-1:-1:-1;;;3474:2:1;3459:18;;;;3446:32;;3028:456::o;3886:247::-;3945:6;3998:2;3986:9;3977:7;3973:23;3969:32;3966:52;;;4014:1;4011;4004:12;3966:52;4053:9;4040:23;4072:31;4097:5;4072:31;:::i;4138:160::-;4203:20;;4259:13;;4252:21;4242:32;;4232:60;;4288:1;4285;4278:12;4303:180;4359:6;4412:2;4400:9;4391:7;4387:23;4383:32;4380:52;;;4428:1;4425;4418:12;4380:52;4451:26;4467:9;4451:26;:::i;4488:180::-;4547:6;4600:2;4588:9;4579:7;4575:23;4571:32;4568:52;;;4616:1;4613;4606:12;4568:52;-1:-1:-1;4639:23:1;;4488:180;-1:-1:-1;4488:180:1:o;4673:385::-;4759:6;4767;4775;4783;4836:3;4824:9;4815:7;4811:23;4807:33;4804:53;;;4853:1;4850;4843:12;4804:53;-1:-1:-1;;4876:23:1;;;4946:2;4931:18;;4918:32;;-1:-1:-1;4997:2:1;4982:18;;4969:32;;5048:2;5033:18;5020:32;;-1:-1:-1;4673:385:1;-1:-1:-1;4673:385:1:o;5063:689::-;5155:6;5163;5171;5224:2;5212:9;5203:7;5199:23;5195:32;5192:52;;;5240:1;5237;5230:12;5192:52;5280:9;5267:23;5309:18;5350:2;5342:6;5339:14;5336:34;;;5366:1;5363;5356:12;5336:34;5404:6;5393:9;5389:22;5379:32;;5449:7;5442:4;5438:2;5434:13;5430:27;5420:55;;5471:1;5468;5461:12;5420:55;5511:2;5498:16;5537:2;5529:6;5526:14;5523:34;;;5553:1;5550;5543:12;5523:34;5608:7;5601:4;5591:6;5588:1;5584:14;5580:2;5576:23;5572:34;5569:47;5566:67;;;5629:1;5626;5619:12;5566:67;5660:4;5652:13;;;;-1:-1:-1;5684:6:1;-1:-1:-1;5709:37:1;;5725:20;;;-1:-1:-1;5709:37:1;:::i;:::-;5699:47;;5063:689;;;;;:::o;5757:388::-;5825:6;5833;5886:2;5874:9;5865:7;5861:23;5857:32;5854:52;;;5902:1;5899;5892:12;5854:52;5941:9;5928:23;5960:31;5985:5;5960:31;:::i;:::-;6010:5;-1:-1:-1;6067:2:1;6052:18;;6039:32;6080:33;6039:32;6080:33;:::i;:::-;6132:7;6122:17;;;5757:388;;;;;:::o;6150:356::-;6352:2;6334:21;;;6371:18;;;6364:30;6430:34;6425:2;6410:18;;6403:62;6497:2;6482:18;;6150:356::o;6511:127::-;6572:10;6567:3;6563:20;6560:1;6553:31;6603:4;6600:1;6593:15;6627:4;6624:1;6617:15;6643:127;6704:10;6699:3;6695:20;6692:1;6685:31;6735:4;6732:1;6725:15;6759:4;6756:1;6749:15;6775:135;6814:3;6835:17;;;6832:43;;6855:18;;:::i;:::-;-1:-1:-1;6902:1:1;6891:13;;6775:135::o;10543:125::-;10608:9;;;10629:10;;;10626:36;;;10642:18;;:::i;11077:128::-;11144:9;;;11165:11;;;11162:37;;;11179:18;;:::i;11621:251::-;11691:6;11744:2;11732:9;11723:7;11719:23;11715:32;11712:52;;;11760:1;11757;11750:12;11712:52;11792:9;11786:16;11811:31;11836:5;11811:31;:::i;11877:980::-;12139:4;12187:3;12176:9;12172:19;12218:6;12207:9;12200:25;12244:2;12282:6;12277:2;12266:9;12262:18;12255:34;12325:3;12320:2;12309:9;12305:18;12298:31;12349:6;12384;12378:13;12415:6;12407;12400:22;12453:3;12442:9;12438:19;12431:26;;12492:2;12484:6;12480:15;12466:29;;12513:1;12523:195;12537:6;12534:1;12531:13;12523:195;;;12602:13;;-1:-1:-1;;;;;12598:39:1;12586:52;;12693:15;;;;12658:12;;;;12634:1;12552:9;12523:195;;;-1:-1:-1;;;;;;;12774:32:1;;;;12769:2;12754:18;;12747:60;-1:-1:-1;;;12838:3:1;12823:19;12816:35;12735:3;11877:980;-1:-1:-1;;;11877:980:1:o;12862:217::-;12902:1;12928;12918:132;;12972:10;12967:3;12963:20;12960:1;12953:31;13007:4;13004:1;12997:15;13035:4;13032:1;13025:15;12918:132;-1:-1:-1;13064:9:1;;12862:217::o;13440:168::-;13513:9;;;13544;;13561:15;;;13555:22;;13541:37;13531:71;;13582:18;;:::i

Swarm Source

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