ETH Price: $3,389.30 (-1.55%)
Gas: 2 Gwei

Token

Ammolite (AMMO)
 

Overview

Max Total Supply

73,000,000 AMMO

Holders

750

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
hisdudeness.eth
Balance
3,014.79074074072144608 AMMO

Value
$0.00
0x887b86b6b6957f7bbea88b8cefd392f39236a88c
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:
Ammolite

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-12
*/

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        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 Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}

// File: contracts/Ammolite.sol


pragma solidity ^0.8.0;



contract Ammolite is ERC20Capped, Ownable {

    struct Stakeholder {
        uint8 percShare;
        address contractAddress;    
    }

    mapping (string => Stakeholder) private stakeholders;
    
    constructor() ERC20("Ammolite", "AMMO") ERC20Capped(365000000 * 10 ** 18){}

    function stakeholderMint(address _address, uint8 _amount) external onlyOwner {
        uint256 parts = cap() / 100;
        _mint(_address, _amount * parts);
    }
	
}

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":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint8","name":"_amount","type":"uint8"}],"name":"stakeholderMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b506040805180820182526008815267416d6d6f6c69746560c01b602080830191825283518085019094526004845263414d4d4f60e01b9084015281516b012debc1a5da2ece8d00000093916200006b91600391906200013f565b508051620000819060049060208401906200013f565b50505060008111620000d95760405162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015260640160405180910390fd5b608052620000e733620000ed565b62000222565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014d90620001e5565b90600052602060002090601f016020900481019282620001715760008555620001bc565b82601f106200018c57805160ff1916838001178555620001bc565b82800160010185558215620001bc579182015b82811115620001bc5782518255916020019190600101906200019f565b50620001ca929150620001ce565b5090565b5b80821115620001ca5760008155600101620001cf565b600181811c90821680620001fa57607f821691505b602082108114156200021c57634e487b7160e01b600052602260045260246000fd5b50919050565b608051610d4e6200024c6000396000818161017c015281816105da01526109620152610d4e6000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461021c578063dd62ed3e1461022f578063f2fde38b14610268578063f6f178761461027b57600080fd5b8063715018a6146101dc5780638da5cb5b146101e657806395d89b4114610201578063a457c2d71461020957600080fd5b8063313ce567116100d3578063313ce5671461016b578063355274ea1461017a57806339509351146101a057806370a08231146101b357600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d61028e565b60405161011a9190610ad0565b60405180910390f35b610136610131366004610b41565b610320565b604051901515815260200161011a565b6002545b60405190815260200161011a565b610136610166366004610b6b565b610336565b6040516012815260200161011a565b7f000000000000000000000000000000000000000000000000000000000000000061014a565b6101366101ae366004610b41565b6103e5565b61014a6101c1366004610ba7565b6001600160a01b031660009081526020819052604090205490565b6101e4610421565b005b6005546040516001600160a01b03909116815260200161011a565b61010d610457565b610136610217366004610b41565b610466565b61013661022a366004610b41565b6104ff565b61014a61023d366004610bc9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101e4610276366004610ba7565b61050c565b6101e4610289366004610bfc565b6105a7565b60606003805461029d90610c39565b80601f01602080910402602001604051908101604052809291908181526020018280546102c990610c39565b80156103165780601f106102eb57610100808354040283529160200191610316565b820191906000526020600020905b8154815290600101906020018083116102f957829003601f168201915b5050505050905090565b600061032d33848461061b565b50600192915050565b600061034384848461073f565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103cd5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103da853385840361061b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161032d91859061041c908690610c8a565b61061b565b6005546001600160a01b0316331461044b5760405162461bcd60e51b81526004016103c490610ca2565b610455600061090e565b565b60606004805461029d90610c39565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104e85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103c4565b6104f5338585840361061b565b5060019392505050565b600061032d33848461073f565b6005546001600160a01b031633146105365760405162461bcd60e51b81526004016103c490610ca2565b6001600160a01b03811661059b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103c4565b6105a48161090e565b50565b6005546001600160a01b031633146105d15760405162461bcd60e51b81526004016103c490610ca2565b60006105fe60647f0000000000000000000000000000000000000000000000000000000000000000610cd7565b9050610616836106118360ff8616610cf9565b610960565b505050565b6001600160a01b03831661067d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103c4565b6001600160a01b0382166106de5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103c4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107a35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103c4565b6001600160a01b0382166108055760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103c4565b6001600160a01b0383166000908152602081905260409020548181101561087d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103c4565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906108b4908490610c8a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161090091815260200190565b60405180910390a350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b7f00000000000000000000000000000000000000000000000000000000000000008161098b60025490565b6109959190610c8a565b11156109e35760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a206361702065786365656465640000000000000060448201526064016103c4565b6109ed82826109f1565b5050565b6001600160a01b038216610a475760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103c4565b8060026000828254610a599190610c8a565b90915550506001600160a01b03821660009081526020819052604081208054839290610a86908490610c8a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600060208083528351808285015260005b81811015610afd57858101830151858201604001528201610ae1565b81811115610b0f576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b3c57600080fd5b919050565b60008060408385031215610b5457600080fd5b610b5d83610b25565b946020939093013593505050565b600080600060608486031215610b8057600080fd5b610b8984610b25565b9250610b9760208501610b25565b9150604084013590509250925092565b600060208284031215610bb957600080fd5b610bc282610b25565b9392505050565b60008060408385031215610bdc57600080fd5b610be583610b25565b9150610bf360208401610b25565b90509250929050565b60008060408385031215610c0f57600080fd5b610c1883610b25565b9150602083013560ff81168114610c2e57600080fd5b809150509250929050565b600181811c90821680610c4d57607f821691505b60208210811415610c6e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610c9d57610c9d610c74565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082610cf457634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610d1357610d13610c74565b50029056fea264697066735822122018d8f1ccd0d4435a887c5e5c0a594ae892b6c8fd36bc568b0b54b19803c29cb664736f6c634300080b0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461021c578063dd62ed3e1461022f578063f2fde38b14610268578063f6f178761461027b57600080fd5b8063715018a6146101dc5780638da5cb5b146101e657806395d89b4114610201578063a457c2d71461020957600080fd5b8063313ce567116100d3578063313ce5671461016b578063355274ea1461017a57806339509351146101a057806370a08231146101b357600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d61028e565b60405161011a9190610ad0565b60405180910390f35b610136610131366004610b41565b610320565b604051901515815260200161011a565b6002545b60405190815260200161011a565b610136610166366004610b6b565b610336565b6040516012815260200161011a565b7f0000000000000000000000000000000000000000012debc1a5da2ece8d00000061014a565b6101366101ae366004610b41565b6103e5565b61014a6101c1366004610ba7565b6001600160a01b031660009081526020819052604090205490565b6101e4610421565b005b6005546040516001600160a01b03909116815260200161011a565b61010d610457565b610136610217366004610b41565b610466565b61013661022a366004610b41565b6104ff565b61014a61023d366004610bc9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101e4610276366004610ba7565b61050c565b6101e4610289366004610bfc565b6105a7565b60606003805461029d90610c39565b80601f01602080910402602001604051908101604052809291908181526020018280546102c990610c39565b80156103165780601f106102eb57610100808354040283529160200191610316565b820191906000526020600020905b8154815290600101906020018083116102f957829003601f168201915b5050505050905090565b600061032d33848461061b565b50600192915050565b600061034384848461073f565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103cd5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103da853385840361061b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161032d91859061041c908690610c8a565b61061b565b6005546001600160a01b0316331461044b5760405162461bcd60e51b81526004016103c490610ca2565b610455600061090e565b565b60606004805461029d90610c39565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104e85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103c4565b6104f5338585840361061b565b5060019392505050565b600061032d33848461073f565b6005546001600160a01b031633146105365760405162461bcd60e51b81526004016103c490610ca2565b6001600160a01b03811661059b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103c4565b6105a48161090e565b50565b6005546001600160a01b031633146105d15760405162461bcd60e51b81526004016103c490610ca2565b60006105fe60647f0000000000000000000000000000000000000000012debc1a5da2ece8d000000610cd7565b9050610616836106118360ff8616610cf9565b610960565b505050565b6001600160a01b03831661067d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103c4565b6001600160a01b0382166106de5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103c4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107a35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103c4565b6001600160a01b0382166108055760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103c4565b6001600160a01b0383166000908152602081905260409020548181101561087d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103c4565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906108b4908490610c8a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161090091815260200190565b60405180910390a350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b7f0000000000000000000000000000000000000000012debc1a5da2ece8d0000008161098b60025490565b6109959190610c8a565b11156109e35760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a206361702065786365656465640000000000000060448201526064016103c4565b6109ed82826109f1565b5050565b6001600160a01b038216610a475760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103c4565b8060026000828254610a599190610c8a565b90915550506001600160a01b03821660009081526020819052604081208054839290610a86908490610c8a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600060208083528351808285015260005b81811015610afd57858101830151858201604001528201610ae1565b81811115610b0f576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b3c57600080fd5b919050565b60008060408385031215610b5457600080fd5b610b5d83610b25565b946020939093013593505050565b600080600060608486031215610b8057600080fd5b610b8984610b25565b9250610b9760208501610b25565b9150604084013590509250925092565b600060208284031215610bb957600080fd5b610bc282610b25565b9392505050565b60008060408385031215610bdc57600080fd5b610be583610b25565b9150610bf360208401610b25565b90509250929050565b60008060408385031215610c0f57600080fd5b610c1883610b25565b9150602083013560ff81168114610c2e57600080fd5b809150509250929050565b600181811c90821680610c4d57607f821691505b60208210811415610c6e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610c9d57610c9d610c74565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082610cf457634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610d1357610d13610c74565b50029056fea264697066735822122018d8f1ccd0d4435a887c5e5c0a594ae892b6c8fd36bc568b0b54b19803c29cb664736f6c634300080b0033

Deployed Bytecode Sourcemap

20249:470:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9185:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11352:169;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;11352:169:0;1053:187:1;10305:108:0;10393:12;;10305:108;;;1391:25:1;;;1379:2;1364:18;10305:108:0;1245:177:1;12003:492:0;;;;;;:::i;:::-;;:::i;10147:93::-;;;10230:2;1902:36:1;;1890:2;1875:18;10147:93:0;1760:184:1;19826:83:0;19897:4;19826:83;;12904:215;;;;;;:::i;:::-;;:::i;10476:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10577:18:0;10550:7;10577:18;;;;;;;;;;;;10476:127;2606:103;;;:::i;:::-;;1955:87;2028:6;;1955:87;;-1:-1:-1;;;;;2028:6:0;;;2286:51:1;;2274:2;2259:18;1955:87:0;2140:203:1;9404:104:0;;;:::i;13622:413::-;;;;;;:::i;:::-;;:::i;10816:175::-;;;;;;:::i;:::-;;:::i;11054:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11170:18:0;;;11143:7;11170:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11054:151;2864:201;;;;;;:::i;:::-;;:::i;20547:166::-;;;;;;:::i;:::-;;:::i;9185:100::-;9239:13;9272:5;9265:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9185:100;:::o;11352:169::-;11435:4;11452:39;759:10;11475:7;11484:6;11452:8;:39::i;:::-;-1:-1:-1;11509:4:0;11352:169;;;;:::o;12003:492::-;12143:4;12160:36;12170:6;12178:9;12189:6;12160:9;:36::i;:::-;-1:-1:-1;;;;;12236:19:0;;12209:24;12236:19;;;:11;:19;;;;;;;;759:10;12236:33;;;;;;;;12288:26;;;;12280:79;;;;-1:-1:-1;;;12280:79:0;;3548:2:1;12280:79:0;;;3530:21:1;3587:2;3567:18;;;3560:30;3626:34;3606:18;;;3599:62;-1:-1:-1;;;3677:18:1;;;3670:38;3725:19;;12280:79:0;;;;;;;;;12395:57;12404:6;759:10;12445:6;12426:16;:25;12395:8;:57::i;:::-;-1:-1:-1;12483:4:0;;12003:492;-1:-1:-1;;;;12003:492:0:o;12904:215::-;759:10;12992:4;13041:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13041:34:0;;;;;;;;;;12992:4;;13009:80;;13032:7;;13041:47;;13078:10;;13041:47;:::i;:::-;13009:8;:80::i;2606:103::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;9404:104::-;9460:13;9493:7;9486:14;;;;;:::i;13622:413::-;759:10;13715:4;13759:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13759:34:0;;;;;;;;;;13812:35;;;;13804:85;;;;-1:-1:-1;;;13804:85:0;;4583:2:1;13804:85:0;;;4565:21:1;4622:2;4602:18;;;4595:30;4661:34;4641:18;;;4634:62;-1:-1:-1;;;4712:18:1;;;4705:35;4757:19;;13804:85:0;4381:401:1;13804:85:0;13925:67;759:10;13948:7;13976:15;13957:16;:34;13925:8;:67::i;:::-;-1:-1:-1;14023:4:0;;13622:413;-1:-1:-1;;;13622:413:0:o;10816:175::-;10902:4;10919:42;759:10;10943:9;10954:6;10919:9;:42::i;2864:201::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2953:22:0;::::1;2945:73;;;::::0;-1:-1:-1;;;2945:73:0;;4989:2:1;2945:73:0::1;::::0;::::1;4971:21:1::0;5028:2;5008:18;;;5001:30;5067:34;5047:18;;;5040:62;-1:-1:-1;;;5118:18:1;;;5111:36;5164:19;;2945:73:0::1;4787:402:1::0;2945:73:0::1;3029:28;3048:8;3029:18;:28::i;:::-;2864:201:::0;:::o;20547:166::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;20635:13:::1;20651:11;20659:3;19897:4:::0;20651:11:::1;:::i;:::-;20635:27:::0;-1:-1:-1;20673:32:0::1;20679:8:::0;20689:15:::1;20635:27:::0;20689:15:::1;::::0;::::1;;:::i;:::-;20673:5;:32::i;:::-;20624:89;20547:166:::0;;:::o;17306:380::-;-1:-1:-1;;;;;17442:19:0;;17434:68;;;;-1:-1:-1;;;17434:68:0;;5791:2:1;17434:68:0;;;5773:21:1;5830:2;5810:18;;;5803:30;5869:34;5849:18;;;5842:62;-1:-1:-1;;;5920:18:1;;;5913:34;5964:19;;17434:68:0;5589:400:1;17434:68:0;-1:-1:-1;;;;;17521:21:0;;17513:68;;;;-1:-1:-1;;;17513:68:0;;6196:2:1;17513:68:0;;;6178:21:1;6235:2;6215:18;;;6208:30;6274:34;6254:18;;;6247:62;-1:-1:-1;;;6325:18:1;;;6318:32;6367:19;;17513:68:0;5994:398:1;17513:68:0;-1:-1:-1;;;;;17594:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17646:32;;1391:25:1;;;17646:32:0;;1364:18:1;17646:32:0;;;;;;;17306:380;;;:::o;14525:733::-;-1:-1:-1;;;;;14665:20:0;;14657:70;;;;-1:-1:-1;;;14657:70:0;;6599:2:1;14657:70:0;;;6581:21:1;6638:2;6618:18;;;6611:30;6677:34;6657:18;;;6650:62;-1:-1:-1;;;6728:18:1;;;6721:35;6773:19;;14657:70:0;6397:401:1;14657:70:0;-1:-1:-1;;;;;14746:23:0;;14738:71;;;;-1:-1:-1;;;14738:71:0;;7005:2:1;14738:71:0;;;6987:21:1;7044:2;7024:18;;;7017:30;7083:34;7063:18;;;7056:62;-1:-1:-1;;;7134:18:1;;;7127:33;7177:19;;14738:71:0;6803:399:1;14738:71:0;-1:-1:-1;;;;;14906:17:0;;14882:21;14906:17;;;;;;;;;;;14942:23;;;;14934:74;;;;-1:-1:-1;;;14934:74:0;;7409:2:1;14934:74:0;;;7391:21:1;7448:2;7428:18;;;7421:30;7487:34;7467:18;;;7460:62;-1:-1:-1;;;7538:18:1;;;7531:36;7584:19;;14934:74:0;7207:402:1;14934:74:0;-1:-1:-1;;;;;15044:17:0;;;:9;:17;;;;;;;;;;;15064:22;;;15044:42;;15108:20;;;;;;;;:30;;15080:6;;15044:9;15108:30;;15080:6;;15108:30;:::i;:::-;;;;;;;;15173:9;-1:-1:-1;;;;;15156:35:0;15165:6;-1:-1:-1;;;;;15156:35:0;;15184:6;15156:35;;;;1391:25:1;;1379:2;1364:18;;1245:177;15156:35:0;;;;;;;;14646:612;14525:733;;;:::o;3225:191::-;3318:6;;;-1:-1:-1;;;;;3335:17:0;;;-1:-1:-1;;;;;;3335:17:0;;;;;;;3368:40;;3318:6;;;3335:17;3318:6;;3368:40;;3299:16;;3368:40;3288:128;3225:191;:::o;19967:207::-;19897:4;20082:6;20060:19;10393:12;;;10305:108;20060:19;:28;;;;:::i;:::-;:37;;20052:75;;;;-1:-1:-1;;;20052:75:0;;7816:2:1;20052:75:0;;;7798:21:1;7855:2;7835:18;;;7828:30;7894:27;7874:18;;;7867:55;7939:18;;20052:75:0;7614:349:1;20052:75:0;20138:28;20150:7;20159:6;20138:11;:28::i;:::-;19967:207;;:::o;15545:399::-;-1:-1:-1;;;;;15629:21:0;;15621:65;;;;-1:-1:-1;;;15621:65:0;;8170:2:1;15621:65:0;;;8152:21:1;8209:2;8189:18;;;8182:30;8248:33;8228:18;;;8221:61;8299:18;;15621:65:0;7968:355:1;15621:65:0;15777:6;15761:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;15794:18:0;;:9;:18;;;;;;;;;;:28;;15816:6;;15794:9;:28;;15816:6;;15794:28;:::i;:::-;;;;-1:-1:-1;;15838:37:0;;1391:25:1;;;-1:-1:-1;;;;;15838:37:0;;;15855:1;;15838:37;;1379:2:1;1364:18;15838:37:0;;;;;;;19967:207;;:::o;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:1:o;2348:260::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2564:38;2598:2;2587:9;2583:18;2564:38;:::i;:::-;2554:48;;2348:260;;;;;:::o;2613:343::-;2679:6;2687;2740:2;2728:9;2719:7;2715:23;2711:32;2708:52;;;2756:1;2753;2746:12;2708:52;2779:29;2798:9;2779:29;:::i;:::-;2769:39;;2858:2;2847:9;2843:18;2830:32;2902:4;2895:5;2891:16;2884:5;2881:27;2871:55;;2922:1;2919;2912:12;2871:55;2945:5;2935:15;;;2613:343;;;;;:::o;2961:380::-;3040:1;3036:12;;;;3083;;;3104:61;;3158:4;3150:6;3146:17;3136:27;;3104:61;3211:2;3203:6;3200:14;3180:18;3177:38;3174:161;;;3257:10;3252:3;3248:20;3245:1;3238:31;3292:4;3289:1;3282:15;3320:4;3317:1;3310:15;3174:161;;2961:380;;;:::o;3755:127::-;3816:10;3811:3;3807:20;3804:1;3797:31;3847:4;3844:1;3837:15;3871:4;3868:1;3861:15;3887:128;3927:3;3958:1;3954:6;3951:1;3948:13;3945:39;;;3964:18;;:::i;:::-;-1:-1:-1;4000:9:1;;3887:128::o;4020:356::-;4222:2;4204:21;;;4241:18;;;4234:30;4300:34;4295:2;4280:18;;4273:62;4367:2;4352:18;;4020:356::o;5194:217::-;5234:1;5260;5250:132;;5304:10;5299:3;5295:20;5292:1;5285:31;5339:4;5336:1;5329:15;5367:4;5364:1;5357:15;5250:132;-1:-1:-1;5396:9:1;;5194:217::o;5416:168::-;5456:7;5522:1;5518;5514:6;5510:14;5507:1;5504:21;5499:1;5492:9;5485:17;5481:45;5478:71;;;5529:18;;:::i;:::-;-1:-1:-1;5569:9:1;;5416:168::o

Swarm Source

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