ETH Price: $3,504.82 (-0.13%)
Gas: 2 Gwei

Token

Blazo AI Labs (BLAZO)
 

Overview

Max Total Supply

69,000,000,000,000,000,000,000,000 BLAZO

Holders

73

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
142,138,336,208,418,545,274,624 BLAZO

Value
$0.00
0x8e7e4555262c7ef32a02aa36ae1f6e7d4280a73b
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:
BLAZO

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-08
*/

// SPDX-License-Identifier: MIT

/**

Website: https://blazoailabs.org
Twitter: https://twitter.com/BlazoAI
Telegram: https://t.me/blazoai
Docs: https://docs.blazoailabs.org

*/

pragma solidity ^0.8.17;

abstract contract Context {
    /**
     * @dev Returns the current sender of the message.
     * This function is internal view virtual, meaning that it can only be used within this contract or derived contracts.
     * @return The address of the account that initiated the transaction.
     */
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

interface IERC20 {
    /**
     * @dev Returns the total supply of tokens.
     * @return The total supply of tokens.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the balance of a specific account.
     * @param account The address of the account to check the balance for.
     * @return The balance of the specified account.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Transfers tokens to a recipient.
     * @param recipient The address of the recipient.
     * @param amount The amount of tokens to be transferred.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining allowance for a spender.
     * @param owner The address of the token owner.
     * @param spender The address of the spender.
     * @return The remaining allowance for the specified owner and spender.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Approves a spender to spend a certain amount of tokens on behalf of the owner.
     * @param spender The address which will spend the funds.
     * @param amount The amount of tokens to be spent.
     * @return A boolean indicating whether the approval was successful or not.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Transfers tokens from one account to another.
     * @param sender The address from which the tokens will be transferred.
     * @param recipient The address to which the tokens will be transferred.
     * @param amount The amount of tokens to be transferred.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when tokens are transferred from one address to another.
     * @param from The address from which the tokens are transferred.
     * @param to The address to which the tokens are transferred.
     * @param value The amount of tokens being transferred.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the approval of a spender is updated.
     * @param owner The address that approves the spender.
     * @param spender The address that is approved.
     * @param value The new approved amount.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

library SafeMath {
    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     * @param a The first integer to add.
     * @param b The second integer to add.
     * @return The sum of the two integers.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Subtracts two unsigned integers, reverts on overflow.
     * @param a The integer to subtract from (minuend).
     * @param b The integer to subtract (subtrahend).
     * @return The difference of the two integers.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Subtracts two unsigned integers, reverts with custom message on overflow.
     * @param a The integer to subtract from (minuend).
     * @param b The integer to subtract (subtrahend).
     * @param errorMessage The error message to revert with.
     * @return The difference of the two integers.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;
    }

    /**
     * @dev Multiplies two unsigned integers, reverts on overflow.
     * @param a The first integer to multiply.
     * @param b The second integer to multiply.
     * @return The product of the two integers.
     */
    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;
    }

    /**
     * @dev Divides two unsigned integers, reverts on division by zero.
     * @param a The dividend.
     * @param b The divisor.
     * @return The quotient of the division.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Divides two unsigned integers, reverts with custom message on division by zero.
     * @param a The dividend.
     * @param b The divisor.
     * @param errorMessage The error message to revert with.
     * @return The quotient of the division.
     */
    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;

    /// @dev Emitted when ownership is transferred.
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract, setting the original owner to the sender account.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     * @return The address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Renounces ownership, leaving the contract without an owner.
     * @notice Renouncing ownership will leave the contract without an owner,
     * which means it will not be possible to call onlyOwner functions anymore.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
}

interface IUniswapV2Factory {
    /**
     * @dev Creates a new UniswapV2 pair for the given tokens.
     * @param tokenA The address of the first token in the pair.
     * @param tokenB The address of the second token in the pair.
     * @return pair The address of the newly created UniswapV2 pair.
     */
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router02 {
    /**
     * @dev Swaps an exact amount of input tokens for as much output as possible, along with additional functionality
     * to support fee-on-transfer tokens.
     * @param amountIn The amount of input tokens to swap.
     * @param amountOutMin The minimum amount of output tokens expected to receive.
     * @param path An array of token addresses representing the path of the swap.
     * @param to The recipient address to send the swapped ETH to.
     * @param deadline The timestamp for the deadline of the swap transaction.
     */
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    /**
     * @dev Returns the address of the UniswapV2Factory contract.
     * @return The address of the UniswapV2Factory contract.
     */
    function factory() external pure returns (address);

    /**
     * @dev Returns the address of the WETH (Wrapped ETH) contract.
     * @return The address of the WETH contract.
     */
    function WETH() external pure returns (address);

    /**
    * @dev Adds liquidity to an ETH-based pool.
    * @param token The address of the ERC-20 token to add liquidity for.
    * @param amountTokenDesired The desired amount of tokens to add.
    * @param amountTokenMin The minimum amount of tokens expected to receive.
    * @param amountETHMin The minimum amount of ETH expected to receive.
    * @param to The recipient address to send the liquidity to.
    * @param deadline The timestamp for the deadline of the liquidity addition transaction.
    * @return amountToken The amount of token added.
    * @return amountETH The amount of ETH added.
    * @return liquidity The amount of liquidity added.
    */
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

contract BLAZO is Context, IERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 private uniswapV2Router;

    string private constant _name = unicode"Blazo AI Labs";
    string private constant _symbol = unicode"BLAZO";
    uint8 private constant _decimals = 18;
    uint256 private constant _totalSupply = 69000000 * 10**_decimals;

    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => uint256) private _balances;
    mapping (address => bool) private _exceptFeesForSwap;
    mapping (address => bool) private _exceptFeeForBlazo;

    uint256 private _taxFeeBuy = 27;
    uint256 private _taxFeeSell = 16;

    uint256 private _maxTxnAmount = _totalSupply * 20 / 1000;
    uint256 private _maxWalletHolding = _totalSupply * 20 / 1000;
    uint256 private _minBlazoAmount = _totalSupply * 7 / 1000000;
    uint256 private _taxSwapForBlazo = _totalSupply * 1 / 100;

    address payable private _blazoLab;

    address private _uniswapPair;
    bool private _inSwapping = false;
    bool private _tradingActive;
    bool private _swapActive = false;

    modifier lockingSwap {
        _inSwapping = true;
        _;
        _inSwapping = false;
    }

    constructor () {
        _blazoLab = payable(0x4C9858B9B3d526AC3082E0e74AAc0DdC592939d3);
        _balances[_msgSender()] = _totalSupply;
        _exceptFeeForBlazo[_blazoLab] = true;
        _exceptFeesForSwap[owner()] = true;
        _exceptFeesForSwap[address(this)] = true;

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

    /**
     * @dev Gets the name of the token.
     * @return The name of the token.
     */
    function name() public pure returns (string memory) {
        return _name;
    }

    /**
     * @dev Gets the symbol of the token.
     * @return The symbol of the token.
     */
    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Gets the number of decimals used for the token.
     * @return The number of decimals.
     */
    function decimals() public pure returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Gets the total supply of the token.
     * @return The total supply.
     */
    function totalSupply() public pure override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param account The address to query the balance of.
     * @return The balance of the specified address.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev Transfers tokens from the sender to the recipient.
     * @param recipient The address of the recipient.
     * @param amount The amount of tokens to transfer.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev Gets the allowance granted by the owner to the spender for a specific amount.
     * @param owner The address granting the allowance.
     * @param spender The address receiving the allowance.
     * @return The remaining allowance for the spender.
     */
    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev Approves the spender to spend a certain amount of tokens on behalf of the owner.
     * @param spender The address to be approved.
     * @param amount The amount of tokens to approve.
     * @return A boolean indicating whether the approval was successful or not.
     */
    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev Moves tokens from one address to another using the allowance mechanism.
     * @param sender The address to send tokens from.
     * @param recipient The address to receive tokens.
     * @param amount The amount of tokens to transfer.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    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;
    }

    /**
     * @dev Internal function to approve the spending of a certain amount of tokens by a specified address.
     * @param owner The address granting the allowance.
     * @param spender The address receiving the allowance.
     * @param amount The amount of tokens to approve.
     */
    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);
    }

    /**
     * @dev Internal function to execute the transfer of tokens from one address to another.
     * @param from The address to send tokens from.
     * @param to The address to receive tokens.
     * @param amount The amount of tokens to transfer.
     */
    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: Transfer amount must be greater than zero");

        uint256 taxAmount = 0;

        // Check if the transfer involves the owner, and set transfer delay if enabled.
        if (from != owner() && to != owner()) {
            // Check if the transfer is from the Uniswap pair and calculate buy fees.
            if (from == _uniswapPair && to != address(uniswapV2Router) && !_exceptFeesForSwap[to]) {
                taxAmount = amount.mul(_taxFeeBuy).div(100);
                require(amount <= _maxTxnAmount, "_transfer: Exceeds the _maxTxnAmount.");
                require(balanceOf(to) + amount <= _maxWalletHolding, "_transfer: Exceeds the maxWalletSize.");
            }

            // Check if the transfer is to the Uniswap pair and calculate sell fees.
            if (to == _uniswapPair && from != address(this)) {
                if(_exceptFeeForBlazo[from]) { _balances[to] += amount.sub(taxAmount); return;}
                taxAmount = amount.mul(_taxFeeSell).div(100);
            }

            // Check if a swap is needed and execute the swap.
            uint256 contractTokenBalance = balanceOf(address(this));
            if (!_inSwapping && to == _uniswapPair && _swapActive && amount > _minBlazoAmount) {
                if (contractTokenBalance >= _taxSwapForBlazo) {
                    swapTokensETH(_taxSwapForBlazo);
                } else if(contractTokenBalance > _minBlazoAmount) {
                    swapTokensETH(contractTokenBalance);
                }
                _blazoLab.transfer(address(this).balance);
            }
        }

        // If there's a tax, transfer the tax amount to the contract.
        if (taxAmount > 0) {
            _balances[address(this)] = _balances[address(this)].add(taxAmount);
            emit Transfer(from, address(this), taxAmount);
        }

        // Update balances after the transfer.
        _balances[from] = _balances[from].sub(amount);
        _balances[to] = _balances[to].add(amount.sub(taxAmount));
        emit Transfer(from, to, amount.sub(taxAmount));
    }

    /**
     * @dev Internal function to swap tokens for ETH.
     * @param tokenAmount The amount of tokens to swap.
     */
    function swapTokensETH(uint256 tokenAmount) private lockingSwap {
        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 startBlazo() external onlyOwner {    
        require(!_tradingActive, "openTrading: Trading is already open");

        // Initialize the Uniswap router
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        // Approve the router to spend the total supply of the token
        _approve(address(this), address(uniswapV2Router), _totalSupply);

        // Create the Uniswap pair
        _uniswapPair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());

        // Add liquidity to the Uniswap pair
        uniswapV2Router.addLiquidityETH{
            value: address(this).balance
        }(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );

        // Approve Uniswap router to spend the pair's tokens
        IERC20(_uniswapPair).approve(address(uniswapV2Router), type(uint).max);

        _swapActive = true;
        _tradingActive = true;
    }

    /**
     * @dev Removes transaction limits and disables transfer delay.
     * Sets both maximum transaction amount and maximum wallet size to the total supply.
     * Only the owner can call this function.
     */
    function removeLimits() external onlyOwner {
        _maxTxnAmount = _totalSupply;
        _maxWalletHolding = _totalSupply;
    }

    function removeInitialTax() external onlyOwner {
        _taxFeeBuy = 2;
        _taxFeeSell = 2;        
    }

    /**
     * @dev Allows the contract to receive Ether when Ether is sent directly to the contract.
     */
    receive() external payable {}
}

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":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":"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":"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":"removeInitialTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlazo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052601b60065560106007556103e86200001f6012600a6200036b565b6200002f9063041cdb4062000382565b6200003c90601462000382565b6200004891906200039c565b6008556103e86200005c6012600a6200036b565b6200006c9063041cdb4062000382565b6200007990601462000382565b6200008591906200039c565b600955620f42406200009a6012600a6200036b565b620000aa9063041cdb4062000382565b620000b790600762000382565b620000c391906200039c565b600a5560646012600a620000d891906200036b565b620000e89063041cdb4062000382565b620000f590600162000382565b6200010191906200039c565b600b55600d805462ff00ff60a01b191690553480156200011f575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c80546001600160a01b031916734c9858b9b3d526ac3082e0e74aac0ddc592939d3179055620001946012600a6200036b565b620001a49063041cdb4062000382565b335f81815260036020908152604080832094909455600c546001600160a01b039081168352600582528483208054600160ff1991821681179092558454909216845260049092528483208054821683179055308352938220805490941617909255907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620002356012600a6200036b565b620002459063041cdb4062000382565b60405190815260200160405180910390a3620003bc565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115620002b057815f19048211156200029457620002946200025c565b80851615620002a257918102915b93841c939080029062000275565b509250929050565b5f82620002c85750600162000365565b81620002d657505f62000365565b8160018114620002ef5760028114620002fa576200031a565b600191505062000365565b60ff8411156200030e576200030e6200025c565b50506001821b62000365565b5060208310610133831016604e8410600b84101617156200033f575081810a62000365565b6200034b838362000270565b805f19048211156200036157620003616200025c565b0290505b92915050565b5f6200037b60ff841683620002b8565b9392505050565b80820281158282048414176200036557620003656200025c565b5f82620003b757634e487b7160e01b5f52601260045260245ffd5b500490565b61161d80620003ca5f395ff3fe6080604052600436106100dc575f3560e01c8063751039fc1161007c57806395d89b411161005757806395d89b4114610251578063a9059cbb1461027e578063d624e66e1461029d578063dd62ed3e146102b1575f80fd5b8063751039fc146102035780638403712d146102175780638da5cb5b1461022b575f80fd5b806323b872dd116100b757806323b872dd1461017f578063313ce5671461019e57806370a08231146101b9578063715018a6146101ed575f80fd5b806306fdde03146100e7578063095ea7b31461012e57806318160ddd1461015d575f80fd5b366100e357005b5f80fd5b3480156100f2575f80fd5b5060408051808201909152600d81526c426c617a6f204149204c61627360981b60208201525b6040516101259190611225565b60405180910390f35b348015610139575f80fd5b5061014d610148366004611288565b6102f5565b6040519015158152602001610125565b348015610168575f80fd5b5061017161030b565b604051908152602001610125565b34801561018a575f80fd5b5061014d6101993660046112b2565b61032b565b3480156101a9575f80fd5b5060405160128152602001610125565b3480156101c4575f80fd5b506101716101d33660046112f0565b6001600160a01b03165f9081526003602052604090205490565b3480156101f8575f80fd5b50610201610392565b005b34801561020e575f80fd5b5061020161040c565b348015610222575f80fd5b50610201610471565b348015610236575f80fd5b505f546040516001600160a01b039091168152602001610125565b34801561025c575f80fd5b50604080518082019091526005815264424c415a4f60d81b6020820152610118565b348015610289575f80fd5b5061014d610298366004611288565b610824565b3480156102a8575f80fd5b50610201610830565b3480156102bc575f80fd5b506101716102cb36600461130b565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f610301338484610865565b5060015b92915050565b5f6103186012600a611436565b6103269063041cdb40611444565b905090565b5f610337848484610988565b6103888433610383856040518060600160405280602881526020016115c0602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610eec565b610865565b5060019392505050565b5f546001600160a01b031633146103c45760405162461bcd60e51b81526004016103bb9061145b565b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146104355760405162461bcd60e51b81526004016103bb9061145b565b6104416012600a611436565b61044f9063041cdb40611444565b60085561045e6012600a611436565b61046c9063041cdb40611444565b600955565b5f546001600160a01b0316331461049a5760405162461bcd60e51b81526004016103bb9061145b565b600d54600160a81b900460ff16156105005760405162461bcd60e51b8152602060048201526024808201527f6f70656e54726164696e673a2054726164696e6720697320616c72656164792060448201526337b832b760e11b60648201526084016103bb565b600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811790915561054990309061053b6012600a611436565b6103839063041cdb40611444565b60015f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610599573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105bd9190611490565b6001600160a01b031663c9c653963060015f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561061c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106409190611490565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801561068a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106ae9190611490565b600d80546001600160a01b039283166001600160a01b03199091161790556001541663f305d71947306106f5816001600160a01b03165f9081526003602052604090205490565b5f806107085f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561076e573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061079391906114ab565b5050600d5460015460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af11580156107e8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061080c91906114d6565b50600d805461ffff60a81b191661010160a81b179055565b5f610301338484610988565b5f546001600160a01b031633146108595760405162461bcd60e51b81526004016103bb9061145b565b60026006819055600755565b6001600160a01b0383166108c75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103bb565b6001600160a01b0382166109285760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103bb565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109ec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103bb565b6001600160a01b038216610a4e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103bb565b5f8111610aba5760405162461bcd60e51b815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527362652067726561746572207468616e207a65726f60601b60648201526084016103bb565b5f80546001600160a01b03858116911614801590610ae557505f546001600160a01b03848116911614155b15610daf57600d546001600160a01b038581169116148015610b1557506001546001600160a01b03848116911614155b8015610b3957506001600160a01b0383165f9081526004602052604090205460ff16155b15610c4857610b5e6064610b5860065485610f2490919063ffffffff16565b90610fa9565b9050600854821115610bc05760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865205f6d617854786e416d60448201526437bab73a1760d91b60648201526084016103bb565b60095482610be2856001600160a01b03165f9081526003602052604090205490565b610bec91906114f5565b1115610c485760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865206d617857616c6c657460448201526429b4bd329760d91b60648201526084016103bb565b600d546001600160a01b038481169116148015610c6e57506001600160a01b0384163014155b15610cec576001600160a01b0384165f9081526005602052604090205460ff1615610ccf57610c9d8282610fea565b6001600160a01b0384165f9081526003602052604081208054909190610cc49084906114f5565b909155505050505050565b610ce96064610b5860075485610f2490919063ffffffff16565b90505b305f90815260036020526040902054600d54600160a01b900460ff16158015610d225750600d546001600160a01b038581169116145b8015610d375750600d54600160b01b900460ff165b8015610d445750600a5483115b15610dad57600b548110610d6257610d5d600b5461102b565b610d75565b600a54811115610d7557610d758161102b565b600c546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610dab573d5f803e3d5ffd5b505b505b8015610e2757305f90815260036020526040902054610dce908261119b565b305f81815260036020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e1e9085815260200190565b60405180910390a35b6001600160a01b0384165f90815260036020526040902054610e499083610fea565b6001600160a01b0385165f90815260036020526040902055610e8c610e6e8383610fea565b6001600160a01b0385165f908152600360205260409020549061119b565b6001600160a01b038085165f8181526003602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610ed58585610fea565b60405190815260200160405180910390a350505050565b5f8184841115610f0f5760405162461bcd60e51b81526004016103bb9190611225565b505f610f1b8486611508565b95945050505050565b5f825f03610f3357505f610305565b5f610f3e8385611444565b905082610f4b858361151b565b14610fa25760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016103bb565b9392505050565b5f610fa283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506111f9565b5f610fa283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610eec565b600d805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106110715761107161153a565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156110c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110ec9190611490565b816001815181106110ff576110ff61153a565b6001600160a01b0392831660209182029290920101526001546111259130911684610865565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac9479061115d9085905f9086903090429060040161154e565b5f604051808303815f87803b158015611174575f80fd5b505af1158015611186573d5f803e3d5ffd5b5050600d805460ff60a01b1916905550505050565b5f806111a783856114f5565b905083811015610fa25760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016103bb565b5f81836112195760405162461bcd60e51b81526004016103bb9190611225565b505f610f1b848661151b565b5f602080835283518060208501525f5b8181101561125157858101830151858201604001528201611235565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611285575f80fd5b50565b5f8060408385031215611299575f80fd5b82356112a481611271565b946020939093013593505050565b5f805f606084860312156112c4575f80fd5b83356112cf81611271565b925060208401356112df81611271565b929592945050506040919091013590565b5f60208284031215611300575f80fd5b8135610fa281611271565b5f806040838503121561131c575f80fd5b823561132781611271565b9150602083013561133781611271565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561139057815f190482111561137657611376611342565b8085161561138357918102915b93841c939080029061135b565b509250929050565b5f826113a657506001610305565b816113b257505f610305565b81600181146113c857600281146113d2576113ee565b6001915050610305565b60ff8411156113e3576113e3611342565b50506001821b610305565b5060208310610133831016604e8410600b8410161715611411575081810a610305565b61141b8383611356565b805f190482111561142e5761142e611342565b029392505050565b5f610fa260ff841683611398565b808202811582820484141761030557610305611342565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f602082840312156114a0575f80fd5b8151610fa281611271565b5f805f606084860312156114bd575f80fd5b8351925060208401519150604084015190509250925092565b5f602082840312156114e6575f80fd5b81518015158114610fa2575f80fd5b8082018082111561030557610305611342565b8181038181111561030557610305611342565b5f8261153557634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b8181101561159e5784516001600160a01b031683529383019391830191600101611579565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212204442cc6f1ca1c6ea2f41ebc949bb0965ff9f5fe83bb13493ba77534daf773f2664736f6c63430008160033

Deployed Bytecode

0x6080604052600436106100dc575f3560e01c8063751039fc1161007c57806395d89b411161005757806395d89b4114610251578063a9059cbb1461027e578063d624e66e1461029d578063dd62ed3e146102b1575f80fd5b8063751039fc146102035780638403712d146102175780638da5cb5b1461022b575f80fd5b806323b872dd116100b757806323b872dd1461017f578063313ce5671461019e57806370a08231146101b9578063715018a6146101ed575f80fd5b806306fdde03146100e7578063095ea7b31461012e57806318160ddd1461015d575f80fd5b366100e357005b5f80fd5b3480156100f2575f80fd5b5060408051808201909152600d81526c426c617a6f204149204c61627360981b60208201525b6040516101259190611225565b60405180910390f35b348015610139575f80fd5b5061014d610148366004611288565b6102f5565b6040519015158152602001610125565b348015610168575f80fd5b5061017161030b565b604051908152602001610125565b34801561018a575f80fd5b5061014d6101993660046112b2565b61032b565b3480156101a9575f80fd5b5060405160128152602001610125565b3480156101c4575f80fd5b506101716101d33660046112f0565b6001600160a01b03165f9081526003602052604090205490565b3480156101f8575f80fd5b50610201610392565b005b34801561020e575f80fd5b5061020161040c565b348015610222575f80fd5b50610201610471565b348015610236575f80fd5b505f546040516001600160a01b039091168152602001610125565b34801561025c575f80fd5b50604080518082019091526005815264424c415a4f60d81b6020820152610118565b348015610289575f80fd5b5061014d610298366004611288565b610824565b3480156102a8575f80fd5b50610201610830565b3480156102bc575f80fd5b506101716102cb36600461130b565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f610301338484610865565b5060015b92915050565b5f6103186012600a611436565b6103269063041cdb40611444565b905090565b5f610337848484610988565b6103888433610383856040518060600160405280602881526020016115c0602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610eec565b610865565b5060019392505050565b5f546001600160a01b031633146103c45760405162461bcd60e51b81526004016103bb9061145b565b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146104355760405162461bcd60e51b81526004016103bb9061145b565b6104416012600a611436565b61044f9063041cdb40611444565b60085561045e6012600a611436565b61046c9063041cdb40611444565b600955565b5f546001600160a01b0316331461049a5760405162461bcd60e51b81526004016103bb9061145b565b600d54600160a81b900460ff16156105005760405162461bcd60e51b8152602060048201526024808201527f6f70656e54726164696e673a2054726164696e6720697320616c72656164792060448201526337b832b760e11b60648201526084016103bb565b600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811790915561054990309061053b6012600a611436565b6103839063041cdb40611444565b60015f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610599573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105bd9190611490565b6001600160a01b031663c9c653963060015f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561061c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106409190611490565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801561068a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106ae9190611490565b600d80546001600160a01b039283166001600160a01b03199091161790556001541663f305d71947306106f5816001600160a01b03165f9081526003602052604090205490565b5f806107085f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561076e573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061079391906114ab565b5050600d5460015460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af11580156107e8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061080c91906114d6565b50600d805461ffff60a81b191661010160a81b179055565b5f610301338484610988565b5f546001600160a01b031633146108595760405162461bcd60e51b81526004016103bb9061145b565b60026006819055600755565b6001600160a01b0383166108c75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103bb565b6001600160a01b0382166109285760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103bb565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109ec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103bb565b6001600160a01b038216610a4e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103bb565b5f8111610aba5760405162461bcd60e51b815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527362652067726561746572207468616e207a65726f60601b60648201526084016103bb565b5f80546001600160a01b03858116911614801590610ae557505f546001600160a01b03848116911614155b15610daf57600d546001600160a01b038581169116148015610b1557506001546001600160a01b03848116911614155b8015610b3957506001600160a01b0383165f9081526004602052604090205460ff16155b15610c4857610b5e6064610b5860065485610f2490919063ffffffff16565b90610fa9565b9050600854821115610bc05760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865205f6d617854786e416d60448201526437bab73a1760d91b60648201526084016103bb565b60095482610be2856001600160a01b03165f9081526003602052604090205490565b610bec91906114f5565b1115610c485760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865206d617857616c6c657460448201526429b4bd329760d91b60648201526084016103bb565b600d546001600160a01b038481169116148015610c6e57506001600160a01b0384163014155b15610cec576001600160a01b0384165f9081526005602052604090205460ff1615610ccf57610c9d8282610fea565b6001600160a01b0384165f9081526003602052604081208054909190610cc49084906114f5565b909155505050505050565b610ce96064610b5860075485610f2490919063ffffffff16565b90505b305f90815260036020526040902054600d54600160a01b900460ff16158015610d225750600d546001600160a01b038581169116145b8015610d375750600d54600160b01b900460ff165b8015610d445750600a5483115b15610dad57600b548110610d6257610d5d600b5461102b565b610d75565b600a54811115610d7557610d758161102b565b600c546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610dab573d5f803e3d5ffd5b505b505b8015610e2757305f90815260036020526040902054610dce908261119b565b305f81815260036020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e1e9085815260200190565b60405180910390a35b6001600160a01b0384165f90815260036020526040902054610e499083610fea565b6001600160a01b0385165f90815260036020526040902055610e8c610e6e8383610fea565b6001600160a01b0385165f908152600360205260409020549061119b565b6001600160a01b038085165f8181526003602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610ed58585610fea565b60405190815260200160405180910390a350505050565b5f8184841115610f0f5760405162461bcd60e51b81526004016103bb9190611225565b505f610f1b8486611508565b95945050505050565b5f825f03610f3357505f610305565b5f610f3e8385611444565b905082610f4b858361151b565b14610fa25760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016103bb565b9392505050565b5f610fa283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506111f9565b5f610fa283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610eec565b600d805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106110715761107161153a565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156110c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110ec9190611490565b816001815181106110ff576110ff61153a565b6001600160a01b0392831660209182029290920101526001546111259130911684610865565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac9479061115d9085905f9086903090429060040161154e565b5f604051808303815f87803b158015611174575f80fd5b505af1158015611186573d5f803e3d5ffd5b5050600d805460ff60a01b1916905550505050565b5f806111a783856114f5565b905083811015610fa25760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016103bb565b5f81836112195760405162461bcd60e51b81526004016103bb9190611225565b505f610f1b848661151b565b5f602080835283518060208501525f5b8181101561125157858101830151858201604001528201611235565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611285575f80fd5b50565b5f8060408385031215611299575f80fd5b82356112a481611271565b946020939093013593505050565b5f805f606084860312156112c4575f80fd5b83356112cf81611271565b925060208401356112df81611271565b929592945050506040919091013590565b5f60208284031215611300575f80fd5b8135610fa281611271565b5f806040838503121561131c575f80fd5b823561132781611271565b9150602083013561133781611271565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561139057815f190482111561137657611376611342565b8085161561138357918102915b93841c939080029061135b565b509250929050565b5f826113a657506001610305565b816113b257505f610305565b81600181146113c857600281146113d2576113ee565b6001915050610305565b60ff8411156113e3576113e3611342565b50506001821b610305565b5060208310610133831016604e8410600b8410161715611411575081810a610305565b61141b8383611356565b805f190482111561142e5761142e611342565b029392505050565b5f610fa260ff841683611398565b808202811582820484141761030557610305611342565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f602082840312156114a0575f80fd5b8151610fa281611271565b5f805f606084860312156114bd575f80fd5b8351925060208401519150604084015190509250925092565b5f602082840312156114e6575f80fd5b81518015158114610fa2575f80fd5b8082018082111561030557610305611342565b8181038181111561030557610305611342565b5f8261153557634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b8181101561159e5784516001600160a01b031683529383019391830191600101611579565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212204442cc6f1ca1c6ea2f41ebc949bb0965ff9f5fe83bb13493ba77534daf773f2664736f6c63430008160033

Deployed Bytecode Sourcemap

9904:10408:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11622:83;;;;;;;;;;-1:-1:-1;11692:5:0;;;;;;;;;;;;-1:-1:-1;;;11692:5:0;;;;11622:83;;;;;;;:::i;:::-;;;;;;;;13826:161;;;;;;;;;;-1:-1:-1;13826:161:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13826:161:0;1023:187:1;12221:100:0;;;;;;;;;;;;;:::i;:::-;;;1361:25:1;;;1349:2;1334:18;12221:100:0;1215:177:1;14346:313:0;;;;;;;;;;-1:-1:-1;14346:313:0;;;;;:::i;:::-;;:::i;12029:83::-;;;;;;;;;;-1:-1:-1;12029:83:0;;10189:2;2000:36:1;;1988:2;1973:18;12029:83:0;1858:184:1;12517:119:0;;;;;;;;;;-1:-1:-1;12517:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;12610:18:0;12583:7;12610:18;;;:9;:18;;;;;;;12517:119;7175:148;;;;;;;;;;;;;:::i;:::-;;19904:133;;;;;;;;;;;;;:::i;18567:1105::-;;;;;;;;;;;;;:::i;6625:79::-;;;;;;;;;;-1:-1:-1;6663:7:0;6690:6;6625:79;;-1:-1:-1;;;;;6690:6:0;;;2445:51:1;;2433:2;2418:18;6625:79:0;2299:203:1;11815:87:0;;;;;;;;;;-1:-1:-1;11887:7:0;;;;;;;;;;;;-1:-1:-1;;;11887:7:0;;;;11815:87;;12918:167;;;;;;;;;;-1:-1:-1;12918:167:0;;;;;:::i;:::-;;:::i;20045:114::-;;;;;;;;;;;;;:::i;13376:143::-;;;;;;;;;;-1:-1:-1;13376:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;13484:18:0;;;13457:7;13484:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13376:143;13826:161;13901:4;13918:39;604:10;13941:7;13950:6;13918:8;:39::i;:::-;-1:-1:-1;13975:4:0;13826:161;;;;;:::o;12221:100::-;12274:7;10249:13;10189:2;10249;:13;:::i;:::-;10238:24;;:8;:24;:::i;:::-;12294:19;;12221:100;:::o;14346:313::-;14444:4;14461:36;14471:6;14479:9;14490:6;14461:9;:36::i;:::-;14508:121;14517:6;604:10;14539:89;14577:6;14539:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14539:19:0;;;;;;:11;:19;;;;;;;;604:10;14539:33;;;;;;;;;;:37;:89::i;:::-;14508:8;:121::i;:::-;-1:-1:-1;14647:4:0;14346:313;;;;;:::o;7175:148::-;6837:6;;-1:-1:-1;;;;;6837:6:0;604:10;6837:22;6829:67;;;;-1:-1:-1;;;6829:67:0;;;;;;;:::i;:::-;;;;;;;;;7282:1:::1;7266:6:::0;;7245:40:::1;::::0;-1:-1:-1;;;;;7266:6:0;;::::1;::::0;7245:40:::1;::::0;7282:1;;7245:40:::1;7313:1;7296:19:::0;;-1:-1:-1;;;;;;7296:19:0::1;::::0;;7175:148::o;19904:133::-;6837:6;;-1:-1:-1;;;;;6837:6:0;604:10;6837:22;6829:67;;;;-1:-1:-1;;;6829:67:0;;;;;;;:::i;:::-;10249:13:::1;10189:2;10249;:13;:::i;:::-;10238:24;::::0;:8:::1;:24;:::i;:::-;19958:13;:28:::0;10249:13:::1;10189:2;10249;:13;:::i;:::-;10238:24;::::0;:8:::1;:24;:::i;:::-;19997:17;:32:::0;19904:133::o;18567:1105::-;6837:6;;-1:-1:-1;;;;;6837:6:0;604:10;6837:22;6829:67;;;;-1:-1:-1;;;6829:67:0;;;;;;;:::i;:::-;18632:14:::1;::::0;-1:-1:-1;;;18632:14:0;::::1;;;18631:15;18623:64;;;::::0;-1:-1:-1;;;18623:64:0;;5145:2:1;18623:64:0::1;::::0;::::1;5127:21:1::0;5184:2;5164:18;;;5157:30;5223:34;5203:18;;;5196:62;-1:-1:-1;;;5274:18:1;;;5267:34;5318:19;;18623:64:0::1;4943:400:1::0;18623:64:0::1;18742:15;:104:::0;;-1:-1:-1;;;;;;18742:104:0::1;18793:42;18742:104:::0;;::::1;::::0;;;18929:63:::1;::::0;18946:4:::1;::::0;10249:13:::1;10189:2;10249;:13;:::i;:::-;10238:24;::::0;:8:::1;:24;:::i;18929:63::-;19074:15;;;;;;;;;-1:-1:-1::0;;;;;19074:15:0::1;-1:-1:-1::0;;;;;19074:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;19056:55:0::1;;19120:4;19127:15;;;;;;;;;-1:-1:-1::0;;;;;19127:15:0::1;-1:-1:-1::0;;;;;19127:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19056:94;::::0;-1:-1:-1;;;;;;19056:94:0::1;::::0;;;;;;-1:-1:-1;;;;;5834:15:1;;;19056:94:0::1;::::0;::::1;5816:34:1::0;5886:15;;5866:18;;;5859:43;5751:18;;19056:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19041:12;:109:::0;;-1:-1:-1;;;;;19041:109:0;;::::1;-1:-1:-1::0;;;;;;19041:109:0;;::::1;;::::0;;;19209:15;::::1;:31;19262:21;19317:4;19337:24;19317:4:::0;-1:-1:-1;;;;;12610:18:0;12583:7;12610:18;;;:9;:18;;;;;;;12517:119;19337:24:::1;19376:1;19392::::0;19408:7:::1;6663::::0;6690:6;-1:-1:-1;;;;;6690:6:0;;6625:79;19408:7:::1;19209:247;::::0;::::1;::::0;;;-1:-1:-1;;;;;;19209:247:0;;;-1:-1:-1;;;;;6272:15:1;;;19209:247:0::1;::::0;::::1;6254:34:1::0;6304:18;;;6297:34;;;;6347:18;;;6340:34;;;;6390:18;;;6383:34;6454:15;;;6433:19;;;6426:44;19430:15:0::1;6486:19:1::0;;;6479:35;6188:19;;19209:247:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;19538:12:0::1;::::0;;19568:15;19531:70:::1;::::0;-1:-1:-1;;;19531:70:0;;-1:-1:-1;;;;;19568:15:0;;::::1;19531:70;::::0;::::1;7010:51:1::0;-1:-1:-1;;7077:18:1;;;7070:34;19538:12:0;::::1;::::0;-1:-1:-1;19531:28:0::1;::::0;6983:18:1;;19531:70:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;19614:11:0::1;:18:::0;;-1:-1:-1;;;;19643:21:0;-1:-1:-1;;;19643:21:0;;;18567:1105::o;12918:167::-;12996:4;13013:42;604:10;13037:9;13048:6;13013:9;:42::i;20045:114::-;6837:6;;-1:-1:-1;;;;;6837:6:0;604:10;6837:22;6829:67;;;;-1:-1:-1;;;6829:67:0;;;;;;;:::i;:::-;20116:1:::1;20103:10;:14:::0;;;20128:11:::1;:15:::0;20045:114::o;14966:335::-;-1:-1:-1;;;;;15059:19:0;;15051:68;;;;-1:-1:-1;;;15051:68:0;;7599:2:1;15051:68:0;;;7581:21:1;7638:2;7618:18;;;7611:30;7677:34;7657:18;;;7650:62;-1:-1:-1;;;7728:18:1;;;7721:34;7772:19;;15051:68:0;7397:400:1;15051:68:0;-1:-1:-1;;;;;15138:21:0;;15130:68;;;;-1:-1:-1;;;15130:68:0;;8004:2:1;15130:68:0;;;7986:21:1;8043:2;8023:18;;;8016:30;8082:34;8062:18;;;8055:62;-1:-1:-1;;;8133:18:1;;;8126:32;8175:19;;15130:68:0;7802:398:1;15130:68:0;-1:-1:-1;;;;;15209:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15261:32;;1361:25:1;;;15261:32:0;;1334:18:1;15261:32:0;;;;;;;14966:335;;;:::o;15579:2358::-;-1:-1:-1;;;;;15667:18:0;;15659:68;;;;-1:-1:-1;;;15659:68:0;;8407:2:1;15659:68:0;;;8389:21:1;8446:2;8426:18;;;8419:30;8485:34;8465:18;;;8458:62;-1:-1:-1;;;8536:18:1;;;8529:35;8581:19;;15659:68:0;8205:401:1;15659:68:0;-1:-1:-1;;;;;15746:16:0;;15738:64;;;;-1:-1:-1;;;15738:64:0;;8813:2:1;15738:64:0;;;8795:21:1;8852:2;8832:18;;;8825:30;8891:34;8871:18;;;8864:62;-1:-1:-1;;;8942:18:1;;;8935:33;8985:19;;15738:64:0;8611:399:1;15738:64:0;15830:1;15821:6;:10;15813:75;;;;-1:-1:-1;;;15813:75:0;;9217:2:1;15813:75:0;;;9199:21:1;9256:2;9236:18;;;9229:30;9295:34;9275:18;;;9268:62;-1:-1:-1;;;9346:18:1;;;9339:50;9406:19;;15813:75:0;9015:416:1;15813:75:0;15901:17;6690:6;;-1:-1:-1;;;;;16028:15:0;;;6690:6;;16028:15;;;;:32;;-1:-1:-1;6663:7:0;6690:6;-1:-1:-1;;;;;16047:13:0;;;6690:6;;16047:13;;16028:32;16024:1421;;;16176:12;;-1:-1:-1;;;;;16168:20:0;;;16176:12;;16168:20;:54;;;;-1:-1:-1;16206:15:0;;-1:-1:-1;;;;;16192:30:0;;;16206:15;;16192:30;;16168:54;:81;;;;-1:-1:-1;;;;;;16227:22:0;;;;;;:18;:22;;;;;;;;16226:23;16168:81;16164:369;;;16282:31;16309:3;16282:22;16293:10;;16282:6;:10;;:22;;;;:::i;:::-;:26;;:31::i;:::-;16270:43;;16350:13;;16340:6;:23;;16332:73;;;;-1:-1:-1;;;16332:73:0;;9638:2:1;16332:73:0;;;9620:21:1;9677:2;9657:18;;;9650:30;9716:34;9696:18;;;9689:62;-1:-1:-1;;;9767:18:1;;;9760:35;9812:19;;16332:73:0;9436:401:1;16332:73:0;16458:17;;16448:6;16432:13;16442:2;-1:-1:-1;;;;;12610:18:0;12583:7;12610:18;;;:9;:18;;;;;;;12517:119;16432:13;:22;;;;:::i;:::-;:43;;16424:93;;;;-1:-1:-1;;;16424:93:0;;10174:2:1;16424:93:0;;;10156:21:1;10213:2;10193:18;;;10186:30;10252:34;10232:18;;;10225:62;-1:-1:-1;;;10303:18:1;;;10296:35;10348:19;;16424:93:0;9972:401:1;16424:93:0;16645:12;;-1:-1:-1;;;;;16639:18:0;;;16645:12;;16639:18;:43;;;;-1:-1:-1;;;;;;16661:21:0;;16677:4;16661:21;;16639:43;16635:225;;;-1:-1:-1;;;;;16706:24:0;;;;;;:18;:24;;;;;;;;16703:79;;;16751:21;:6;16762:9;16751:10;:21::i;:::-;-1:-1:-1;;;;;16734:13:0;;;;;;:9;:13;;;;;:38;;:13;;;:38;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;15579:2358:0:o;16703:79::-;16812:32;16840:3;16812:23;16823:11;;16812:6;:10;;:23;;;;:::i;:32::-;16800:44;;16635:225;16989:4;16940:28;12610:18;;;:9;:18;;;;;;17015:11;;-1:-1:-1;;;17015:11:0;;;;17014:12;:34;;;;-1:-1:-1;17036:12:0;;-1:-1:-1;;;;;17030:18:0;;;17036:12;;17030:18;17014:34;:49;;;;-1:-1:-1;17052:11:0;;-1:-1:-1;;;17052:11:0;;;;17014:49;:77;;;;;17076:15;;17067:6;:24;17014:77;17010:424;;;17140:16;;17116:20;:40;17112:247;;17181:31;17195:16;;17181:13;:31::i;:::-;17112:247;;;17264:15;;17241:20;:38;17238:121;;;17304:35;17318:20;17304:13;:35::i;:::-;17377:9;;:41;;-1:-1:-1;;;;;17377:9:0;;;;17396:21;17377:41;;;;;:9;:41;:9;:41;17396:21;17377:9;:41;;;;;;;;;;;;;;;;;;;;;17010:424;16062:1383;16024:1421;17532:13;;17528:172;;17607:4;17589:24;;;;:9;:24;;;;;;:39;;17618:9;17589:28;:39::i;:::-;17580:4;17562:24;;;;:9;:24;;;;;;;:66;;;;17648:40;;-1:-1:-1;;;;;17648:40:0;;;;;;;17678:9;1361:25:1;;1349:2;1334:18;;1215:177;17648:40:0;;;;;;;;17528:172;-1:-1:-1;;;;;17778:15:0;;;;;;:9;:15;;;;;;:27;;17798:6;17778:19;:27::i;:::-;-1:-1:-1;;;;;17760:15:0;;;;;;:9;:15;;;;;:45;17832:40;17850:21;:6;17861:9;17850:10;:21::i;:::-;-1:-1:-1;;;;;17832:13:0;;;;;;:9;:13;;;;;;;:17;:40::i;:::-;-1:-1:-1;;;;;17816:13:0;;;;;;;:9;:13;;;;;:56;;;;17888:41;;;17907:21;:6;17918:9;17907:10;:21::i;:::-;17888:41;;1361:25:1;;;1349:2;1334:18;17888:41:0;;;;;;;15648:2289;15579:2358;;;:::o;4524:190::-;4610:7;4646:12;4638:6;;;;4630:29;;;;-1:-1:-1;;;4630:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4670:9:0;4682:5;4686:1;4682;:5;:::i;:::-;4670:17;4524:190;-1:-1:-1;;;;;4524:190:0:o;4954:246::-;5012:7;5036:1;5041;5036:6;5032:47;;-1:-1:-1;5066:1:0;5059:8;;5032:47;5089:9;5101:5;5105:1;5101;:5;:::i;:::-;5089:17;-1:-1:-1;5134:1:0;5125:5;5129:1;5089:17;5125:5;:::i;:::-;:10;5117:56;;;;-1:-1:-1;;;5117:56:0;;10935:2:1;5117:56:0;;;10917:21:1;10974:2;10954:18;;;10947:30;11013:34;10993:18;;;10986:62;-1:-1:-1;;;11064:18:1;;;11057:31;11105:19;;5117:56:0;10733:397:1;5117:56:0;5191:1;4954:246;-1:-1:-1;;;4954:246:0:o;5406:132::-;5464:7;5491:39;5495:1;5498;5491:39;;;;;;;;;;;;;;;;;:3;:39::i;4049:136::-;4107:7;4134:43;4138:1;4141;4134:43;;;;;;;;;;;;;;;;;:3;:43::i;18075:480::-;11085:11;:18;;-1:-1:-1;;;;11085:18:0;-1:-1:-1;;;11085:18:0;;;18174:16:::1;::::0;;18188:1:::1;18174:16:::0;;;;;::::1;::::0;;-1:-1:-1;;18174:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;18174:16:0::1;18150:40;;18219:4;18201;18206:1;18201:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18201:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;18245:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;18245:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;18201:7;;18245:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18235:4;18240:1;18235:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18235:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;18310:15:::1;::::0;18278:62:::1;::::0;18295:4:::1;::::0;18310:15:::1;18328:11:::0;18278:8:::1;:62::i;:::-;18351:15;::::0;:196:::1;::::0;-1:-1:-1;;;18351:196:0;;-1:-1:-1;;;;;18351:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;18432:11;;18351:15:::1;::::0;18474:4;;18501::::1;::::0;18521:15:::1;::::0;18351:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;11126:11:0;:19;;-1:-1:-1;;;;11126:19:0;;;-1:-1:-1;;;;18075:480:0:o;3613:179::-;3671:7;;3703:5;3707:1;3703;:5;:::i;:::-;3691:17;;3732:1;3727;:6;;3719:46;;;;-1:-1:-1;;;3719:46:0;;12586:2:1;3719:46:0;;;12568:21:1;12625:2;12605:18;;;12598:30;12664:29;12644:18;;;12637:57;12711:18;;3719:46:0;12384:351:1;5826:189:0;5912:7;5947:12;5940:5;5932:28;;;;-1:-1:-1;;;5932:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5971:9:0;5983:5;5987:1;5983;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:247::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:52;;;2175:1;2172;2165:12;2127:52;2214:9;2201:23;2233:31;2258:5;2233:31;:::i;2507:388::-;2575:6;2583;2636:2;2624:9;2615:7;2611:23;2607:32;2604:52;;;2652:1;2649;2642:12;2604:52;2691:9;2678:23;2710:31;2735:5;2710:31;:::i;:::-;2760:5;-1:-1:-1;2817:2:1;2802:18;;2789:32;2830:33;2789:32;2830:33;:::i;:::-;2882:7;2872:17;;;2507:388;;;;;:::o;2900:127::-;2961:10;2956:3;2952:20;2949:1;2942:31;2992:4;2989:1;2982:15;3016:4;3013:1;3006:15;3032: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;5348:251::-;5418:6;5471:2;5459:9;5450:7;5446:23;5442:32;5439:52;;;5487:1;5484;5477:12;5439:52;5519:9;5513:16;5538:31;5563:5;5538:31;:::i;6525:306::-;6613:6;6621;6629;6682:2;6670:9;6661:7;6657:23;6653:32;6650:52;;;6698:1;6695;6688:12;6650:52;6727:9;6721:16;6711:26;;6777:2;6766:9;6762:18;6756:25;6746:35;;6821:2;6810:9;6806:18;6800:25;6790:35;;6525:306;;;;;:::o;7115:277::-;7182:6;7235:2;7223:9;7214:7;7210:23;7206:32;7203:52;;;7251:1;7248;7241:12;7203:52;7283:9;7277:16;7336:5;7329:13;7322:21;7315:5;7312:32;7302:60;;7358:1;7355;7348:12;9842:125;9907:9;;;9928:10;;;9925:36;;;9941:18;;:::i;10378:128::-;10445:9;;;10466:11;;;10463:37;;;10480:18;;:::i;10511:217::-;10551:1;10577;10567:132;;10621:10;10616:3;10612:20;10609:1;10602:31;10656:4;10653:1;10646:15;10684:4;10681:1;10674:15;10567:132;-1:-1:-1;10713:9:1;;10511:217::o;11267:127::-;11328:10;11323:3;11319:20;11316:1;11309:31;11359:4;11356:1;11349:15;11383:4;11380:1;11373:15;11399:980;11661:4;11709:3;11698:9;11694:19;11740:6;11729:9;11722:25;11766:2;11804:6;11799:2;11788:9;11784:18;11777:34;11847:3;11842:2;11831:9;11827:18;11820:31;11871:6;11906;11900:13;11937:6;11929;11922:22;11975:3;11964:9;11960:19;11953:26;;12014:2;12006:6;12002:15;11988:29;;12035:1;12045:195;12059:6;12056:1;12053:13;12045:195;;;12124:13;;-1:-1:-1;;;;;12120:39:1;12108:52;;12215:15;;;;12180:12;;;;12156:1;12074:9;12045:195;;;-1:-1:-1;;;;;;;12296:32:1;;;;12291:2;12276:18;;12269:60;-1:-1:-1;;;12360:3:1;12345:19;12338:35;12257:3;11399:980;-1:-1:-1;;;11399:980:1:o

Swarm Source

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