ETH Price: $2,492.10 (-1.25%)

Token

ARC User Helper (ARCXHELPER)
 

Overview

Max Total Supply

100 ARCXHELPER

Holders

17

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4 ARCXHELPER

Value
$0.00
0xa33c7f924399b59a8ee627388a108beab5e12eaf
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x31a9e184...93E6BC550
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
SkillsetToken

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-20
*/

/*

    /     |  __    / ____|
   /      | |__) | | |
  / /    |  _  /  | |
 / ____   | |    | |____
/_/    _ |_|  _  _____|

* ARC: token/SkillsetToken.sol
*
* Latest source (may be newer): https://github.com/arcxgame/contracts/blob/master/contracts/token/SkillsetToken.sol
*
* Contract Dependencies: 
*	- BaseERC20
*	- Context
*	- IERC20
*	- Ownable
*	- Permittable
* Libraries: 
*	- SafeMath
*
* MIT License
* ===========
*
* Copyright (c) 2020 ARC
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
*/

pragma experimental ABIEncoderV2;

/* ===============================================
* Flattened with Solidifier by Coinage
* 
* https://solidifier.coina.ge
* ===============================================
*/


pragma solidity ^0.5.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 GSN 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.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


/**
 * @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.
 *
 * 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.
 */
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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns 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(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _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 onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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 onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}


/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
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);
}


contract Permittable {

    /* ============ Variables ============ */

    bytes32 public DOMAIN_SEPARATOR;

    mapping (address => uint256) public permitNonces;

    /* ============ Constants ============ */

    // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    /* solium-disable-next-line */
    bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;

    /* ============ Constructor ============ */

    constructor(
        string memory name,
        string memory version
    )
        public
    {
        DOMAIN_SEPARATOR = initDomainSeparator(name, version);
    }

    /**
     * @dev Initializes EIP712 DOMAIN_SEPARATOR based on the current contract and chain ID.
     */
    function initDomainSeparator(
        string memory name,
        string memory version
    )
        private
        returns (bytes32)
    {
        uint256 chainID;
        /* solium-disable-next-line */
        assembly {
            chainID := chainid()
        }

        return keccak256(
            abi.encode(
                keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
                keccak256(bytes(name)),
                keccak256(bytes(version)),
                chainID,
                address(this)
            )
        );
    }

    /**
    * @dev Approve by signature.
    *
    * Adapted from Uniswap's UniswapV2ERC20 and MakerDAO's Dai contracts:
    * https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol
    * https://github.com/makerdao/dss/blob/master/src/dai.sol
    */
    function _permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    )
        internal
    {

        require(
            deadline == 0 || deadline >= block.timestamp,
            "Permittable: Permit expired"
        );

        require(
            spender != address(0),
            "Permittable: spender cannot be 0x0"
        );

        require(
            value > 0,
            "Permittable: approval value must be greater than 0"
        );

        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                DOMAIN_SEPARATOR,
                keccak256(
                    abi.encode(
                    PERMIT_TYPEHASH,
                    owner,
                    spender,
                    value,
                    permitNonces[owner]++,
                    deadline
                )
            )
        ));

        address recoveredAddress = ecrecover(
            digest,
            v,
            r,
            s
        );

        require(
            recoveredAddress != address(0) && owner == recoveredAddress,
            "Permittable: Signature invalid"
        );

    }

}

// SPDX-License-Identifier: MIT


/**
 * @title ERC20 Token
 *
 * Basic ERC20 Implementation
 */
contract BaseERC20 is IERC20, Permittable {

    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (
        string memory name,
        string memory symbol
    )
        public
        Permittable(name, symbol)
    {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol()
        public
        view
        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 {_setupDecimals} is
     * called.
     *
     * 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
        returns (uint8)
    {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(
        address account
    )
        public
        view
        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
        returns (bool)
    {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    )
        public
        returns (bool)
    {
        _approve(msg.sender, 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
        returns (bool)
    {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            msg.sender,
            _allowances[sender][msg.sender].sub(
                amount, "ERC20: transfer amount exceeds allowance"
            )
        );

        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
        returns (bool)
    {
        _approve(
            msg.sender,
            spender,
            _allowances[msg.sender][spender].add(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
        returns (bool)
    {
        _approve(
            msg.sender,
            spender,
            _allowances[msg.sender][spender].sub(
                subtractedValue, "ERC20: decreased allowance below zero"
            )
        );

        return true;
    }

    /**
    * @dev Approve by signature.
    *
    * Adapted from Uniswap's UniswapV2ERC20 and MakerDAO's Dai contracts:
    * https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol
    * https://github.com/makerdao/dss/blob/master/src/dai.sol
    */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    )
        public
    {
        _permit(
            owner,
            spender,
            value,
            deadline,
            v,
            r,
            s
        );
        _approve(owner, spender, value);
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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
    {
        require(
            sender != address(0),
            "ERC20: transfer from the zero address"
        );

        require(
            recipient != address(0),
            "ERC20: transfer to the zero address"
        );

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );

        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(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
     *
     * - `to` cannot be the zero address.
     */
    function _mint(
        address account,
        uint256 amount
    )
        internal
    {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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
    {
        require(account != address(0), "ERC20: burn from the zero address");

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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
    {
        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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @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 to 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 { /* solium-disable-line no-empty-blocks */ }

}


// SPDX-License-Identifier: MIT


contract SkillsetToken is BaseERC20, Ownable {

    // ============ Variables ============

    address[] public mintersArray;

    mapping(address => bool) public minters;

    /* ========== EVENTS ========== */

    event MinterAdded(address _minter);
    event MinterRemoved(address _minter);

    // ============ Modifier ============

    modifier onlyMinter() {
        require(
            minters[msg.sender] == true,
            "Skillset: only callable by minter"
        );
        _;
    }

    // ============ Constructor ============

    constructor(
        string memory _name,
        string memory _symbol
    )
        public
        BaseERC20(_name, _symbol)
    { }

    /* ========== VIEW FUNCTIONS ========== */

    function getAllMinters()
        external
        view
        returns (address[] memory)
    {
        return mintersArray;
    }

    function isValidMinter(
        address _minter
    )
        external
        view
        returns (bool)
    {
        return minters[_minter];
    }

    // ============ Admin Functions ============

    function addMinter(
        address _minter
    )
        external
        onlyOwner
    {
        require(
            minters[_minter] != true,
            "Minter already exists"
        );

        mintersArray.push(_minter);
        minters[_minter] = true;

        emit MinterAdded(_minter);
    }

    function removeMinter(
        address _minter
    )
        external
        onlyOwner
    {
        require(
            minters[_minter] == true,
            "Minter does not exist"
        );


        // Remove the synth from the availableSynths array.
        for (uint i = 0; i < mintersArray.length; i++) {
            if (address(mintersArray[i]) == _minter) {
                delete mintersArray[i];

                // Copy the last synth into the place of the one we just deleted
                // If there's only one synth, this is synths[0] = synths[0].
                // If we're deleting the last one, it's also a NOOP in the same way.
                mintersArray[i] = mintersArray[mintersArray.length - 1];

                // Decrease the size of the array by one.
                mintersArray.length--;

                break;
            }
        }

        // And remove it from the minters mapping
        delete minters[_minter];

        emit MinterRemoved(_minter);
    }

    // ============ Minter Functions ============

    function mint(
        address to,
        uint256 value
    )
        external
        onlyMinter
    {
        _mint(to, value);
    }

    function burn(
        address to,
        uint256 value
    )
        external
        onlyMinter
    {
        _burn(to, value);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_minter","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_minter","type":"address"}],"name":"MinterRemoved","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"},{"constant":true,"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getAllMinters","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"isValidMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintersArray","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"permitNonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"removeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620034aa380380620034aa8339818101604052620000379190810190620002d4565b818181816200004d82826200015e60201b60201c565b600081905550505081600590805190602001906200006d929190620001c9565b50806006908051906020019062000086929190620001c9565b506012600760006101000a81548160ff021916908360ff16021790555050506000620000b7620001c160201b60201c565b905080600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350505062000560565b600080469050604051620001729062000408565b6040518091039020848051906020012084805190602001208330604051602001620001a29594939291906200041f565b6040516020818303038152906040528051906020012091505092915050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200020c57805160ff19168380011785556200023d565b828001600101855582156200023d579182015b828111156200023c5782518255916020019190600101906200021f565b5b5090506200024c919062000250565b5090565b6200027591905b808211156200027157600081600090555060010162000257565b5090565b90565b600082601f8301126200028a57600080fd5b8151620002a16200029b82620004aa565b6200047c565b91508082526020830160208301858383011115620002be57600080fd5b620002cb8382846200052a565b50505092915050565b60008060408385031215620002e857600080fd5b600083015167ffffffffffffffff8111156200030357600080fd5b620003118582860162000278565b925050602083015167ffffffffffffffff8111156200032f57600080fd5b6200033d8582860162000278565b9150509250929050565b6200035281620004e2565b82525050565b6200036381620004f6565b82525050565b600062000378605283620004d7565b91507f454950373132446f6d61696e28737472696e67206e616d652c737472696e672060008301527f76657273696f6e2c75696e7432353620636861696e49642c616464726573732060208301527f766572696679696e67436f6e74726163742900000000000000000000000000006040830152605282019050919050565b620004028162000520565b82525050565b6000620004158262000369565b9150819050919050565b600060a08201905062000436600083018862000358565b62000445602083018762000358565b62000454604083018662000358565b620004636060830185620003f7565b62000472608083018462000347565b9695505050505050565b6000604051905081810181811067ffffffffffffffff82111715620004a057600080fd5b8060405250919050565b600067ffffffffffffffff821115620004c257600080fd5b601f19601f8301169050602081019050919050565b600081905092915050565b6000620004ef8262000500565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200054a5780820151818401526020810190506200052d565b838111156200055a576000848401525b50505050565b612f3a80620005706000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a457c2d711610097578063d505accf11610071578063d505accf146104e6578063dd62ed3e14610502578063f2fde38b14610532578063f46eccc41461054e576101a9565b8063a457c2d714610456578063a9059cbb14610486578063b67e9df7146104b6576101a9565b806395d89b41116100d357806395d89b41146103e2578063983b2d56146104005780639dc29fac1461041c578063a045442c14610438576101a9565b8063715018a61461039c5780638da5cb5b146103a65780638f32d59b146103c4576101a9565b806330adf81f11610166578063395093511161014057806339509351146102f057806340c10f191461032057806341ac34e51461033c57806370a082311461036c576101a9565b806330adf81f14610296578063313ce567146102b45780633644e515146102d2576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101fc578063191d0ffc1461021a57806323b872dd1461024a5780633092afd51461027a575b600080fd5b6101b661057e565b6040516101c39190612aa1565b60405180910390f35b6101e660048036036101e19190810190612236565b610620565b6040516101f391906129c5565b60405180910390f35b610204610637565b6040516102119190612cc3565b60405180910390f35b610234600480360361022f91908101906120e4565b610641565b6040516102419190612cc3565b60405180910390f35b610264600480360361025f9190810190612149565b610659565b60405161027191906129c5565b60405180910390f35b610294600480360361028f91908101906120e4565b610724565b005b61029e6109fd565b6040516102ab91906129e0565b60405180910390f35b6102bc610a24565b6040516102c99190612cde565b60405180910390f35b6102da610a3b565b6040516102e791906129e0565b60405180910390f35b61030a60048036036103059190810190612236565b610a41565b60405161031791906129c5565b60405180910390f35b61033a60048036036103359190810190612236565b610ae6565b005b61035660048036036103519190810190612272565b610b87565b6040516103639190612988565b60405180910390f35b610386600480360361038191908101906120e4565b610bc3565b6040516103939190612cc3565b60405180910390f35b6103a4610c0c565b005b6103ae610d14565b6040516103bb9190612988565b60405180910390f35b6103cc610d3e565b6040516103d991906129c5565b60405180910390f35b6103ea610d9d565b6040516103f79190612aa1565b60405180910390f35b61041a600480360361041591908101906120e4565b610e3f565b005b61043660048036036104319190810190612236565b611012565b005b6104406110b3565b60405161044d91906129a3565b60405180910390f35b610470600480360361046b9190810190612236565b611141565b60405161047d91906129c5565b60405180910390f35b6104a0600480360361049b9190810190612236565b611200565b6040516104ad91906129c5565b60405180910390f35b6104d060048036036104cb91908101906120e4565b611217565b6040516104dd91906129c5565b60405180910390f35b61050060048036036104fb9190810190612198565b61126d565b005b61051c6004803603610517919081019061210d565b611290565b6040516105299190612cc3565b60405180910390f35b61054c600480360361054791908101906120e4565b611317565b005b610568600480360361056391908101906120e4565b61136a565b60405161057591906129c5565b60405180910390f35b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106165780601f106105eb57610100808354040283529160200191610616565b820191906000526020600020905b8154815290600101906020018083116105f957829003601f168201915b5050505050905090565b600061062d33848461138a565b6001905092915050565b6000600454905090565b60016020528060005260406000206000915090505481565b6000610666848484611555565b610719843361071485604051806060016040528060288152602001612eab60289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ee9092919063ffffffff16565b61138a565b600190509392505050565b61072c610d3e565b61076b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076290612c03565b60405180910390fd5b60011515600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146107fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f590612b63565b60405180910390fd5b60008090505b600880549050811015610973578173ffffffffffffffffffffffffffffffffffffffff166008828154811061083557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610966576008818154811061088957fe5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556008600160088054905003815481106108cb57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061090357fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506008805480919060019003610960919061203f565b50610973565b8080600101915050610804565b50600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690557fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb66692816040516109f29190612988565b60405180910390a150565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b81565b6000600760009054906101000a900460ff16905090565b60005481565b6000610adc3384610ad785600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461184990919063ffffffff16565b61138a565b6001905092915050565b60011515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090612ba3565b60405180910390fd5b610b83828261189e565b5050565b60088181548110610b9457fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c14610d3e565b610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90612c03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610d81611a34565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e355780601f10610e0a57610100808354040283529160200191610e35565b820191906000526020600020905b815481529060010190602001808311610e1857829003601f168201915b5050505050905090565b610e47610d3e565b610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d90612c03565b60405180910390fd5b60011515600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1190612b43565b60405180910390fd5b60088190806001815401808255809150509060018203906000526020600020016000909192909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f6816040516110079190612988565b60405180910390a150565b60011515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c90612ba3565b60405180910390fd5b6110af8282611a3c565b5050565b6060600880548060200260200160405190810160405280929190818152602001828054801561113757602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116110ed575b5050505050905090565b60006111f633846111f185604051806060016040528060258152602001612ed360259139600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ee9092919063ffffffff16565b61138a565b6001905092915050565b600061120d338484611555565b6001905092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61127c87878787878787611bec565b61128787878761138a565b50505050505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61131f610d3e565b61135e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135590612c03565b60405180910390fd5b61136781611ec0565b50565b60096020528060005260406000206000915054906101000a900460ff1681565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190612c63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190612b03565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115489190612cc3565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc90612c43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90612ac3565b60405180910390fd5b611640838383611ff0565b6116ac81604051806060016040528060268152602001612e8560269139600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ee9092919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061174181600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461184990919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117e19190612cc3565b60405180910390a3505050565b6000838311158290611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d9190612aa1565b60405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90612b23565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561190e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190590612ca3565b60405180910390fd5b61191a60008383611ff0565b61192f8160045461184990919063ffffffff16565b60048190555061198781600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461184990919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a289190612cc3565b60405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390612c23565b60405180910390fd5b611ab882600083611ff0565b611b2481604051806060016040528060228152602001612e6360229139600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ee9092919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b7c81600454611ff590919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611be09190612cc3565b60405180910390a35050565b6000841480611bfb5750428410155b611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3190612be3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415611caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca190612bc3565b60405180910390fd5b60008511611ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce490612c83565b60405180910390fd5b600080547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b898989600160008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600101919050558a604051602001611d7c969594939291906129fb565b60405160208183030381529060405280519060200120604051602001611da3929190612951565b604051602081830303815290604052805190602001209050600060018286868660405160008152602001604052604051611de09493929190612a5c565b6020604051602081039080840390855afa158015611e02573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611e7657508073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff16145b611eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eac90612b83565b60405180910390fd5b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2790612ae3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b600061203783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506117ee565b905092915050565b81548183558181111561206657818360005260206000209182019101612065919061206b565b5b505050565b61208d91905b80821115612089576000816000905550600101612071565b5090565b90565b60008135905061209f81612e06565b92915050565b6000813590506120b481612e1d565b92915050565b6000813590506120c981612e34565b92915050565b6000813590506120de81612e4b565b92915050565b6000602082840312156120f657600080fd5b600061210484828501612090565b91505092915050565b6000806040838503121561212057600080fd5b600061212e85828601612090565b925050602061213f85828601612090565b9150509250929050565b60008060006060848603121561215e57600080fd5b600061216c86828701612090565b935050602061217d86828701612090565b925050604061218e868287016120ba565b9150509250925092565b600080600080600080600060e0888a0312156121b357600080fd5b60006121c18a828b01612090565b97505060206121d28a828b01612090565b96505060406121e38a828b016120ba565b95505060606121f48a828b016120ba565b94505060806122058a828b016120cf565b93505060a06122168a828b016120a5565b92505060c06122278a828b016120a5565b91505092959891949750929550565b6000806040838503121561224957600080fd5b600061225785828601612090565b9250506020612268858286016120ba565b9150509250929050565b60006020828403121561228457600080fd5b6000612292848285016120ba565b91505092915050565b60006122a783836122b3565b60208301905092915050565b6122bc81612d59565b82525050565b6122cb81612d59565b82525050565b60006122dc82612d09565b6122e68185612d2c565b93506122f183612cf9565b8060005b83811015612322578151612309888261229b565b975061231483612d1f565b9250506001810190506122f5565b5085935050505092915050565b61233881612d6b565b82525050565b61234781612d77565b82525050565b61235e61235982612d77565b612deb565b82525050565b600061236f82612d14565b6123798185612d3d565b9350612389818560208601612db8565b61239281612df5565b840191505092915050565b60006123aa602383612d3d565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612410602683612d3d565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612476602283612d3d565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006124dc600283612d4e565b91507f19010000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b600061251c601b83612d3d565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061255c601583612d3d565b91507f4d696e74657220616c72656164792065786973747300000000000000000000006000830152602082019050919050565b600061259c601583612d3d565b91507f4d696e74657220646f6573206e6f7420657869737400000000000000000000006000830152602082019050919050565b60006125dc601e83612d3d565b91507f5065726d69747461626c653a205369676e617475726520696e76616c696400006000830152602082019050919050565b600061261c602183612d3d565b91507f536b696c6c7365743a206f6e6c792063616c6c61626c65206279206d696e746560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612682602283612d3d565b91507f5065726d69747461626c653a207370656e6465722063616e6e6f74206265203060008301527f78300000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006126e8601b83612d3d565b91507f5065726d69747461626c653a205065726d6974206578706972656400000000006000830152602082019050919050565b6000612728602083612d3d565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612768602183612d3d565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006127ce602583612d3d565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612834602483612d3d565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061289a603283612d3d565b91507f5065726d69747461626c653a20617070726f76616c2076616c7565206d75737460008301527f2062652067726561746572207468616e203000000000000000000000000000006020830152604082019050919050565b6000612900601f83612d3d565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61293c81612da1565b82525050565b61294b81612dab565b82525050565b600061295c826124cf565b9150612968828561234d565b602082019150612978828461234d565b6020820191508190509392505050565b600060208201905061299d60008301846122c2565b92915050565b600060208201905081810360008301526129bd81846122d1565b905092915050565b60006020820190506129da600083018461232f565b92915050565b60006020820190506129f5600083018461233e565b92915050565b600060c082019050612a10600083018961233e565b612a1d60208301886122c2565b612a2a60408301876122c2565b612a376060830186612933565b612a446080830185612933565b612a5160a0830184612933565b979650505050505050565b6000608082019050612a71600083018761233e565b612a7e6020830186612942565b612a8b604083018561233e565b612a98606083018461233e565b95945050505050565b60006020820190508181036000830152612abb8184612364565b905092915050565b60006020820190508181036000830152612adc8161239d565b9050919050565b60006020820190508181036000830152612afc81612403565b9050919050565b60006020820190508181036000830152612b1c81612469565b9050919050565b60006020820190508181036000830152612b3c8161250f565b9050919050565b60006020820190508181036000830152612b5c8161254f565b9050919050565b60006020820190508181036000830152612b7c8161258f565b9050919050565b60006020820190508181036000830152612b9c816125cf565b9050919050565b60006020820190508181036000830152612bbc8161260f565b9050919050565b60006020820190508181036000830152612bdc81612675565b9050919050565b60006020820190508181036000830152612bfc816126db565b9050919050565b60006020820190508181036000830152612c1c8161271b565b9050919050565b60006020820190508181036000830152612c3c8161275b565b9050919050565b60006020820190508181036000830152612c5c816127c1565b9050919050565b60006020820190508181036000830152612c7c81612827565b9050919050565b60006020820190508181036000830152612c9c8161288d565b9050919050565b60006020820190508181036000830152612cbc816128f3565b9050919050565b6000602082019050612cd86000830184612933565b92915050565b6000602082019050612cf36000830184612942565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d6482612d81565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612dd6578082015181840152602081019050612dbb565b83811115612de5576000848401525b50505050565b6000819050919050565b6000601f19601f8301169050919050565b612e0f81612d59565b8114612e1a57600080fd5b50565b612e2681612d77565b8114612e3157600080fd5b50565b612e3d81612da1565b8114612e4857600080fd5b50565b612e5481612dab565b8114612e5f57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa365627a7a72315820cefe1346edf385250160bcc32ed107168e21df6f270aeccb836772f0040fdbff6c6578706572696d656e74616cf564736f6c6343000510004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001241524358204d656d6573204372656174656400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009415243584d454d45530000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a457c2d711610097578063d505accf11610071578063d505accf146104e6578063dd62ed3e14610502578063f2fde38b14610532578063f46eccc41461054e576101a9565b8063a457c2d714610456578063a9059cbb14610486578063b67e9df7146104b6576101a9565b806395d89b41116100d357806395d89b41146103e2578063983b2d56146104005780639dc29fac1461041c578063a045442c14610438576101a9565b8063715018a61461039c5780638da5cb5b146103a65780638f32d59b146103c4576101a9565b806330adf81f11610166578063395093511161014057806339509351146102f057806340c10f191461032057806341ac34e51461033c57806370a082311461036c576101a9565b806330adf81f14610296578063313ce567146102b45780633644e515146102d2576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101fc578063191d0ffc1461021a57806323b872dd1461024a5780633092afd51461027a575b600080fd5b6101b661057e565b6040516101c39190612aa1565b60405180910390f35b6101e660048036036101e19190810190612236565b610620565b6040516101f391906129c5565b60405180910390f35b610204610637565b6040516102119190612cc3565b60405180910390f35b610234600480360361022f91908101906120e4565b610641565b6040516102419190612cc3565b60405180910390f35b610264600480360361025f9190810190612149565b610659565b60405161027191906129c5565b60405180910390f35b610294600480360361028f91908101906120e4565b610724565b005b61029e6109fd565b6040516102ab91906129e0565b60405180910390f35b6102bc610a24565b6040516102c99190612cde565b60405180910390f35b6102da610a3b565b6040516102e791906129e0565b60405180910390f35b61030a60048036036103059190810190612236565b610a41565b60405161031791906129c5565b60405180910390f35b61033a60048036036103359190810190612236565b610ae6565b005b61035660048036036103519190810190612272565b610b87565b6040516103639190612988565b60405180910390f35b610386600480360361038191908101906120e4565b610bc3565b6040516103939190612cc3565b60405180910390f35b6103a4610c0c565b005b6103ae610d14565b6040516103bb9190612988565b60405180910390f35b6103cc610d3e565b6040516103d991906129c5565b60405180910390f35b6103ea610d9d565b6040516103f79190612aa1565b60405180910390f35b61041a600480360361041591908101906120e4565b610e3f565b005b61043660048036036104319190810190612236565b611012565b005b6104406110b3565b60405161044d91906129a3565b60405180910390f35b610470600480360361046b9190810190612236565b611141565b60405161047d91906129c5565b60405180910390f35b6104a0600480360361049b9190810190612236565b611200565b6040516104ad91906129c5565b60405180910390f35b6104d060048036036104cb91908101906120e4565b611217565b6040516104dd91906129c5565b60405180910390f35b61050060048036036104fb9190810190612198565b61126d565b005b61051c6004803603610517919081019061210d565b611290565b6040516105299190612cc3565b60405180910390f35b61054c600480360361054791908101906120e4565b611317565b005b610568600480360361056391908101906120e4565b61136a565b60405161057591906129c5565b60405180910390f35b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106165780601f106105eb57610100808354040283529160200191610616565b820191906000526020600020905b8154815290600101906020018083116105f957829003601f168201915b5050505050905090565b600061062d33848461138a565b6001905092915050565b6000600454905090565b60016020528060005260406000206000915090505481565b6000610666848484611555565b610719843361071485604051806060016040528060288152602001612eab60289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ee9092919063ffffffff16565b61138a565b600190509392505050565b61072c610d3e565b61076b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076290612c03565b60405180910390fd5b60011515600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146107fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f590612b63565b60405180910390fd5b60008090505b600880549050811015610973578173ffffffffffffffffffffffffffffffffffffffff166008828154811061083557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610966576008818154811061088957fe5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556008600160088054905003815481106108cb57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061090357fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506008805480919060019003610960919061203f565b50610973565b8080600101915050610804565b50600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690557fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb66692816040516109f29190612988565b60405180910390a150565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b81565b6000600760009054906101000a900460ff16905090565b60005481565b6000610adc3384610ad785600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461184990919063ffffffff16565b61138a565b6001905092915050565b60011515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090612ba3565b60405180910390fd5b610b83828261189e565b5050565b60088181548110610b9457fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c14610d3e565b610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90612c03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610d81611a34565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e355780601f10610e0a57610100808354040283529160200191610e35565b820191906000526020600020905b815481529060010190602001808311610e1857829003601f168201915b5050505050905090565b610e47610d3e565b610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d90612c03565b60405180910390fd5b60011515600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1190612b43565b60405180910390fd5b60088190806001815401808255809150509060018203906000526020600020016000909192909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f6816040516110079190612988565b60405180910390a150565b60011515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c90612ba3565b60405180910390fd5b6110af8282611a3c565b5050565b6060600880548060200260200160405190810160405280929190818152602001828054801561113757602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116110ed575b5050505050905090565b60006111f633846111f185604051806060016040528060258152602001612ed360259139600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ee9092919063ffffffff16565b61138a565b6001905092915050565b600061120d338484611555565b6001905092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61127c87878787878787611bec565b61128787878761138a565b50505050505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61131f610d3e565b61135e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135590612c03565b60405180910390fd5b61136781611ec0565b50565b60096020528060005260406000206000915054906101000a900460ff1681565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190612c63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190612b03565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115489190612cc3565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc90612c43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90612ac3565b60405180910390fd5b611640838383611ff0565b6116ac81604051806060016040528060268152602001612e8560269139600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ee9092919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061174181600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461184990919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117e19190612cc3565b60405180910390a3505050565b6000838311158290611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d9190612aa1565b60405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90612b23565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561190e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190590612ca3565b60405180910390fd5b61191a60008383611ff0565b61192f8160045461184990919063ffffffff16565b60048190555061198781600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461184990919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a289190612cc3565b60405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390612c23565b60405180910390fd5b611ab882600083611ff0565b611b2481604051806060016040528060228152602001612e6360229139600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ee9092919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b7c81600454611ff590919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611be09190612cc3565b60405180910390a35050565b6000841480611bfb5750428410155b611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3190612be3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415611caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca190612bc3565b60405180910390fd5b60008511611ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce490612c83565b60405180910390fd5b600080547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b898989600160008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600101919050558a604051602001611d7c969594939291906129fb565b60405160208183030381529060405280519060200120604051602001611da3929190612951565b604051602081830303815290604052805190602001209050600060018286868660405160008152602001604052604051611de09493929190612a5c565b6020604051602081039080840390855afa158015611e02573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611e7657508073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff16145b611eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eac90612b83565b60405180910390fd5b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2790612ae3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b600061203783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506117ee565b905092915050565b81548183558181111561206657818360005260206000209182019101612065919061206b565b5b505050565b61208d91905b80821115612089576000816000905550600101612071565b5090565b90565b60008135905061209f81612e06565b92915050565b6000813590506120b481612e1d565b92915050565b6000813590506120c981612e34565b92915050565b6000813590506120de81612e4b565b92915050565b6000602082840312156120f657600080fd5b600061210484828501612090565b91505092915050565b6000806040838503121561212057600080fd5b600061212e85828601612090565b925050602061213f85828601612090565b9150509250929050565b60008060006060848603121561215e57600080fd5b600061216c86828701612090565b935050602061217d86828701612090565b925050604061218e868287016120ba565b9150509250925092565b600080600080600080600060e0888a0312156121b357600080fd5b60006121c18a828b01612090565b97505060206121d28a828b01612090565b96505060406121e38a828b016120ba565b95505060606121f48a828b016120ba565b94505060806122058a828b016120cf565b93505060a06122168a828b016120a5565b92505060c06122278a828b016120a5565b91505092959891949750929550565b6000806040838503121561224957600080fd5b600061225785828601612090565b9250506020612268858286016120ba565b9150509250929050565b60006020828403121561228457600080fd5b6000612292848285016120ba565b91505092915050565b60006122a783836122b3565b60208301905092915050565b6122bc81612d59565b82525050565b6122cb81612d59565b82525050565b60006122dc82612d09565b6122e68185612d2c565b93506122f183612cf9565b8060005b83811015612322578151612309888261229b565b975061231483612d1f565b9250506001810190506122f5565b5085935050505092915050565b61233881612d6b565b82525050565b61234781612d77565b82525050565b61235e61235982612d77565b612deb565b82525050565b600061236f82612d14565b6123798185612d3d565b9350612389818560208601612db8565b61239281612df5565b840191505092915050565b60006123aa602383612d3d565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612410602683612d3d565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612476602283612d3d565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006124dc600283612d4e565b91507f19010000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b600061251c601b83612d3d565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061255c601583612d3d565b91507f4d696e74657220616c72656164792065786973747300000000000000000000006000830152602082019050919050565b600061259c601583612d3d565b91507f4d696e74657220646f6573206e6f7420657869737400000000000000000000006000830152602082019050919050565b60006125dc601e83612d3d565b91507f5065726d69747461626c653a205369676e617475726520696e76616c696400006000830152602082019050919050565b600061261c602183612d3d565b91507f536b696c6c7365743a206f6e6c792063616c6c61626c65206279206d696e746560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612682602283612d3d565b91507f5065726d69747461626c653a207370656e6465722063616e6e6f74206265203060008301527f78300000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006126e8601b83612d3d565b91507f5065726d69747461626c653a205065726d6974206578706972656400000000006000830152602082019050919050565b6000612728602083612d3d565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612768602183612d3d565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006127ce602583612d3d565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612834602483612d3d565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061289a603283612d3d565b91507f5065726d69747461626c653a20617070726f76616c2076616c7565206d75737460008301527f2062652067726561746572207468616e203000000000000000000000000000006020830152604082019050919050565b6000612900601f83612d3d565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61293c81612da1565b82525050565b61294b81612dab565b82525050565b600061295c826124cf565b9150612968828561234d565b602082019150612978828461234d565b6020820191508190509392505050565b600060208201905061299d60008301846122c2565b92915050565b600060208201905081810360008301526129bd81846122d1565b905092915050565b60006020820190506129da600083018461232f565b92915050565b60006020820190506129f5600083018461233e565b92915050565b600060c082019050612a10600083018961233e565b612a1d60208301886122c2565b612a2a60408301876122c2565b612a376060830186612933565b612a446080830185612933565b612a5160a0830184612933565b979650505050505050565b6000608082019050612a71600083018761233e565b612a7e6020830186612942565b612a8b604083018561233e565b612a98606083018461233e565b95945050505050565b60006020820190508181036000830152612abb8184612364565b905092915050565b60006020820190508181036000830152612adc8161239d565b9050919050565b60006020820190508181036000830152612afc81612403565b9050919050565b60006020820190508181036000830152612b1c81612469565b9050919050565b60006020820190508181036000830152612b3c8161250f565b9050919050565b60006020820190508181036000830152612b5c8161254f565b9050919050565b60006020820190508181036000830152612b7c8161258f565b9050919050565b60006020820190508181036000830152612b9c816125cf565b9050919050565b60006020820190508181036000830152612bbc8161260f565b9050919050565b60006020820190508181036000830152612bdc81612675565b9050919050565b60006020820190508181036000830152612bfc816126db565b9050919050565b60006020820190508181036000830152612c1c8161271b565b9050919050565b60006020820190508181036000830152612c3c8161275b565b9050919050565b60006020820190508181036000830152612c5c816127c1565b9050919050565b60006020820190508181036000830152612c7c81612827565b9050919050565b60006020820190508181036000830152612c9c8161288d565b9050919050565b60006020820190508181036000830152612cbc816128f3565b9050919050565b6000602082019050612cd86000830184612933565b92915050565b6000602082019050612cf36000830184612942565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d6482612d81565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612dd6578082015181840152602081019050612dbb565b83811115612de5576000848401525b50505050565b6000819050919050565b6000601f19601f8301169050919050565b612e0f81612d59565b8114612e1a57600080fd5b50565b612e2681612d77565b8114612e3157600080fd5b50565b612e3d81612da1565b8114612e4857600080fd5b50565b612e5481612dab565b8114612e5f57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa365627a7a72315820cefe1346edf385250160bcc32ed107168e21df6f270aeccb836772f0040fdbff6c6578706572696d656e74616cf564736f6c63430005100040

Deployed Bytecode Sourcemap

28172:2861:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28172:2861:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17697:115;;;:::i;:::-;;;;;;;;;;;;;;;;20030:198;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;18868:123;;;:::i;:::-;;;;;;;;;;;;;;;;13690:48;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;20702:441;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;29638:1033;;;;;;;;;;;;;;;;:::i;:::-;;13937:108;;;:::i;:::-;;;;;;;;;;;;;;;;18688:115;;;:::i;:::-;;;;;;;;;;;;;;;;13650:31;;;:::i;:::-;;;;;;;;;;;;;;;;21552:306;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;30732:144;;;;;;;;;;;;;;;;:::i;:::-;;28272:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;19054:158;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;4596:140;;;:::i;:::-;;3785:79;;;:::i;:::-;;;;;;;;;;;;;;;;4151:94;;;:::i;:::-;;;;;;;;;;;;;;;;17931:119;;;:::i;:::-;;;;;;;;;;;;;;;;29311:319;;;;;;;;;;;;;;;;:::i;:::-;;30884:144;;;;;;;;;;;;;;;;:::i;:::-;;28948:136;;;:::i;:::-;;;;;;;;;;;;;;;;22361:389;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;19425:204;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;29092:159;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;23045:415;;;;;;;;;;;;;;;;:::i;:::-;;19692:191;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;4891:109;;;;;;;;;;;;;;;;:::i;:::-;;28310:39;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;17697:115;17761:13;17799:5;17792:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17697:115;:::o;20030:198::-;20139:4;20161:37;20170:10;20182:7;20191:6;20161:8;:37::i;:::-;20216:4;20209:11;;20030:198;;;;:::o;18868:123::-;18939:7;18971:12;;18964:19;;18868:123;:::o;13690:48::-;;;;;;;;;;;;;;;;;:::o;20702:441::-;20843:4;20865:36;20875:6;20883:9;20894:6;20865:9;:36::i;:::-;20912:199;20935:6;20956:10;20981:119;21035:6;20981:119;;;;;;;;;;;;;;;;;:11;:19;20993:6;20981:19;;;;;;;;;;;;;;;:31;21001:10;20981:31;;;;;;;;;;;;;;;;:35;;:119;;;;;:::i;:::-;20912:8;:199::i;:::-;21131:4;21124:11;;20702:441;;;;;:::o;29638:1033::-;3997:9;:7;:9::i;:::-;3989:54;;;;;;;;;;;;;;;;;;;;;;29788:4;29768:24;;:7;:16;29776:7;29768:16;;;;;;;;;;;;;;;;;;;;;;;;;:24;;;29746:95;;;;;;;;;;;;;;;;;;;;;;29922:6;29931:1;29922:10;;29917:620;29938:12;:19;;;;29934:1;:23;29917:620;;;30011:7;29983:35;;29991:12;30004:1;29991:15;;;;;;;;;;;;;;;;;;;;;;;;;29983:35;;;29979:547;;;30046:12;30059:1;30046:15;;;;;;;;;;;;;;;;30039:22;;;;;;;;;;;30346:12;30381:1;30359:12;:19;;;;:23;30346:37;;;;;;;;;;;;;;;;;;;;;;;;;30328:12;30341:1;30328:15;;;;;;;;;;;;;;;;:55;;;;;;;;;;;;;;;;;;30463:12;:21;;;;;;;;;;;;:::i;:::-;;30505:5;;29979:547;29959:3;;;;;;;29917:620;;;;30607:7;:16;30615:7;30607:16;;;;;;;;;;;;;;;;30600:23;;;;;;;;;;;30641:22;30655:7;30641:22;;;;;;;;;;;;;;;29638:1033;:::o;13937:108::-;13979:66;13937:108;;;:::o;18688:115::-;18756:5;18786:9;;;;;;;;;;;18779:16;;18688:115;:::o;13650:31::-;;;;:::o;21552:306::-;21675:4;21697:129;21720:10;21745:7;21767:48;21804:10;21767:11;:23;21779:10;21767:23;;;;;;;;;;;;;;;:32;21791:7;21767:32;;;;;;;;;;;;;;;;:36;;:48;;;;:::i;:::-;21697:8;:129::i;:::-;21846:4;21839:11;;21552:306;;;;:::o;30732:144::-;28609:4;28586:27;;:7;:19;28594:10;28586:19;;;;;;;;;;;;;;;;;;;;;;;;;:27;;;28564:110;;;;;;;;;;;;;;;;;;;;;;30852:16;30858:2;30862:5;30852;:16::i;:::-;30732:144;;:::o;28272:29::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19054:158::-;19154:7;19186:9;:18;19196:7;19186:18;;;;;;;;;;;;;;;;19179:25;;19054:158;;;:::o;4596:140::-;3997:9;:7;:9::i;:::-;3989:54;;;;;;;;;;;;;;;;;;;;;;4695:1;4658:40;;4679:6;;;;;;;;;;;4658:40;;;;;;;;;;;;4726:1;4709:6;;:19;;;;;;;;;;;;;;;;;;4596:140::o;3785:79::-;3823:7;3850:6;;;;;;;;;;;3843:13;;3785:79;:::o;4151:94::-;4191:4;4231:6;;;;;;;;;;;4215:22;;:12;:10;:12::i;:::-;:22;;;4208:29;;4151:94;:::o;17931:119::-;17997:13;18035:7;18028:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17931:119;:::o;29311:319::-;3997:9;:7;:9::i;:::-;3989:54;;;;;;;;;;;;;;;;;;;;;;29458:4;29438:24;;:7;:16;29446:7;29438:16;;;;;;;;;;;;;;;;;;;;;;;;;:24;;;;29416:95;;;;;;;;;;;;;;;;;;;;;;29524:12;29542:7;29524:26;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;29524:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29580:4;29561:7;:16;29569:7;29561:16;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;29602:20;29614:7;29602:20;;;;;;;;;;;;;;;29311:319;:::o;30884:144::-;28609:4;28586:27;;:7;:19;28594:10;28586:19;;;;;;;;;;;;;;;;;;;;;;;;;:27;;;28564:110;;;;;;;;;;;;;;;;;;;;;;31004:16;31010:2;31014:5;31004;:16::i;:::-;30884:144;;:::o;28948:136::-;29023:16;29064:12;29057:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28948:136;:::o;22361:389::-;22489:4;22511:207;22534:10;22559:7;22581:126;22636:15;22581:126;;;;;;;;;;;;;;;;;:11;:23;22593:10;22581:23;;;;;;;;;;;;;;;:32;22605:7;22581:32;;;;;;;;;;;;;;;;:36;;:126;;;;;:::i;:::-;22511:8;:207::i;:::-;22738:4;22731:11;;22361:389;;;;:::o;19425:204::-;19537:4;19559:40;19569:10;19581:9;19592:6;19559:9;:40::i;:::-;19617:4;19610:11;;19425:204;;;;:::o;29092:159::-;29198:4;29227:7;:16;29235:7;29227:16;;;;;;;;;;;;;;;;;;;;;;;;;29220:23;;29092:159;;;:::o;23045:415::-;23259:151;23281:5;23301:7;23323:5;23343:8;23366:1;23382;23398;23259:7;:151::i;:::-;23421:31;23430:5;23437:7;23446:5;23421:8;:31::i;:::-;23045:415;;;;;;;:::o;19692:191::-;19816:7;19848:11;:18;19860:5;19848:18;;;;;;;;;;;;;;;:27;19867:7;19848:27;;;;;;;;;;;;;;;;19841:34;;19692:191;;;;:::o;4891:109::-;3997:9;:7;:9::i;:::-;3989:54;;;;;;;;;;;;;;;;;;;;;;4964:28;4983:8;4964:18;:28::i;:::-;4891:109;:::o;28310:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;26553:386::-;26712:1;26695:19;;:5;:19;;;;26687:68;;;;;;;;;;;;;;;;;;;;;;26793:1;26774:21;;:7;:21;;;;26766:68;;;;;;;;;;;;;;;;;;;;;;26877:6;26847:11;:18;26859:5;26847:18;;;;;;;;;;;;;;;:27;26866:7;26847:27;;;;;;;;;;;;;;;:36;;;;26915:7;26899:32;;26908:5;26899:32;;;26924:6;26899:32;;;;;;;;;;;;;;;26553:386;;;:::o;23950:694::-;24128:1;24110:20;;:6;:20;;;;24088:107;;;;;;;;;;;;;;;;;;;;;;24251:1;24230:23;;:9;:23;;;;24208:108;;;;;;;;;;;;;;;;;;;;;;24329:47;24350:6;24358:9;24369:6;24329:20;:47::i;:::-;24409:108;24445:6;24409:108;;;;;;;;;;;;;;;;;:9;:17;24419:6;24409:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;24389:9;:17;24399:6;24389:17;;;;;;;;;;;;;;;:128;;;;24553:32;24578:6;24553:9;:20;24563:9;24553:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;24530:9;:20;24540:9;24530:20;;;;;;;;;;;;;;;:55;;;;24618:9;24601:35;;24610:6;24601:35;;;24629:6;24601:35;;;;;;;;;;;;;;;23950:694;;;:::o;7105:192::-;7191:7;7224:1;7219;:6;;7227:12;7211:29;;;;;;;;;;;;;;;;;;;;;;;;;7251:9;7267:1;7263;:5;7251:17;;7288:1;7281:8;;;7105:192;;;;;:::o;6176:181::-;6234:7;6254:9;6270:1;6266;:5;6254:17;;6295:1;6290;:6;;6282:46;;;;;;;;;;;;;;;;;;;;;;6348:1;6341:8;;;6176:181;;;;:::o;24925:409::-;25059:1;25040:21;;:7;:21;;;;25032:65;;;;;;;;;;;;;;;;;;;;;;25110:49;25139:1;25143:7;25152:6;25110:20;:49::i;:::-;25187:24;25204:6;25187:12;;:16;;:24;;;;:::i;:::-;25172:12;:39;;;;25243:30;25266:6;25243:9;:18;25253:7;25243:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;25222:9;:18;25232:7;25222:18;;;;;;;;;;;;;;;:51;;;;25310:7;25289:37;;25306:1;25289:37;;;25319:6;25289:37;;;;;;;;;;;;;;;24925:409;;:::o;2574:98::-;2619:15;2654:10;2647:17;;2574:98;:::o;25666:449::-;25800:1;25781:21;;:7;:21;;;;25773:67;;;;;;;;;;;;;;;;;;;;;;25853:49;25874:7;25891:1;25895:6;25853:20;:49::i;:::-;25936:68;25959:6;25936:68;;;;;;;;;;;;;;;;;:9;:18;25946:7;25936:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;25915:9;:18;25925:7;25915:18;;;;;;;;;;;;;;;:89;;;;26030:24;26047:6;26030:12;;:16;;:24;;;;:::i;:::-;26015:12;:39;;;;26096:1;26070:37;;26079:7;26070:37;;;26100:6;26070:37;;;;;;;;;;;;;;;25666:449;;:::o;15314:1311::-;15567:1;15555:8;:13;:44;;;;15584:15;15572:8;:27;;15555:44;15533:121;;;;;;;;;;;;;;;;;;;;;;15708:1;15689:21;;:7;:21;;;;15667:105;;;;;;;;;;;;;;;;;;;;;;15815:1;15807:5;:9;15785:109;;;;;;;;;;;;;;;;;;;;;;15907:14;16012:16;;13979:66;16112:15;;16150:5;16178:7;16208:5;16236:12;:19;16249:5;16236:19;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;16280:8;16079:228;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;16079:228:0;;;16047:275;;;;;;15948:385;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;15948:385:0;;;15924:410;;;;;;15907:427;;16347:24;16374:89;16398:6;16419:1;16435;16451;16374:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16374:89:0;;;;;;;;16347:116;;16526:1;16498:30;;:16;:30;;;;:59;;;;;16541:16;16532:25;;:5;:25;;;16498:59;16476:139;;;;;;;;;;;;;;;;;;;;;;15314:1311;;;;;;;;;:::o;5106:229::-;5200:1;5180:22;;:8;:22;;;;5172:73;;;;;;;;;;;;;;;;;;;;;;5290:8;5261:38;;5282:6;;;;;;;;;;;5261:38;;;;;;;;;;;;5319:8;5310:6;;:17;;;;;;;;;;;;;;;;;;5106:229;:::o;27964:160::-;;;;:::o;6632:136::-;6690:7;6717:43;6721:1;6724;6717:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;6710:50;;6632:136;;;;:::o;28172:2861::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5:130:-1:-;;85:6;72:20;63:29;;97:33;124:5;97:33;;;57:78;;;;;142:130;;222:6;209:20;200:29;;234:33;261:5;234:33;;;194:78;;;;;279:130;;359:6;346:20;337:29;;371:33;398:5;371:33;;;331:78;;;;;416:126;;494:6;481:20;472:29;;506:31;531:5;506:31;;;466:76;;;;;549:241;;653:2;641:9;632:7;628:23;624:32;621:2;;;669:1;666;659:12;621:2;704:1;721:53;766:7;757:6;746:9;742:22;721:53;;;711:63;;683:97;615:175;;;;;797:366;;;918:2;906:9;897:7;893:23;889:32;886:2;;;934:1;931;924:12;886:2;969:1;986:53;1031:7;1022:6;1011:9;1007:22;986:53;;;976:63;;948:97;1076:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;;;1084:63;;1055:98;880:283;;;;;;1170:491;;;;1308:2;1296:9;1287:7;1283:23;1279:32;1276:2;;;1324:1;1321;1314:12;1276:2;1359:1;1376:53;1421:7;1412:6;1401:9;1397:22;1376:53;;;1366:63;;1338:97;1466:2;1484:53;1529:7;1520:6;1509:9;1505:22;1484:53;;;1474:63;;1445:98;1574:2;1592:53;1637:7;1628:6;1617:9;1613:22;1592:53;;;1582:63;;1553:98;1270:391;;;;;;1668:991;;;;;;;;1872:3;1860:9;1851:7;1847:23;1843:33;1840:2;;;1889:1;1886;1879:12;1840:2;1924:1;1941:53;1986:7;1977:6;1966:9;1962:22;1941:53;;;1931:63;;1903:97;2031:2;2049:53;2094:7;2085:6;2074:9;2070:22;2049:53;;;2039:63;;2010:98;2139:2;2157:53;2202:7;2193:6;2182:9;2178:22;2157:53;;;2147:63;;2118:98;2247:2;2265:53;2310:7;2301:6;2290:9;2286:22;2265:53;;;2255:63;;2226:98;2355:3;2374:51;2417:7;2408:6;2397:9;2393:22;2374:51;;;2364:61;;2334:97;2462:3;2481:53;2526:7;2517:6;2506:9;2502:22;2481:53;;;2471:63;;2441:99;2571:3;2590:53;2635:7;2626:6;2615:9;2611:22;2590:53;;;2580:63;;2550:99;1834:825;;;;;;;;;;;2666:366;;;2787:2;2775:9;2766:7;2762:23;2758:32;2755:2;;;2803:1;2800;2793:12;2755:2;2838:1;2855:53;2900:7;2891:6;2880:9;2876:22;2855:53;;;2845:63;;2817:97;2945:2;2963:53;3008:7;2999:6;2988:9;2984:22;2963:53;;;2953:63;;2924:98;2749:283;;;;;;3039:241;;3143:2;3131:9;3122:7;3118:23;3114:32;3111:2;;;3159:1;3156;3149:12;3111:2;3194:1;3211:53;3256:7;3247:6;3236:9;3232:22;3211:53;;;3201:63;;3173:97;3105:175;;;;;3288:173;;3375:46;3417:3;3409:6;3375:46;;;3450:4;3445:3;3441:14;3427:28;;3368:93;;;;;3469:103;3542:24;3560:5;3542:24;;;3537:3;3530:37;3524:48;;;3579:113;3662:24;3680:5;3662:24;;;3657:3;3650:37;3644:48;;;3730:690;;3875:54;3923:5;3875:54;;;3942:86;4021:6;4016:3;3942:86;;;3935:93;;4049:56;4099:5;4049:56;;;4125:7;4153:1;4138:260;4163:6;4160:1;4157:13;4138:260;;;4230:6;4224:13;4251:63;4310:3;4295:13;4251:63;;;4244:70;;4331:60;4384:6;4331:60;;;4321:70;;4195:203;4185:1;4182;4178:9;4173:14;;4138:260;;;4142:14;4411:3;4404:10;;3854:566;;;;;;;;4428:104;4505:21;4520:5;4505:21;;;4500:3;4493:34;4487:45;;;4539:113;4622:24;4640:5;4622:24;;;4617:3;4610:37;4604:48;;;4659:152;4760:45;4780:24;4798:5;4780:24;;;4760:45;;;4755:3;4748:58;4742:69;;;4818:347;;4930:39;4963:5;4930:39;;;4981:71;5045:6;5040:3;4981:71;;;4974:78;;5057:52;5102:6;5097:3;5090:4;5083:5;5079:16;5057:52;;;5130:29;5152:6;5130:29;;;5125:3;5121:39;5114:46;;4910:255;;;;;;5173:372;;5333:67;5397:2;5392:3;5333:67;;;5326:74;;5433:34;5429:1;5424:3;5420:11;5413:55;5502:5;5497:2;5492:3;5488:12;5481:27;5536:2;5531:3;5527:12;5520:19;;5319:226;;;;5554:375;;5714:67;5778:2;5773:3;5714:67;;;5707:74;;5814:34;5810:1;5805:3;5801:11;5794:55;5883:8;5878:2;5873:3;5869:12;5862:30;5920:2;5915:3;5911:12;5904:19;;5700:229;;;;5938:371;;6098:67;6162:2;6157:3;6098:67;;;6091:74;;6198:34;6194:1;6189:3;6185:11;6178:55;6267:4;6262:2;6257:3;6253:12;6246:26;6300:2;6295:3;6291:12;6284:19;;6084:225;;;;6318:398;;6496:84;6578:1;6573:3;6496:84;;;6489:91;;6613:66;6609:1;6604:3;6600:11;6593:87;6708:1;6703:3;6699:11;6692:18;;6482:234;;;;6725:327;;6885:67;6949:2;6944:3;6885:67;;;6878:74;;6985:29;6981:1;6976:3;6972:11;6965:50;7043:2;7038:3;7034:12;7027:19;;6871:181;;;;7061:321;;7221:67;7285:2;7280:3;7221:67;;;7214:74;;7321:23;7317:1;7312:3;7308:11;7301:44;7373:2;7368:3;7364:12;7357:19;;7207:175;;;;7391:321;;7551:67;7615:2;7610:3;7551:67;;;7544:74;;7651:23;7647:1;7642:3;7638:11;7631:44;7703:2;7698:3;7694:12;7687:19;;7537:175;;;;7721:330;;7881:67;7945:2;7940:3;7881:67;;;7874:74;;7981:32;7977:1;7972:3;7968:11;7961:53;8042:2;8037:3;8033:12;8026:19;;7867:184;;;;8060:370;;8220:67;8284:2;8279:3;8220:67;;;8213:74;;8320:34;8316:1;8311:3;8307:11;8300:55;8389:3;8384:2;8379:3;8375:12;8368:25;8421:2;8416:3;8412:12;8405:19;;8206:224;;;;8439:371;;8599:67;8663:2;8658:3;8599:67;;;8592:74;;8699:34;8695:1;8690:3;8686:11;8679:55;8768:4;8763:2;8758:3;8754:12;8747:26;8801:2;8796:3;8792:12;8785:19;;8585:225;;;;8819:327;;8979:67;9043:2;9038:3;8979:67;;;8972:74;;9079:29;9075:1;9070:3;9066:11;9059:50;9137:2;9132:3;9128:12;9121:19;;8965:181;;;;9155:332;;9315:67;9379:2;9374:3;9315:67;;;9308:74;;9415:34;9411:1;9406:3;9402:11;9395:55;9478:2;9473:3;9469:12;9462:19;;9301:186;;;;9496:370;;9656:67;9720:2;9715:3;9656:67;;;9649:74;;9756:34;9752:1;9747:3;9743:11;9736:55;9825:3;9820:2;9815:3;9811:12;9804:25;9857:2;9852:3;9848:12;9841:19;;9642:224;;;;9875:374;;10035:67;10099:2;10094:3;10035:67;;;10028:74;;10135:34;10131:1;10126:3;10122:11;10115:55;10204:7;10199:2;10194:3;10190:12;10183:29;10240:2;10235:3;10231:12;10224:19;;10021:228;;;;10258:373;;10418:67;10482:2;10477:3;10418:67;;;10411:74;;10518:34;10514:1;10509:3;10505:11;10498:55;10587:6;10582:2;10577:3;10573:12;10566:28;10622:2;10617:3;10613:12;10606:19;;10404:227;;;;10640:387;;10800:67;10864:2;10859:3;10800:67;;;10793:74;;10900:34;10896:1;10891:3;10887:11;10880:55;10969:20;10964:2;10959:3;10955:12;10948:42;11018:2;11013:3;11009:12;11002:19;;10786:241;;;;11036:331;;11196:67;11260:2;11255:3;11196:67;;;11189:74;;11296:33;11292:1;11287:3;11283:11;11276:54;11358:2;11353:3;11349:12;11342:19;;11182:185;;;;11375:113;11458:24;11476:5;11458:24;;;11453:3;11446:37;11440:48;;;11495:107;11574:22;11590:5;11574:22;;;11569:3;11562:35;11556:46;;;11609:650;;11864:148;12008:3;11864:148;;;11857:155;;12023:75;12094:3;12085:6;12023:75;;;12120:2;12115:3;12111:12;12104:19;;12134:75;12205:3;12196:6;12134:75;;;12231:2;12226:3;12222:12;12215:19;;12251:3;12244:10;;11845:414;;;;;;12266:213;;12384:2;12373:9;12369:18;12361:26;;12398:71;12466:1;12455:9;12451:17;12442:6;12398:71;;;12355:124;;;;;12486:361;;12654:2;12643:9;12639:18;12631:26;;12704:9;12698:4;12694:20;12690:1;12679:9;12675:17;12668:47;12729:108;12832:4;12823:6;12729:108;;;12721:116;;12625:222;;;;;12854:201;;12966:2;12955:9;12951:18;12943:26;;12980:65;13042:1;13031:9;13027:17;13018:6;12980:65;;;12937:118;;;;;13062:213;;13180:2;13169:9;13165:18;13157:26;;13194:71;13262:1;13251:9;13247:17;13238:6;13194:71;;;13151:124;;;;;13282:771;;13540:3;13529:9;13525:19;13517:27;;13555:71;13623:1;13612:9;13608:17;13599:6;13555:71;;;13637:72;13705:2;13694:9;13690:18;13681:6;13637:72;;;13720;13788:2;13777:9;13773:18;13764:6;13720:72;;;13803;13871:2;13860:9;13856:18;13847:6;13803:72;;;13886:73;13954:3;13943:9;13939:19;13930:6;13886:73;;;13970;14038:3;14027:9;14023:19;14014:6;13970:73;;;13511:542;;;;;;;;;;14060:539;;14258:3;14247:9;14243:19;14235:27;;14273:71;14341:1;14330:9;14326:17;14317:6;14273:71;;;14355:68;14419:2;14408:9;14404:18;14395:6;14355:68;;;14434:72;14502:2;14491:9;14487:18;14478:6;14434:72;;;14517;14585:2;14574:9;14570:18;14561:6;14517:72;;;14229:370;;;;;;;;14606:301;;14744:2;14733:9;14729:18;14721:26;;14794:9;14788:4;14784:20;14780:1;14769:9;14765:17;14758:47;14819:78;14892:4;14883:6;14819:78;;;14811:86;;14715:192;;;;;14914:407;;15105:2;15094:9;15090:18;15082:26;;15155:9;15149:4;15145:20;15141:1;15130:9;15126:17;15119:47;15180:131;15306:4;15180:131;;;15172:139;;15076:245;;;;15328:407;;15519:2;15508:9;15504:18;15496:26;;15569:9;15563:4;15559:20;15555:1;15544:9;15540:17;15533:47;15594:131;15720:4;15594:131;;;15586:139;;15490:245;;;;15742:407;;15933:2;15922:9;15918:18;15910:26;;15983:9;15977:4;15973:20;15969:1;15958:9;15954:17;15947:47;16008:131;16134:4;16008:131;;;16000:139;;15904:245;;;;16156:407;;16347:2;16336:9;16332:18;16324:26;;16397:9;16391:4;16387:20;16383:1;16372:9;16368:17;16361:47;16422:131;16548:4;16422:131;;;16414:139;;16318:245;;;;16570:407;;16761:2;16750:9;16746:18;16738:26;;16811:9;16805:4;16801:20;16797:1;16786:9;16782:17;16775:47;16836:131;16962:4;16836:131;;;16828:139;;16732:245;;;;16984:407;;17175:2;17164:9;17160:18;17152:26;;17225:9;17219:4;17215:20;17211:1;17200:9;17196:17;17189:47;17250:131;17376:4;17250:131;;;17242:139;;17146:245;;;;17398:407;;17589:2;17578:9;17574:18;17566:26;;17639:9;17633:4;17629:20;17625:1;17614:9;17610:17;17603:47;17664:131;17790:4;17664:131;;;17656:139;;17560:245;;;;17812:407;;18003:2;17992:9;17988:18;17980:26;;18053:9;18047:4;18043:20;18039:1;18028:9;18024:17;18017:47;18078:131;18204:4;18078:131;;;18070:139;;17974:245;;;;18226:407;;18417:2;18406:9;18402:18;18394:26;;18467:9;18461:4;18457:20;18453:1;18442:9;18438:17;18431:47;18492:131;18618:4;18492:131;;;18484:139;;18388:245;;;;18640:407;;18831:2;18820:9;18816:18;18808:26;;18881:9;18875:4;18871:20;18867:1;18856:9;18852:17;18845:47;18906:131;19032:4;18906:131;;;18898:139;;18802:245;;;;19054:407;;19245:2;19234:9;19230:18;19222:26;;19295:9;19289:4;19285:20;19281:1;19270:9;19266:17;19259:47;19320:131;19446:4;19320:131;;;19312:139;;19216:245;;;;19468:407;;19659:2;19648:9;19644:18;19636:26;;19709:9;19703:4;19699:20;19695:1;19684:9;19680:17;19673:47;19734:131;19860:4;19734:131;;;19726:139;;19630:245;;;;19882:407;;20073:2;20062:9;20058:18;20050:26;;20123:9;20117:4;20113:20;20109:1;20098:9;20094:17;20087:47;20148:131;20274:4;20148:131;;;20140:139;;20044:245;;;;20296:407;;20487:2;20476:9;20472:18;20464:26;;20537:9;20531:4;20527:20;20523:1;20512:9;20508:17;20501:47;20562:131;20688:4;20562:131;;;20554:139;;20458:245;;;;20710:407;;20901:2;20890:9;20886:18;20878:26;;20951:9;20945:4;20941:20;20937:1;20926:9;20922:17;20915:47;20976:131;21102:4;20976:131;;;20968:139;;20872:245;;;;21124:407;;21315:2;21304:9;21300:18;21292:26;;21365:9;21359:4;21355:20;21351:1;21340:9;21336:17;21329:47;21390:131;21516:4;21390:131;;;21382:139;;21286:245;;;;21538:213;;21656:2;21645:9;21641:18;21633:26;;21670:71;21738:1;21727:9;21723:17;21714:6;21670:71;;;21627:124;;;;;21758:205;;21872:2;21861:9;21857:18;21849:26;;21886:67;21950:1;21939:9;21935:17;21926:6;21886:67;;;21843:120;;;;;21970:151;;22056:3;22048:11;;22094:4;22089:3;22085:14;22077:22;;22042:79;;;;22128:137;;22237:5;22231:12;22221:22;;22202:63;;;;22272:122;;22366:5;22360:12;22350:22;;22331:63;;;;22401:108;;22499:4;22494:3;22490:14;22482:22;;22476:33;;;;22517:178;;22647:6;22642:3;22635:19;22684:4;22679:3;22675:14;22660:29;;22628:67;;;;;22704:163;;22819:6;22814:3;22807:19;22856:4;22851:3;22847:14;22832:29;;22800:67;;;;;22876:145;;23012:3;22997:18;;22990:31;;;;;23029:91;;23091:24;23109:5;23091:24;;;23080:35;;23074:46;;;;23127:85;;23200:5;23193:13;23186:21;23175:32;;23169:43;;;;23219:72;;23281:5;23270:16;;23264:27;;;;23298:121;;23371:42;23364:5;23360:54;23349:65;;23343:76;;;;23426:72;;23488:5;23477:16;;23471:27;;;;23505:81;;23576:4;23569:5;23565:16;23554:27;;23548:38;;;;23594:268;23659:1;23666:101;23680:6;23677:1;23674:13;23666:101;;;23756:1;23751:3;23747:11;23741:18;23737:1;23732:3;23728:11;23721:39;23702:2;23699:1;23695:10;23690:15;;23666:101;;;23782:6;23779:1;23776:13;23773:2;;;23847:1;23838:6;23833:3;23829:16;23822:27;23773:2;23643:219;;;;;23870:74;;23934:5;23923:16;;23917:27;;;;23951:97;;24039:2;24035:7;24030:2;24023:5;24019:14;24015:28;24005:38;;23999:49;;;;24056:117;24125:24;24143:5;24125:24;;;24118:5;24115:35;24105:2;;24164:1;24161;24154:12;24105:2;24099:74;;24180:117;24249:24;24267:5;24249:24;;;24242:5;24239:35;24229:2;;24288:1;24285;24278:12;24229:2;24223:74;;24304:117;24373:24;24391:5;24373:24;;;24366:5;24363:35;24353:2;;24412:1;24409;24402:12;24353:2;24347:74;;24428:113;24495:22;24511:5;24495:22;;;24488:5;24485:33;24475:2;;24532:1;24529;24522:12;24475:2;24469:72;

Swarm Source

bzzr://cefe1346edf385250160bcc32ed107168e21df6f270aeccb836772f0040fdbff
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.