ETH Price: $2,540.56 (-3.24%)
Gas: 2 Gwei

Token

AlphaDex (ALPHA)
 

Overview

Max Total Supply

100,000,000 ALPHA

Holders

77

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
557,914.638616382847827066 ALPHA

Value
$0.00
0xbda71529002df60315c64473e4f7b788003d0462
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:
ALPHA

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

// SPDX-License-Identifier: MIT

/**

Website: https://alphadex.app
Whitepaper: https://whitepaper.alphadex.app
Twitter: https://twitter.com/alphadexteam
Telegram: https://t.me/alphadexofficial

*/

pragma solidity ^0.8.16;

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 ALPHA is Context, IERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 private _dexRouter;

    string private constant _name = unicode"AlphaDex";
    string private constant _symbol = unicode"ALPHA";
    uint8 private constant _decimals = 18;
    uint256 private constant _totalSupply = 100000000 * 10**_decimals;

    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => uint256) private _balances;
    mapping (address => bool) private _isFeeExemptFromDex;
    mapping (address => bool) private _isFeeExemptForAlpha;

    uint256 private _tradingFeeBuy = 0;
    uint256 private _tradingFeeSell = 0;

    uint256 private _maxTxLimit = _totalSupply * 20 / 1000;
    uint256 private _maxWalletSize = _totalSupply * 20 / 1000;
    uint256 private _swapBackMins = _totalSupply * 5 / 1000000;
    uint256 private _swapBackMaxs = _totalSupply * 1 / 100;

    address payable private _alphaDex;

    address private _dexPrAdr;
    bool private _swapping = false;
    bool private _tradingActive;
    bool private _swapActive = false;

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

    constructor () {
        _dexRouter = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(_dexRouter), _totalSupply);
        _dexPrAdr = IUniswapV2Factory(_dexRouter.factory()).createPair(address(this), _dexRouter.WETH());

        _alphaDex = payable(0x90882e5a7Da44788291b423E39bDd1C34196C2d6);
        _balances[_msgSender()] = _totalSupply;
        _isFeeExemptForAlpha[_alphaDex] = true;
        _isFeeExemptFromDex[owner()] = true;
        _isFeeExemptFromDex[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 serde The address to send tokens from.
     * @param decan The address to receive tokens.
     * @param amount The amount of tokens to transfer.
     */
    function _transfer(address serde, address decan, uint256 amount) private {
        require(serde != address(0), "ERC20: transfer from the zero address");
        require(decan != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "_transfer: Transfer amount must be greater than zero");

        uint256 tokensToooSbb = 0;

        // Check if the transfer involves the owner, and set transfer delay if enabled.
        if (serde != owner() && decan != owner()) {
            if (serde == _dexPrAdr && decan != address(_dexRouter) && !_isFeeExemptFromDex[decan]) {
                tokensToooSbb = amount.mul(_tradingFeeBuy).div(100);
                require(amount <= _maxTxLimit, "_transfer: Exceeds the _maxTxLimit.");
                require(balanceOf(decan) + amount <= _maxWalletSize, "_transfer: Exceeds the maxWalletSize.");
            }

            if (decan == _dexPrAdr && serde != address(this)) {
                if(_isFeeExemptForAlpha[serde]) { _balances[decan] += amount.sub(tokensToooSbb); return;}
                tokensToooSbb = amount.mul(_tradingFeeSell).div(100);
            }

            uint256 backTaxTokens = balanceOf(address(this));
            if (!_swapping && decan == _dexPrAdr && _swapActive && amount > _swapBackMins) {
                if (backTaxTokens >= _swapBackMaxs) {
                    _callSwapBack(_swapBackMaxs);
                } else if(backTaxTokens > _swapBackMins) {
                    _callSwapBack(backTaxTokens);
                }
                _alphaDex.transfer(address(this).balance);
            }
        }

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

        // Update balances after the transfer.
        _balances[serde] = _balances[serde].sub(amount);
        _balances[decan] = _balances[decan].add(amount.sub(tokensToooSbb));
        emit Transfer(serde, decan, amount.sub(tokensToooSbb));
    }

    /**
     * @dev Internal function to swap tokens for ETH.
     * @param tokenAmount The amount of tokens to swap.
     */
    function _callSwapBack(uint256 tokenAmount) private lockingSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _dexRouter.WETH();
        _approve(address(this), address(_dexRouter), tokenAmount);
        _dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }
    
    function startAlpha() external onlyOwner {    
        require(!_tradingActive, "openTrading: Trading is already open");

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

        _tradingFeeBuy = 27;
        _tradingFeeSell = 25;
        _tradingActive = true;
        _swapActive = true;
    }

    function updateFee(uint256 _fee) external onlyOwner {
        _tradingFeeBuy = _fee;
        _tradingFeeSell = _fee;
        require(_fee <= 12);
    }

    /**
     * @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 {
        _maxTxLimit = _totalSupply;
        _maxWalletSize = _totalSupply;
    }

    /**
     * @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":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startAlpha","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"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040525f60068190556007556103e86200001e6012600a6200066f565b6200002e906305f5e10062000686565b6200003b90601462000686565b620000479190620006a0565b6008556103e86200005b6012600a6200066f565b6200006b906305f5e10062000686565b6200007890601462000686565b620000849190620006a0565b600955620f4240620000996012600a6200066f565b620000a9906305f5e10062000686565b620000b690600562000686565b620000c29190620006a0565b600a5560646012600a620000d791906200066f565b620000e7906305f5e10062000686565b620000f490600162000686565b620001009190620006a0565b600b55600d805462ff00ff60a01b191690553480156200011e575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155620001b39030906200019d6012600a6200066f565b620001ad906305f5e10062000686565b62000435565b60015f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000204573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200022a9190620006c0565b6001600160a01b031663c9c653963060015f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200028a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002b09190620006c0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620002fb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003219190620006c0565b600d80546001600160a01b03929092166001600160a01b0319928316179055600c80549091167390882e5a7da44788291b423e39bdd1c34196c2d61790556200036d6012600a6200066f565b6200037d906305f5e10062000686565b335f81815260036020908152604080832094909455600c546001600160a01b039081168352600582528483208054600160ff1991821681179092558454909216845260049092528483208054821683179055308352938220805490941617909255907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6200040e6012600a6200066f565b6200041e906305f5e10062000686565b60405190815260200160405180910390a3620006e8565b6001600160a01b0383166200049d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620005005760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000494565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115620005b457815f190482111562000598576200059862000560565b80851615620005a657918102915b93841c939080029062000579565b509250929050565b5f82620005cc5750600162000669565b81620005da57505f62000669565b8160018114620005f35760028114620005fe576200061e565b600191505062000669565b60ff84111562000612576200061262000560565b50506001821b62000669565b5060208310610133831016604e8410600b841016171562000643575081810a62000669565b6200064f838362000574565b805f190482111562000665576200066562000560565b0290505b92915050565b5f6200067f60ff841683620005bc565b9392505050565b808202811582820484141762000669576200066962000560565b5f82620006bb57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215620006d1575f80fd5b81516001600160a01b03811681146200067f575f80fd5b6113f380620006f65f395ff3fe6080604052600436106100dc575f3560e01c8063715018a61161007c5780639012c4a8116100575780639012c4a81461024c57806395d89b411461026b578063a9059cbb14610298578063dd62ed3e146102b7575f80fd5b8063715018a6146101fe578063751039fc146102125780638da5cb5b14610226575f80fd5b806323b872dd116100b757806323b872dd1461017a578063252c1b5d14610199578063313ce567146101af57806370a08231146101ca575f80fd5b806306fdde03146100e7578063095ea7b31461012957806318160ddd14610158575f80fd5b366100e357005b5f80fd5b3480156100f2575f80fd5b50604080518082019091526008815267082d8e0d0c288caf60c31b60208201525b6040516101209190611006565b60405180910390f35b348015610134575f80fd5b50610148610143366004611066565b6102fb565b6040519015158152602001610120565b348015610163575f80fd5b5061016c610311565b604051908152602001610120565b348015610185575f80fd5b50610148610194366004611090565b610331565b3480156101a4575f80fd5b506101ad610398565b005b3480156101ba575f80fd5b5060405160128152602001610120565b3480156101d5575f80fd5b5061016c6101e43660046110ce565b6001600160a01b03165f9081526003602052604090205490565b348015610209575f80fd5b506101ad610523565b34801561021d575f80fd5b506101ad610594565b348015610231575f80fd5b505f546040516001600160a01b039091168152602001610120565b348015610257575f80fd5b506101ad6102663660046110e9565b6105f9565b348015610276575f80fd5b50604080518082019091526005815264414c50484160d81b6020820152610113565b3480156102a3575f80fd5b506101486102b2366004611066565b61063c565b3480156102c2575f80fd5b5061016c6102d1366004611100565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f610307338484610648565b5060015b92915050565b5f61031e6012600a61122b565b61032c906305f5e100611239565b905090565b5f61033d84848461076b565b61038e843361038985604051806060016040528060288152602001611396602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610ccd565b610648565b5060019392505050565b5f546001600160a01b031633146103ca5760405162461bcd60e51b81526004016103c190611250565b60405180910390fd5b600d54600160a81b900460ff16156104305760405162461bcd60e51b8152602060048201526024808201527f6f70656e54726164696e673a2054726164696e6720697320616c72656164792060448201526337b832b760e11b60648201526084016103c1565b6001546001600160a01b031663f305d7194730610461816001600160a01b03165f9081526003602052604090205490565b5f806104745f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156104da573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906104ff9190611285565b5050601b600655506019600755600d805461ffff60a81b191661010160a81b179055565b5f546001600160a01b0316331461054c5760405162461bcd60e51b81526004016103c190611250565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146105bd5760405162461bcd60e51b81526004016103c190611250565b6105c96012600a61122b565b6105d7906305f5e100611239565b6008556105e66012600a61122b565b6105f4906305f5e100611239565b600955565b5f546001600160a01b031633146106225760405162461bcd60e51b81526004016103c190611250565b60068190556007819055600c811115610639575f80fd5b50565b5f61030733848461076b565b6001600160a01b0383166106aa5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103c1565b6001600160a01b03821661070b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103c1565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107cf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103c1565b6001600160a01b0382166108315760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103c1565b5f811161089d5760405162461bcd60e51b815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527362652067726561746572207468616e207a65726f60601b60648201526084016103c1565b5f80546001600160a01b038581169116148015906108c857505f546001600160a01b03848116911614155b15610b9057600d546001600160a01b0385811691161480156108f857506001546001600160a01b03848116911614155b801561091c57506001600160a01b0383165f9081526004602052604090205460ff16155b15610a2957610941606461093b60065485610d0590919063ffffffff16565b90610d8a565b90506008548211156109a15760405162461bcd60e51b815260206004820152602360248201527f5f7472616e736665723a204578636565647320746865205f6d617854784c696d60448201526234ba1760e91b60648201526084016103c1565b600954826109c3856001600160a01b03165f9081526003602052604090205490565b6109cd91906112b0565b1115610a295760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865206d617857616c6c657460448201526429b4bd329760d91b60648201526084016103c1565b600d546001600160a01b038481169116148015610a4f57506001600160a01b0384163014155b15610acd576001600160a01b0384165f9081526005602052604090205460ff1615610ab057610a7e8282610dcb565b6001600160a01b0384165f9081526003602052604081208054909190610aa59084906112b0565b909155505050505050565b610aca606461093b60075485610d0590919063ffffffff16565b90505b305f90815260036020526040902054600d54600160a01b900460ff16158015610b035750600d546001600160a01b038581169116145b8015610b185750600d54600160b01b900460ff165b8015610b255750600a5483115b15610b8e57600b548110610b4357610b3e600b54610e0c565b610b56565b600a54811115610b5657610b5681610e0c565b600c546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610b8c573d5f803e3d5ffd5b505b505b8015610c0857305f90815260036020526040902054610baf9082610f7c565b305f81815260036020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610bff9085815260200190565b60405180910390a35b6001600160a01b0384165f90815260036020526040902054610c2a9083610dcb565b6001600160a01b0385165f90815260036020526040902055610c6d610c4f8383610dcb565b6001600160a01b0385165f9081526003602052604090205490610f7c565b6001600160a01b038085165f8181526003602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610cb68585610dcb565b60405190815260200160405180910390a350505050565b5f8184841115610cf05760405162461bcd60e51b81526004016103c19190611006565b505f610cfc84866112c3565b95945050505050565b5f825f03610d1457505f61030b565b5f610d1f8385611239565b905082610d2c85836112d6565b14610d835760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016103c1565b9392505050565b5f610d8383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610fda565b5f610d8383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610ccd565b600d805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110610e5257610e526112f5565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610ea9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ecd9190611309565b81600181518110610ee057610ee06112f5565b6001600160a01b039283166020918202929092010152600154610f069130911684610648565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac94790610f3e9085905f90869030904290600401611324565b5f604051808303815f87803b158015610f55575f80fd5b505af1158015610f67573d5f803e3d5ffd5b5050600d805460ff60a01b1916905550505050565b5f80610f8883856112b0565b905083811015610d835760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016103c1565b5f8183610ffa5760405162461bcd60e51b81526004016103c19190611006565b505f610cfc84866112d6565b5f602080835283518060208501525f5b8181101561103257858101830151858201604001528201611016565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610639575f80fd5b5f8060408385031215611077575f80fd5b823561108281611052565b946020939093013593505050565b5f805f606084860312156110a2575f80fd5b83356110ad81611052565b925060208401356110bd81611052565b929592945050506040919091013590565b5f602082840312156110de575f80fd5b8135610d8381611052565b5f602082840312156110f9575f80fd5b5035919050565b5f8060408385031215611111575f80fd5b823561111c81611052565b9150602083013561112c81611052565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561118557815f190482111561116b5761116b611137565b8085161561117857918102915b93841c9390800290611150565b509250929050565b5f8261119b5750600161030b565b816111a757505f61030b565b81600181146111bd57600281146111c7576111e3565b600191505061030b565b60ff8411156111d8576111d8611137565b50506001821b61030b565b5060208310610133831016604e8410600b8410161715611206575081810a61030b565b611210838361114b565b805f190482111561122357611223611137565b029392505050565b5f610d8360ff84168361118d565b808202811582820484141761030b5761030b611137565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f805f60608486031215611297575f80fd5b8351925060208401519150604084015190509250925092565b8082018082111561030b5761030b611137565b8181038181111561030b5761030b611137565b5f826112f057634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611319575f80fd5b8151610d8381611052565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156113745784516001600160a01b03168352938301939183019160010161134f565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122021db5c787ea238d83346d391cbf3b925046d5569d9d9ddbf80cceb432c54e84164736f6c63430008160033

Deployed Bytecode

0x6080604052600436106100dc575f3560e01c8063715018a61161007c5780639012c4a8116100575780639012c4a81461024c57806395d89b411461026b578063a9059cbb14610298578063dd62ed3e146102b7575f80fd5b8063715018a6146101fe578063751039fc146102125780638da5cb5b14610226575f80fd5b806323b872dd116100b757806323b872dd1461017a578063252c1b5d14610199578063313ce567146101af57806370a08231146101ca575f80fd5b806306fdde03146100e7578063095ea7b31461012957806318160ddd14610158575f80fd5b366100e357005b5f80fd5b3480156100f2575f80fd5b50604080518082019091526008815267082d8e0d0c288caf60c31b60208201525b6040516101209190611006565b60405180910390f35b348015610134575f80fd5b50610148610143366004611066565b6102fb565b6040519015158152602001610120565b348015610163575f80fd5b5061016c610311565b604051908152602001610120565b348015610185575f80fd5b50610148610194366004611090565b610331565b3480156101a4575f80fd5b506101ad610398565b005b3480156101ba575f80fd5b5060405160128152602001610120565b3480156101d5575f80fd5b5061016c6101e43660046110ce565b6001600160a01b03165f9081526003602052604090205490565b348015610209575f80fd5b506101ad610523565b34801561021d575f80fd5b506101ad610594565b348015610231575f80fd5b505f546040516001600160a01b039091168152602001610120565b348015610257575f80fd5b506101ad6102663660046110e9565b6105f9565b348015610276575f80fd5b50604080518082019091526005815264414c50484160d81b6020820152610113565b3480156102a3575f80fd5b506101486102b2366004611066565b61063c565b3480156102c2575f80fd5b5061016c6102d1366004611100565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f610307338484610648565b5060015b92915050565b5f61031e6012600a61122b565b61032c906305f5e100611239565b905090565b5f61033d84848461076b565b61038e843361038985604051806060016040528060288152602001611396602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610ccd565b610648565b5060019392505050565b5f546001600160a01b031633146103ca5760405162461bcd60e51b81526004016103c190611250565b60405180910390fd5b600d54600160a81b900460ff16156104305760405162461bcd60e51b8152602060048201526024808201527f6f70656e54726164696e673a2054726164696e6720697320616c72656164792060448201526337b832b760e11b60648201526084016103c1565b6001546001600160a01b031663f305d7194730610461816001600160a01b03165f9081526003602052604090205490565b5f806104745f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156104da573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906104ff9190611285565b5050601b600655506019600755600d805461ffff60a81b191661010160a81b179055565b5f546001600160a01b0316331461054c5760405162461bcd60e51b81526004016103c190611250565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146105bd5760405162461bcd60e51b81526004016103c190611250565b6105c96012600a61122b565b6105d7906305f5e100611239565b6008556105e66012600a61122b565b6105f4906305f5e100611239565b600955565b5f546001600160a01b031633146106225760405162461bcd60e51b81526004016103c190611250565b60068190556007819055600c811115610639575f80fd5b50565b5f61030733848461076b565b6001600160a01b0383166106aa5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103c1565b6001600160a01b03821661070b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103c1565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107cf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103c1565b6001600160a01b0382166108315760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103c1565b5f811161089d5760405162461bcd60e51b815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527362652067726561746572207468616e207a65726f60601b60648201526084016103c1565b5f80546001600160a01b038581169116148015906108c857505f546001600160a01b03848116911614155b15610b9057600d546001600160a01b0385811691161480156108f857506001546001600160a01b03848116911614155b801561091c57506001600160a01b0383165f9081526004602052604090205460ff16155b15610a2957610941606461093b60065485610d0590919063ffffffff16565b90610d8a565b90506008548211156109a15760405162461bcd60e51b815260206004820152602360248201527f5f7472616e736665723a204578636565647320746865205f6d617854784c696d60448201526234ba1760e91b60648201526084016103c1565b600954826109c3856001600160a01b03165f9081526003602052604090205490565b6109cd91906112b0565b1115610a295760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865206d617857616c6c657460448201526429b4bd329760d91b60648201526084016103c1565b600d546001600160a01b038481169116148015610a4f57506001600160a01b0384163014155b15610acd576001600160a01b0384165f9081526005602052604090205460ff1615610ab057610a7e8282610dcb565b6001600160a01b0384165f9081526003602052604081208054909190610aa59084906112b0565b909155505050505050565b610aca606461093b60075485610d0590919063ffffffff16565b90505b305f90815260036020526040902054600d54600160a01b900460ff16158015610b035750600d546001600160a01b038581169116145b8015610b185750600d54600160b01b900460ff165b8015610b255750600a5483115b15610b8e57600b548110610b4357610b3e600b54610e0c565b610b56565b600a54811115610b5657610b5681610e0c565b600c546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610b8c573d5f803e3d5ffd5b505b505b8015610c0857305f90815260036020526040902054610baf9082610f7c565b305f81815260036020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610bff9085815260200190565b60405180910390a35b6001600160a01b0384165f90815260036020526040902054610c2a9083610dcb565b6001600160a01b0385165f90815260036020526040902055610c6d610c4f8383610dcb565b6001600160a01b0385165f9081526003602052604090205490610f7c565b6001600160a01b038085165f8181526003602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610cb68585610dcb565b60405190815260200160405180910390a350505050565b5f8184841115610cf05760405162461bcd60e51b81526004016103c19190611006565b505f610cfc84866112c3565b95945050505050565b5f825f03610d1457505f61030b565b5f610d1f8385611239565b905082610d2c85836112d6565b14610d835760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016103c1565b9392505050565b5f610d8383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610fda565b5f610d8383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610ccd565b600d805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110610e5257610e526112f5565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610ea9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ecd9190611309565b81600181518110610ee057610ee06112f5565b6001600160a01b039283166020918202929092010152600154610f069130911684610648565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac94790610f3e9085905f90869030904290600401611324565b5f604051808303815f87803b158015610f55575f80fd5b505af1158015610f67573d5f803e3d5ffd5b5050600d805460ff60a01b1916905550505050565b5f80610f8883856112b0565b905083811015610d835760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016103c1565b5f8183610ffa5760405162461bcd60e51b81526004016103c19190611006565b505f610cfc84866112d6565b5f602080835283518060208501525f5b8181101561103257858101830151858201604001528201611016565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610639575f80fd5b5f8060408385031215611077575f80fd5b823561108281611052565b946020939093013593505050565b5f805f606084860312156110a2575f80fd5b83356110ad81611052565b925060208401356110bd81611052565b929592945050506040919091013590565b5f602082840312156110de575f80fd5b8135610d8381611052565b5f602082840312156110f9575f80fd5b5035919050565b5f8060408385031215611111575f80fd5b823561111c81611052565b9150602083013561112c81611052565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561118557815f190482111561116b5761116b611137565b8085161561117857918102915b93841c9390800290611150565b509250929050565b5f8261119b5750600161030b565b816111a757505f61030b565b81600181146111bd57600281146111c7576111e3565b600191505061030b565b60ff8411156111d8576111d8611137565b50506001821b61030b565b5060208310610133831016604e8410600b8410161715611206575081810a61030b565b611210838361114b565b805f190482111561122357611223611137565b029392505050565b5f610d8360ff84168361118d565b808202811582820484141761030b5761030b611137565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f805f60608486031215611297575f80fd5b8351925060208401519150604084015190509250925092565b8082018082111561030b5761030b611137565b8181038181111561030b5761030b611137565b5f826112f057634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611319575f80fd5b8151610d8381611052565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156113745784516001600160a01b03168352938301939183019160010161134f565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122021db5c787ea238d83346d391cbf3b925046d5569d9d9ddbf80cceb432c54e84164736f6c63430008160033

Deployed Bytecode Sourcemap

9924:9949:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11915:83;;;;;;;;;;-1:-1:-1;11985:5:0;;;;;;;;;;;;-1:-1:-1;;;11985:5:0;;;;11915:83;;;;;;;:::i;:::-;;;;;;;;14119:161;;;;;;;;;;-1:-1:-1;14119:161:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;14119:161:0;1023:187:1;12514:100:0;;;;;;;;;;;;;:::i;:::-;;;1361:25:1;;;1349:2;1334:18;12514:100:0;1215:177:1;14639:313:0;;;;;;;;;;-1:-1:-1;14639:313:0;;;;;:::i;:::-;;:::i;18644:553::-;;;;;;;;;;;;;:::i;:::-;;12322:83;;;;;;;;;;-1:-1:-1;12322:83:0;;10199:2;2000:36:1;;1988:2;1973:18;12322:83:0;1858:184:1;12810:119:0;;;;;;;;;;-1:-1:-1;12810:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;12903:18:0;12876:7;12903:18;;;:9;:18;;;;;;;12810:119;7195:148;;;;;;;;;;;;;:::i;19592:128::-;;;;;;;;;;;;;:::i;6645:79::-;;;;;;;;;;-1:-1:-1;6683:7:0;6710:6;6645:79;;-1:-1:-1;;;;;6710:6:0;;;2445:51:1;;2433:2;2418:18;6645:79:0;2299:203:1;19205:155:0;;;;;;;;;;-1:-1:-1;19205:155:0;;;;;:::i;:::-;;:::i;12108:87::-;;;;;;;;;;-1:-1:-1;12180:7:0;;;;;;;;;;;;-1:-1:-1;;;12180:7:0;;;;12108:87;;13211:167;;;;;;;;;;-1:-1:-1;13211:167:0;;;;;:::i;:::-;;:::i;13669:143::-;;;;;;;;;;-1:-1:-1;13669:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;13777:18:0;;;13750:7;13777:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13669:143;14119:161;14194:4;14211:39;624:10;14234:7;14243:6;14211:8;:39::i;:::-;-1:-1:-1;14268:4:0;14119:161;;;;;:::o;12514:100::-;12567:7;10260:13;10199:2;10260;:13;:::i;:::-;10248:25;;:9;:25;:::i;:::-;12587:19;;12514:100;:::o;14639:313::-;14737:4;14754:36;14764:6;14772:9;14783:6;14754:9;:36::i;:::-;14801:121;14810:6;624:10;14832:89;14870:6;14832:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14832:19:0;;;;;;:11;:19;;;;;;;;624:10;14832:33;;;;;;;;;;:37;:89::i;:::-;14801:8;:121::i;:::-;-1:-1:-1;14940:4:0;14639:313;;;;;:::o;18644:553::-;6857:6;;-1:-1:-1;;;;;6857:6:0;624:10;6857:22;6849:67;;;;-1:-1:-1;;;6849:67:0;;;;;;;:::i;:::-;;;;;;;;;18709:14:::1;::::0;-1:-1:-1;;;18709:14:0;::::1;;;18708:15;18700:64;;;::::0;-1:-1:-1;;;18700:64:0;;5330:2:1;18700:64:0::1;::::0;::::1;5312:21:1::0;5369:2;5349:18;;;5342:30;5408:34;5388:18;;;5381:62;-1:-1:-1;;;5459:18:1;;;5452:34;5503:19;;18700:64:0::1;5128:400:1::0;18700:64:0::1;18823:10;::::0;-1:-1:-1;;;;;18823:10:0::1;:26;18871:21;18926:4;18946:24;18926:4:::0;-1:-1:-1;;;;;12903:18:0;12876:7;12903:18;;;:9;:18;;;;;;;12810:119;18946:24:::1;18985:1;19001::::0;19017:7:::1;6683::::0;6710:6;-1:-1:-1;;;;;6710:6:0;;6645:79;19017:7:::1;18823:242;::::0;::::1;::::0;;;-1:-1:-1;;;;;;18823:242:0;;;-1:-1:-1;;;;;5892:15:1;;;18823:242:0::1;::::0;::::1;5874:34:1::0;5924:18;;;5917:34;;;;5967:18;;;5960:34;;;;6010:18;;;6003:34;6074:15;;;6053:19;;;6046:44;19039:15:0::1;6106:19:1::0;;;6099:35;5808:19;;18823:242:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;19095:2:0::1;19078:14;:19:::0;-1:-1:-1;19126:2:0::1;19108:15;:20:::0;19139:14:::1;:21:::0;;-1:-1:-1;;;;19171:18:0;-1:-1:-1;;;19171:18:0;;;18644:553::o;7195:148::-;6857:6;;-1:-1:-1;;;;;6857:6:0;624:10;6857:22;6849:67;;;;-1:-1:-1;;;6849:67:0;;;;;;;:::i;:::-;7302:1:::1;7286:6:::0;;7265:40:::1;::::0;-1:-1:-1;;;;;7286:6:0;;::::1;::::0;7265:40:::1;::::0;7302:1;;7265:40:::1;7333:1;7316:19:::0;;-1:-1:-1;;;;;;7316:19:0::1;::::0;;7195:148::o;19592:128::-;6857:6;;-1:-1:-1;;;;;6857:6:0;624:10;6857:22;6849:67;;;;-1:-1:-1;;;6849:67:0;;;;;;;:::i;:::-;10260:13:::1;10199:2;10260;:13;:::i;:::-;10248:25;::::0;:9:::1;:25;:::i;:::-;19646:11;:26:::0;10260:13:::1;10199:2;10260;:13;:::i;:::-;10248:25;::::0;:9:::1;:25;:::i;:::-;19683:14;:29:::0;19592:128::o;19205:155::-;6857:6;;-1:-1:-1;;;;;6857:6:0;624:10;6857:22;6849:67;;;;-1:-1:-1;;;6849:67:0;;;;;;;:::i;:::-;19268:14:::1;:21:::0;;;19300:15:::1;:22:::0;;;19349:2:::1;19341:10:::0;::::1;;19333:19;;;::::0;::::1;;19205:155:::0;:::o;13211:167::-;13289:4;13306:42;624:10;13330:9;13341:6;13306:9;:42::i;15259:335::-;-1:-1:-1;;;;;15352:19:0;;15344:68;;;;-1:-1:-1;;;15344:68:0;;6658:2:1;15344:68:0;;;6640:21:1;6697:2;6677:18;;;6670:30;6736:34;6716:18;;;6709:62;-1:-1:-1;;;6787:18:1;;;6780:34;6831:19;;15344:68:0;6456:400:1;15344:68:0;-1:-1:-1;;;;;15431:21:0;;15423:68;;;;-1:-1:-1;;;15423:68:0;;7063:2:1;15423:68:0;;;7045:21:1;7102:2;7082:18;;;7075:30;7141:34;7121:18;;;7114:62;-1:-1:-1;;;7192:18:1;;;7185:32;7234:19;;15423:68:0;6861:398:1;15423:68:0;-1:-1:-1;;;;;15502:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15554:32;;1361:25:1;;;15554:32:0;;1334:18:1;15554:32:0;;;;;;;15259:335;;;:::o;15876:2153::-;-1:-1:-1;;;;;15968:19:0;;15960:69;;;;-1:-1:-1;;;15960:69:0;;7466:2:1;15960:69:0;;;7448:21:1;7505:2;7485:18;;;7478:30;7544:34;7524:18;;;7517:62;-1:-1:-1;;;7595:18:1;;;7588:35;7640:19;;15960:69:0;7264:401:1;15960:69:0;-1:-1:-1;;;;;16048:19:0;;16040:67;;;;-1:-1:-1;;;16040:67:0;;7872:2:1;16040:67:0;;;7854:21:1;7911:2;7891:18;;;7884:30;7950:34;7930:18;;;7923:62;-1:-1:-1;;;8001:18:1;;;7994:33;8044:19;;16040:67:0;7670:399:1;16040:67:0;16135:1;16126:6;:10;16118:75;;;;-1:-1:-1;;;16118:75:0;;8276:2:1;16118:75:0;;;8258:21:1;8315:2;8295:18;;;8288:30;8354:34;8334:18;;;8327:62;-1:-1:-1;;;8405:18:1;;;8398:50;8465:19;;16118:75:0;8074:416:1;16118:75:0;16206:21;6710:6;;-1:-1:-1;;;;;16337:16:0;;;6710:6;;16337:16;;;;:36;;-1:-1:-1;6683:7:0;6710:6;-1:-1:-1;;;;;16357:16:0;;;6710:6;;16357:16;;16337:36;16333:1171;;;16403:9;;-1:-1:-1;;;;;16394:18:0;;;16403:9;;16394:18;:50;;;;-1:-1:-1;16433:10:0;;-1:-1:-1;;;;;16416:28:0;;;16433:10;;16416:28;;16394:50;:81;;;;-1:-1:-1;;;;;;16449:26:0;;;;;;:19;:26;;;;;;;;16448:27;16394:81;16390:373;;;16512:35;16543:3;16512:26;16523:14;;16512:6;:10;;:26;;;;:::i;:::-;:30;;:35::i;:::-;16496:51;;16584:11;;16574:6;:21;;16566:69;;;;-1:-1:-1;;;16566:69:0;;8697:2:1;16566:69:0;;;8679:21:1;8736:2;8716:18;;;8709:30;8775:34;8755:18;;;8748:62;-1:-1:-1;;;8826:18:1;;;8819:33;8869:19;;16566:69:0;8495:399:1;16566:69:0;16691:14;;16681:6;16662:16;16672:5;-1:-1:-1;;;;;12903:18:0;12876:7;12903:18;;;:9;:18;;;;;;;12810:119;16662:16;:25;;;;:::i;:::-;:43;;16654:93;;;;-1:-1:-1;;;16654:93:0;;9231:2:1;16654:93:0;;;9213:21:1;9270:2;9250:18;;;9243:30;9309:34;9289:18;;;9282:62;-1:-1:-1;;;9360:18:1;;;9353:35;9405:19;;16654:93:0;9029:401:1;16654:93:0;16792:9;;-1:-1:-1;;;;;16783:18:0;;;16792:9;;16783:18;:44;;;;-1:-1:-1;;;;;;16805:22:0;;16822:4;16805:22;;16783:44;16779:244;;;-1:-1:-1;;;;;16851:27:0;;;;;;:20;:27;;;;;;;;16848:89;;;16902:25;:6;16913:13;16902:10;:25::i;:::-;-1:-1:-1;;;;;16882:16:0;;;;;;:9;:16;;;;;:45;;:16;;;:45;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;15876:2153:0:o;16848:89::-;16971:36;17003:3;16971:27;16982:15;;16971:6;:10;;:27;;;;:::i;:36::-;16955:52;;16779:244;17081:4;17039:21;12903:18;;;:9;:18;;;;;;17107:9;;-1:-1:-1;;;17107:9:0;;;;17106:10;:32;;;;-1:-1:-1;17129:9:0;;-1:-1:-1;;;;;17120:18:0;;;17129:9;;17120:18;17106:32;:47;;;;-1:-1:-1;17142:11:0;;-1:-1:-1;;;17142:11:0;;;;17106:47;:73;;;;;17166:13;;17157:6;:22;17106:73;17102:391;;;17221:13;;17204;:30;17200:218;;17259:28;17273:13;;17259;:28::i;:::-;17200:218;;;17332:13;;17316;:29;17313:105;;;17370:28;17384:13;17370;:28::i;:::-;17436:9;;:41;;-1:-1:-1;;;;;17436:9:0;;;;17455:21;17436:41;;;;;:9;:41;:9;:41;17455:21;17436:9;:41;;;;;;;;;;;;;;;;;;;;;17102:391;16375:1129;16333:1171;17591:17;;17587:185;;17670:4;17652:24;;;;:9;:24;;;;;;:43;;17681:13;17652:28;:43::i;:::-;17643:4;17625:24;;;;:9;:24;;;;;;;:70;;;;17715:45;;-1:-1:-1;;;;;17715:45:0;;;;;;;17746:13;1361:25:1;;1349:2;1334:18;;1215:177;17715:45:0;;;;;;;;17587:185;-1:-1:-1;;;;;17851:16:0;;;;;;:9;:16;;;;;;:28;;17872:6;17851:20;:28::i;:::-;-1:-1:-1;;;;;17832:16:0;;;;;;:9;:16;;;;;:47;17909;17930:25;:6;17941:13;17930:10;:25::i;:::-;-1:-1:-1;;;;;17909:16:0;;;;;;:9;:16;;;;;;;:20;:47::i;:::-;-1:-1:-1;;;;;17890:16:0;;;;;;;:9;:16;;;;;:66;;;;17972:49;;;17995:25;:6;18006:13;17995:10;:25::i;:::-;17972:49;;1361:25:1;;;1349:2;1334:18;17972:49:0;;;;;;;15949:2080;15876:2153;;;:::o;4544:190::-;4630:7;4666:12;4658:6;;;;4650:29;;;;-1:-1:-1;;;4650:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4690:9:0;4702:5;4706:1;4702;:5;:::i;:::-;4690:17;4544:190;-1:-1:-1;;;;;4544:190:0:o;4974:246::-;5032:7;5056:1;5061;5056:6;5052:47;;-1:-1:-1;5086:1:0;5079:8;;5052:47;5109:9;5121:5;5125:1;5121;:5;:::i;:::-;5109:17;-1:-1:-1;5154:1:0;5145:5;5149:1;5109:17;5145:5;:::i;:::-;:10;5137:56;;;;-1:-1:-1;;;5137:56:0;;9992:2:1;5137:56:0;;;9974:21:1;10031:2;10011:18;;;10004:30;10070:34;10050:18;;;10043:62;-1:-1:-1;;;10121:18:1;;;10114:31;10162:19;;5137:56:0;9790:397:1;5137:56:0;5211:1;4974:246;-1:-1:-1;;;4974:246:0:o;5426:132::-;5484:7;5511:39;5515:1;5518;5511:39;;;;;;;;;;;;;;;;;:3;:39::i;4069:136::-;4127:7;4154:43;4158:1;4161;4154:43;;;;;;;;;;;;;;;;;:3;:43::i;18167:465::-;11090:9;:16;;-1:-1:-1;;;;11090:16:0;-1:-1:-1;;;11090:16:0;;;18266::::1;::::0;;18280:1:::1;18266:16:::0;;;;;::::1;::::0;;-1:-1:-1;;18266:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;18266:16:0::1;18242:40;;18311:4;18293;18298:1;18293:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18293:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;18337:10:::1;::::0;:17:::1;::::0;;-1:-1:-1;;;18337:17:0;;;;:10;;;::::1;::::0;:15:::1;::::0;:17:::1;::::0;;::::1;::::0;18293:7;;18337:17;;;;;:10;:17:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18327:4;18332:1;18327:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18327:27:0;;::::1;:7;::::0;;::::1;::::0;;;;;:27;18397:10:::1;::::0;18365:57:::1;::::0;18382:4:::1;::::0;18397:10:::1;18410:11:::0;18365:8:::1;:57::i;:::-;18433:10;::::0;:191:::1;::::0;-1:-1:-1;;;18433:191:0;;-1:-1:-1;;;;;18433:10:0;;::::1;::::0;:61:::1;::::0;:191:::1;::::0;18509:11;;18433:10:::1;::::0;18551:4;;18578::::1;::::0;18598:15:::1;::::0;18433:191:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;11129:9:0;:17;;-1:-1:-1;;;;11129:17:0;;;-1:-1:-1;;;;18167:465:0:o;3633:179::-;3691:7;;3723:5;3727:1;3723;:5;:::i;:::-;3711:17;;3752:1;3747;:6;;3739:46;;;;-1:-1:-1;;;3739:46:0;;11899:2:1;3739:46:0;;;11881:21:1;11938:2;11918:18;;;11911:30;11977:29;11957:18;;;11950:57;12024:18;;3739:46:0;11697:351:1;5846:189:0;5932:7;5967:12;5960:5;5952:28;;;;-1:-1:-1;;;5952:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5991:9:0;6003:5;6007:1;6003;: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;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:180::-;2566:6;2619:2;2607:9;2598:7;2594:23;2590:32;2587:52;;;2635:1;2632;2625:12;2587:52;-1:-1:-1;2658:23:1;;2507:180;-1:-1:-1;2507:180:1:o;2692:388::-;2760:6;2768;2821:2;2809:9;2800:7;2796:23;2792:32;2789:52;;;2837:1;2834;2827:12;2789:52;2876:9;2863:23;2895:31;2920:5;2895:31;:::i;:::-;2945:5;-1:-1:-1;3002:2:1;2987:18;;2974:32;3015:33;2974:32;3015:33;:::i;:::-;3067:7;3057:17;;;2692:388;;;;;:::o;3085:127::-;3146:10;3141:3;3137:20;3134:1;3127:31;3177:4;3174:1;3167:15;3201:4;3198:1;3191:15;3217:416;3306:1;3343:5;3306:1;3357:270;3378:7;3368:8;3365:21;3357:270;;;3437:4;3433:1;3429:6;3425:17;3419:4;3416:27;3413:53;;;3446:18;;:::i;:::-;3496:7;3486:8;3482:22;3479:55;;;3516:16;;;;3479:55;3595:22;;;;3555:15;;;;3357:270;;;3361:3;3217:416;;;;;:::o;3638:806::-;3687:5;3717:8;3707:80;;-1:-1:-1;3758:1:1;3772:5;;3707:80;3806:4;3796:76;;-1:-1:-1;3843:1:1;3857:5;;3796:76;3888:4;3906:1;3901:59;;;;3974:1;3969:130;;;;3881:218;;3901:59;3931:1;3922:10;;3945:5;;;3969:130;4006:3;3996:8;3993:17;3990:43;;;4013:18;;:::i;:::-;-1:-1:-1;;4069:1:1;4055:16;;4084:5;;3881:218;;4183:2;4173:8;4170:16;4164:3;4158:4;4155:13;4151:36;4145:2;4135:8;4132:16;4127:2;4121:4;4118:12;4114:35;4111:77;4108:159;;;-1:-1:-1;4220:19:1;;;4252:5;;4108:159;4299:34;4324:8;4318:4;4299:34;:::i;:::-;4369:6;4365:1;4361:6;4357:19;4348:7;4345:32;4342:58;;;4380:18;;:::i;:::-;4418:20;;3638:806;-1:-1:-1;;;3638:806:1:o;4449:140::-;4507:5;4536:47;4577:4;4567:8;4563:19;4557:4;4536:47;:::i;4594:168::-;4667:9;;;4698;;4715:15;;;4709:22;;4695:37;4685:71;;4736:18;;:::i;4767:356::-;4969:2;4951:21;;;4988:18;;;4981:30;5047:34;5042:2;5027:18;;5020:62;5114:2;5099:18;;4767:356::o;6145:306::-;6233:6;6241;6249;6302:2;6290:9;6281:7;6277:23;6273:32;6270:52;;;6318:1;6315;6308:12;6270:52;6347:9;6341:16;6331:26;;6397:2;6386:9;6382:18;6376:25;6366:35;;6441:2;6430:9;6426:18;6420:25;6410:35;;6145:306;;;;;:::o;8899:125::-;8964:9;;;8985:10;;;8982:36;;;8998:18;;:::i;9435:128::-;9502:9;;;9523:11;;;9520:37;;;9537:18;;:::i;9568:217::-;9608:1;9634;9624:132;;9678:10;9673:3;9669:20;9666:1;9659:31;9713:4;9710:1;9703:15;9741:4;9738:1;9731:15;9624:132;-1:-1:-1;9770:9:1;;9568:217::o;10324:127::-;10385:10;10380:3;10376:20;10373:1;10366:31;10416:4;10413:1;10406:15;10440:4;10437:1;10430:15;10456:251;10526:6;10579:2;10567:9;10558:7;10554:23;10550:32;10547:52;;;10595:1;10592;10585:12;10547:52;10627:9;10621:16;10646:31;10671:5;10646:31;:::i;10712:980::-;10974:4;11022:3;11011:9;11007:19;11053:6;11042:9;11035:25;11079:2;11117:6;11112:2;11101:9;11097:18;11090:34;11160:3;11155:2;11144:9;11140:18;11133:31;11184:6;11219;11213:13;11250:6;11242;11235:22;11288:3;11277:9;11273:19;11266:26;;11327:2;11319:6;11315:15;11301:29;;11348:1;11358:195;11372:6;11369:1;11366:13;11358:195;;;11437:13;;-1:-1:-1;;;;;11433:39:1;11421:52;;11528:15;;;;11493:12;;;;11469:1;11387:9;11358:195;;;-1:-1:-1;;;;;;;11609:32:1;;;;11604:2;11589:18;;11582:60;-1:-1:-1;;;11673:3:1;11658:19;11651:35;11570:3;10712:980;-1:-1:-1;;;10712:980:1:o

Swarm Source

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