ETH Price: $3,382.80 (+0.05%)
Gas: 4 Gwei

Token

ecUSD (ecUSD)
 

Overview

Max Total Supply

1,851.66171930037933658 ecUSD

Holders

39

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
weddingminister.eth
Balance
1 ecUSD

Value
$0.00
0xb78e3e8bd36b3228322d0a9d3271b5fbb7997fa3
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
SideToken

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-04
*/

// File: contracts/zeppelin/GSN/Context.sol

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

// File: contracts/zeppelin/token/ERC777/IERC777.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC777Token standard as defined in the EIP.
 *
 * This contract uses the
 * [ERC1820 registry standard](https://eips.ethereum.org/EIPS/eip-1820) to let
 * token holders and recipients react to token movements by using setting implementers
 * for the associated interfaces in said registry. See `IERC1820Registry` and
 * `ERC1820Implementer`.
 */
interface IERC777 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the smallest part of the token that is not divisible. This
     * means all token operations (creation, movement and destruction) must have
     * amounts that are a multiple of this number.
     *
     * For most token contracts, this value will equal 1.
     */
    function granularity() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * If send or receive hooks are registered for the caller and `recipient`,
     * the corresponding functions will be called with `data` and empty
     * `operatorData`. See `IERC777Sender` and `IERC777Recipient`.
     *
     * Emits a `Sent` event.
     *
     * Requirements
     *
     * - the caller must have at least `amount` tokens.
     * - `recipient` cannot be the zero address.
     * - if `recipient` is a contract, it must implement the `tokensReceived`
     * interface.
     */
    function send(address recipient, uint256 amount, bytes calldata data) external;

    /**
     * @dev Destroys `amount` tokens from the caller's account, reducing the
     * total supply.
     *
     * If a send hook is registered for the caller, the corresponding function
     * will be called with `data` and empty `operatorData`. See `IERC777Sender`.
     *
     * Emits a `Burned` event.
     *
     * Requirements
     *
     * - the caller must have at least `amount` tokens.
     */
    function burn(uint256 amount, bytes calldata data) external;

    /**
     * @dev Returns true if an account is an operator of `tokenHolder`.
     * Operators can send and burn tokens on behalf of their owners. All
     * accounts are their own operator.
     *
     * See `operatorSend` and `operatorBurn`.
     */
    function isOperatorFor(address operator, address tokenHolder) external view returns (bool);

    /**
     * @dev Make an account an operator of the caller.
     *
     * See `isOperatorFor`.
     *
     * Emits an `AuthorizedOperator` event.
     *
     * Requirements
     *
     * - `operator` cannot be calling address.
     */
    function authorizeOperator(address operator) external;

    /**
     * @dev Make an account an operator of the caller.
     *
     * See `isOperatorFor` and `defaultOperators`.
     *
     * Emits a `RevokedOperator` event.
     *
     * Requirements
     *
     * - `operator` cannot be calling address.
     */
    function revokeOperator(address operator) external;

    /**
     * @dev Returns the list of default operators. These accounts are operators
     * for all token holders, even if `authorizeOperator` was never called on
     * them.
     *
     * This list is immutable, but individual holders may revoke these via
     * `revokeOperator`, in which case `isOperatorFor` will return false.
     */
    function defaultOperators() external view returns (address[] memory);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient`. The caller must
     * be an operator of `sender`.
     *
     * If send or receive hooks are registered for `sender` and `recipient`,
     * the corresponding functions will be called with `data` and
     * `operatorData`. See `IERC777Sender` and `IERC777Recipient`.
     *
     * Emits a `Sent` event.
     *
     * Requirements
     *
     * - `sender` cannot be the zero address.
     * - `sender` must have at least `amount` tokens.
     * - the caller must be an operator for `sender`.
     * - `recipient` cannot be the zero address.
     * - if `recipient` is a contract, it must implement the `tokensReceived`
     * interface.
     */
    function operatorSend(
        address sender,
        address recipient,
        uint256 amount,
        bytes calldata data,
        bytes calldata operatorData
    ) external;

    /**
     * @dev Destoys `amount` tokens from `account`, reducing the total supply.
     * The caller must be an operator of `account`.
     *
     * If a send hook is registered for `account`, the corresponding function
     * will be called with `data` and `operatorData`. See `IERC777Sender`.
     *
     * Emits a `Burned` event.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     * - the caller must be an operator for `account`.
     */
    function operatorBurn(
        address account,
        uint256 amount,
        bytes calldata data,
        bytes calldata operatorData
    ) external;

    event Sent(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256 amount,
        bytes data,
        bytes operatorData
    );

    event Minted(address indexed operator, address indexed to, uint256 amount, bytes data, bytes operatorData);

    event Burned(address indexed operator, address indexed from, uint256 amount, bytes data, bytes operatorData);

    event AuthorizedOperator(address indexed operator, address indexed tokenHolder);

    event RevokedOperator(address indexed operator, address indexed tokenHolder);
}

// File: contracts/zeppelin/token/ERC777/IERC777Recipient.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC777TokensRecipient standard as defined in the EIP.
 *
 * Accounts can be notified of `IERC777` tokens being sent to them by having a
 * contract implement this interface (contract holders can be their own
 * implementer) and registering it on the
 * [ERC1820 global registry](https://eips.ethereum.org/EIPS/eip-1820).
 *
 * See `IERC1820Registry` and `ERC1820Implementer`.
 */
interface IERC777Recipient {
    /**
     * @dev Called by an `IERC777` token contract whenever tokens are being
     * moved or created into a registered account (`to`). The type of operation
     * is conveyed by `from` being the zero address or not.
     *
     * This call occurs _after_ the token contract's state is updated, so
     * `IERC777.balanceOf`, etc., can be used to query the post-operation state.
     *
     * This function may revert to prevent the operation from being executed.
     */
    function tokensReceived(
        address operator,
        address from,
        address to,
        uint amount,
        bytes calldata userData,
        bytes calldata operatorData
    ) external;
}

// File: contracts/zeppelin/token/ERC777/IERC777Sender.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC777TokensSender standard as defined in the EIP.
 *
 * `IERC777` Token holders can be notified of operations performed on their
 * tokens by having a contract implement this interface (contract holders can be
 *  their own implementer) and registering it on the
 * [ERC1820 global registry](https://eips.ethereum.org/EIPS/eip-1820).
 *
 * See `IERC1820Registry` and `ERC1820Implementer`.
 */
interface IERC777Sender {
    /**
     * @dev Called by an `IERC777` token contract whenever a registered holder's
     * (`from`) tokens are about to be moved or destroyed. The type of operation
     * is conveyed by `to` being the zero address or not.
     *
     * This call occurs _before_ the token contract's state is updated, so
     * `IERC777.balanceOf`, etc., can be used to query the pre-operation state.
     *
     * This function may revert to prevent the operation from being executed.
     */
    function tokensToSend(
        address operator,
        address from,
        address to,
        uint amount,
        bytes calldata userData,
        bytes calldata operatorData
    ) external;
}

// File: contracts/zeppelin/token/ERC20/IERC20.sol

pragma solidity ^0.5.0;

/**
 * @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);
}

// File: contracts/zeppelin/math/SafeMath.sol

pragma solidity ^0.5.0;

/**
 * @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;
    }
}

// File: contracts/zeppelin/utils/Address.sol

pragma solidity ^0.5.0;

/**
 * @dev Collection of functions related to the address type,
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }
}

// File: contracts/zeppelin/introspection/IERC1820Registry.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the global ERC1820 Registry, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1820[EIP]. Accounts may register
 * implementers for interfaces in this registry, as well as query support.
 *
 * Implementers may be shared by multiple accounts, and can also implement more
 * than a single interface for each account. Contracts can implement interfaces
 * for themselves, but externally-owned accounts (EOA) must delegate this to a
 * contract.
 *
 * {IERC165} interfaces can also be queried via the registry.
 *
 * For an in-depth explanation and source code analysis, see the EIP text.
 */
interface IERC1820Registry {
    /**
     * @dev Sets `newManager` as the manager for `account`. A manager of an
     * account is able to set interface implementers for it.
     *
     * By default, each account is its own manager. Passing a value of `0x0` in
     * `newManager` will reset the manager to this initial state.
     *
     * Emits a {ManagerChanged} event.
     *
     * Requirements:
     *
     * - the caller must be the current manager for `account`.
     */
    function setManager(address account, address newManager) external;

    /**
     * @dev Returns the manager for `account`.
     *
     * See {setManager}.
     */
    function getManager(address account) external view returns (address);

    /**
     * @dev Sets the `implementer` contract as `account`'s implementer for
     * `interfaceHash`.
     *
     * `account` being the zero address is an alias for the caller's address.
     * The zero address can also be used in `implementer` to remove an old one.
     *
     * See {interfaceHash} to learn how these are created.
     *
     * Emits an {InterfaceImplementerSet} event.
     *
     * Requirements:
     *
     * - the caller must be the current manager for `account`.
     * - `interfaceHash` must not be an {IERC165} interface id (i.e. it must not
     * end in 28 zeroes).
     * - `implementer` must implement {IERC1820Implementer} and return true when
     * queried for support, unless `implementer` is the caller. See
     * {IERC1820Implementer-canImplementInterfaceForAddress}.
     */
    function setInterfaceImplementer(address account, bytes32 interfaceHash, address implementer) external;

    /**
     * @dev Returns the implementer of `interfaceHash` for `account`. If no such
     * implementer is registered, returns the zero address.
     *
     * If `interfaceHash` is an {IERC165} interface id (i.e. it ends with 28
     * zeroes), `account` will be queried for support of it.
     *
     * `account` being the zero address is an alias for the caller's address.
     */
    function getInterfaceImplementer(address account, bytes32 interfaceHash) external view returns (address);

    /**
     * @dev Returns the interface hash for an `interfaceName`, as defined in the
     * corresponding
     * https://eips.ethereum.org/EIPS/eip-1820#interface-name[section of the EIP].
     */
    function interfaceHash(string calldata interfaceName) external pure returns (bytes32);

    /**
     *  @notice Updates the cache with whether the contract implements an ERC165 interface or not.
     *  @param account Address of the contract for which to update the cache.
     *  @param interfaceId ERC165 interface for which to update the cache.
     */
    function updateERC165Cache(address account, bytes4 interfaceId) external;

    /**
     *  @notice Checks whether a contract implements an ERC165 interface or not.
     *  If the result is not cached a direct lookup on the contract address is performed.
     *  If the result is not cached or the cached value is out-of-date, the cache MUST be updated manually by calling
     *  {updateERC165Cache} with the contract address.
     *  @param account Address of the contract to check.
     *  @param interfaceId ERC165 interface to check.
     *  @return True if `account` implements `interfaceId`, false otherwise.
     */
    function implementsERC165Interface(address account, bytes4 interfaceId) external view returns (bool);

    /**
     *  @notice Checks whether a contract implements an ERC165 interface or not without using nor updating the cache.
     *  @param account Address of the contract to check.
     *  @param interfaceId ERC165 interface to check.
     *  @return True if `account` implements `interfaceId`, false otherwise.
     */
    function implementsERC165InterfaceNoCache(address account, bytes4 interfaceId) external view returns (bool);

    event InterfaceImplementerSet(address indexed account, bytes32 indexed interfaceHash, address indexed implementer);

    event ManagerChanged(address indexed account, address indexed newManager);
}

// File: contracts/zeppelin/token/ERC777/ERC777.sol

pragma solidity ^0.5.0;









/**
 * @dev Implementation of the {IERC777} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * Support for ERC20 is included in this contract, as specified by the EIP: both
 * the ERC777 and ERC20 interfaces can be safely used when interacting with it.
 * Both {IERC777-Sent} and {IERC20-Transfer} events are emitted on token
 * movements.
 *
 * Additionally, the {IERC777-granularity} value is hard-coded to `1`, meaning that there
 * are no special restrictions in the amount of tokens that created, moved, or
 * destroyed. This makes integration with ERC20 applications seamless.
 */
contract ERC777 is Context, IERC777, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    IERC1820Registry constant private _erc1820 = IERC1820Registry(0x1820a4B7618BdE71Dce8cdc73aAB6C95905faD24);

    mapping(address => uint256) private _balances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    // We inline the result of the following hashes because Solidity doesn't resolve them at compile time.
    // See https://github.com/ethereum/solidity/issues/4024.

    // keccak256("ERC777TokensSender")
    bytes32 constant private TOKENS_SENDER_INTERFACE_HASH =
        0x29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe895;

    // keccak256("ERC777TokensRecipient")
    bytes32 constant private TOKENS_RECIPIENT_INTERFACE_HASH =
        0xb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b;

    // This isn't ever read from - it's only used to respond to the defaultOperators query.
    address[] private _defaultOperatorsArray;

    // Immutable, but accounts may revoke them (tracked in __revokedDefaultOperators).
    mapping(address => bool) private _defaultOperators;

    // For each account, a mapping of its operators and revoked default operators.
    mapping(address => mapping(address => bool)) private _operators;
    mapping(address => mapping(address => bool)) private _revokedDefaultOperators;

    // ERC20-allowances
    mapping (address => mapping (address => uint256)) private _allowances;

    /**
     * @dev `defaultOperators` may be an empty array.
     */
    constructor(
        string memory name,
        string memory symbol,
        address[] memory defaultOperators
    ) public {
        _name = name;
        _symbol = symbol;

        _defaultOperatorsArray = defaultOperators;
        for (uint256 i = 0; i < _defaultOperatorsArray.length; i++) {
            _defaultOperators[_defaultOperatorsArray[i]] = true;
        }

        // register interfaces
        _erc1820.setInterfaceImplementer(address(this), keccak256("ERC777Token"), address(this));
        _erc1820.setInterfaceImplementer(address(this), keccak256("ERC20Token"), address(this));
    }

    /**
     * @dev See {IERC777-name}.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC777-symbol}.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {ERC20Detailed-decimals}.
     *
     * Always returns 18, as per the
     * [ERC777 EIP](https://eips.ethereum.org/EIPS/eip-777#backward-compatibility).
     */
    function decimals() public pure returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC777-granularity}.
     *
     * This implementation always returns `1`.
     */
    function granularity() public view returns (uint256) {
        return 1;
    }

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

    /**
     * @dev Returns the amount of tokens owned by an account (`tokenHolder`).
     */
    function balanceOf(address tokenHolder) public view returns (uint256) {
        return _balances[tokenHolder];
    }

    /**
     * @dev See {IERC777-send}.
     *
     * Also emits a {Transfer} event for ERC20 compatibility.
     */
    function send(address recipient, uint256 amount, bytes calldata data) external {
        _send(_msgSender(), _msgSender(), recipient, amount, data, "", true);
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Unlike `send`, `recipient` is _not_ required to implement the {IERC777Recipient}
     * interface if it is a contract.
     *
     * Also emits a {Sent} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool) {
        require(recipient != address(0), "ERC777: transfer to zero address");

        address from = _msgSender();

        _callTokensToSend(from, from, recipient, amount, "", "");

        _move(from, from, recipient, amount, "", "");

        _callTokensReceived(from, from, recipient, amount, "", "", false);

        return true;
    }

    /**
     * @dev See {IERC777-burn}.
     *
     * Also emits a {Transfer} event for ERC20 compatibility.
     */
    function burn(uint256 amount, bytes calldata data) external {
        _burn(_msgSender(), _msgSender(), amount, data, "");
    }

    /**
     * @dev See {IERC777-isOperatorFor}.
     */
    function isOperatorFor(
        address operator,
        address tokenHolder
    ) public view returns (bool) {
        return operator == tokenHolder ||
            (_defaultOperators[operator] && !_revokedDefaultOperators[tokenHolder][operator]) ||
            _operators[tokenHolder][operator];
    }

    /**
     * @dev See {IERC777-authorizeOperator}.
     */
    function authorizeOperator(address operator) external {
        require(_msgSender() != operator, "ERC777: authorizing self as operator");

        if (_defaultOperators[operator]) {
            delete _revokedDefaultOperators[_msgSender()][operator];
        } else {
            _operators[_msgSender()][operator] = true;
        }

        emit AuthorizedOperator(operator, _msgSender());
    }

    /**
     * @dev See {IERC777-revokeOperator}.
     */
    function revokeOperator(address operator) external {
        require(operator != _msgSender(), "ERC777: revoking self as operator");

        if (_defaultOperators[operator]) {
            _revokedDefaultOperators[_msgSender()][operator] = true;
        } else {
            delete _operators[_msgSender()][operator];
        }

        emit RevokedOperator(operator, _msgSender());
    }

    /**
     * @dev See {IERC777-defaultOperators}.
     */
    function defaultOperators() public view returns (address[] memory) {
        return _defaultOperatorsArray;
    }

    /**
     * @dev See {IERC777-operatorSend}.
     *
     * Emits {Sent} and {Transfer} events.
     */
    function operatorSend(
        address sender,
        address recipient,
        uint256 amount,
        bytes calldata data,
        bytes calldata operatorData
    )
    external
    {
        require(isOperatorFor(_msgSender(), sender), "ERC777: caller is not an operator");
        _send(_msgSender(), sender, recipient, amount, data, operatorData, true);
    }

    /**
     * @dev See {IERC777-operatorBurn}.
     *
     * Emits {Burned} and {Transfer} events.
     */
    function operatorBurn(address account, uint256 amount, bytes calldata data, bytes calldata operatorData) external {
        require(isOperatorFor(_msgSender(), account), "ERC777: caller is not an operator");
        _burn(_msgSender(), account, amount, data, operatorData);
    }

    /**
     * @dev See {IERC20-allowance}.
     *
     * Note that operator and allowance concepts are orthogonal: operators may
     * not have allowance, and accounts with allowance may not be operators
     * themselves.
     */
    function allowance(address holder, address spender) public view returns (uint256) {
        return _allowances[holder][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Note that accounts cannot have allowance issued by their operators.
     */
    function approve(address spender, uint256 value) external returns (bool) {
        address holder = _msgSender();
        _approve(holder, spender, value);
        return true;
    }

   /**
    * @dev See {IERC20-transferFrom}.
    *
    * Note that operator and allowance concepts are orthogonal: operators cannot
    * call `transferFrom` (unless they have allowance), and accounts with
    * allowance cannot call `operatorSend` (unless they are operators).
    *
    * Emits {Sent}, {Transfer} and {Approval} events.
    */
    function transferFrom(address holder, address recipient, uint256 amount) external returns (bool) {
        require(recipient != address(0), "ERC777: transfer to zero address");
        require(holder != address(0), "ERC777: transfer from zero address");

        address spender = _msgSender();

        _callTokensToSend(spender, holder, recipient, amount, "", "");

        _move(spender, holder, recipient, amount, "", "");
        _approve(holder, spender, _allowances[holder][spender].sub(amount, "ERC777: transfer amount exceeds allowance"));

        _callTokensReceived(spender, holder, recipient, amount, "", "", false);

        return true;
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * If a send hook is registered for `account`, the corresponding function
     * will be called with `operator`, `data` and `operatorData`.
     *
     * See {IERC777Sender} and {IERC777Recipient}.
     *
     * Emits {Minted} and {Transfer} events.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - if `account` is a contract, it must implement the {IERC777Recipient}
     * interface.
     */
    function _mint(
        address operator,
        address account,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData
    )
    internal
    {
        require(account != address(0), "ERC777: mint to zero address");

        // Update state variables
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);

        _callTokensReceived(operator, address(0), account, amount, userData, operatorData, true);

        emit Minted(operator, account, amount, userData, operatorData);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Send tokens
     * @param operator address operator requesting the transfer
     * @param from address token holder address
     * @param to address recipient address
     * @param amount uint256 amount of tokens to transfer
     * @param userData bytes extra information provided by the token holder (if any)
     * @param operatorData bytes extra information provided by the operator (if any)
     * @param requireReceptionAck if true, contract recipients are required to implement ERC777TokensRecipient
     */
    function _send(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData,
        bool requireReceptionAck
    )
        internal
    {
        require(from != address(0), "ERC777: send from zero address");
        require(to != address(0), "ERC777: send to zero address");

        _callTokensToSend(operator, from, to, amount, userData, operatorData);

        _move(operator, from, to, amount, userData, operatorData);

        _callTokensReceived(operator, from, to, amount, userData, operatorData, requireReceptionAck);
    }

    /**
     * @dev Burn tokens
     * @param operator address operator requesting the operation
     * @param from address token holder address
     * @param amount uint256 amount of tokens to burn
     * @param data bytes extra information provided by the token holder
     * @param operatorData bytes extra information provided by the operator (if any)
     */
    function _burn(
        address operator,
        address from,
        uint256 amount,
        bytes memory data,
        bytes memory operatorData
    )
        internal
    {
        require(from != address(0), "ERC777: burn from zero address");

        _callTokensToSend(operator, from, address(0), amount, data, operatorData);

        // Update state variables
        _balances[from] = _balances[from].sub(amount, "ERC777: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);

        emit Burned(operator, from, amount, data, operatorData);
        emit Transfer(from, address(0), amount);
    }

    function _move(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData
    )
        internal
    {
        _balances[from] = _balances[from].sub(amount, "ERC777: transfer amount exceeds balance");
        _balances[to] = _balances[to].add(amount);

        emit Sent(operator, from, to, amount, userData, operatorData);
        emit Transfer(from, to, amount);
    }

    function _approve(address holder, address spender, uint256 value) internal {
        // TODO: restore this require statement if this function becomes internal, or is called at a new callsite. It is
        // currently unnecessary.
        //require(holder != address(0), "ERC777: approve from the zero address");
        require(spender != address(0), "ERC777: approve to zero address");

        _allowances[holder][spender] = value;
        emit Approval(holder, spender, value);
    }

    /**
     * @dev Call from.tokensToSend() if the interface is registered
     * @param operator address operator requesting the transfer
     * @param from address token holder address
     * @param to address recipient address
     * @param amount uint256 amount of tokens to transfer
     * @param userData bytes extra information provided by the token holder (if any)
     * @param operatorData bytes extra information provided by the operator (if any)
     */
    function _callTokensToSend(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData
    )
        internal
    {
        address implementer = _erc1820.getInterfaceImplementer(from, TOKENS_SENDER_INTERFACE_HASH);
        if (implementer != address(0)) {
            IERC777Sender(implementer).tokensToSend(operator, from, to, amount, userData, operatorData);
        }
    }

    /**
     * @dev Call to.tokensReceived() if the interface is registered. Reverts if the recipient is a contract but
     * tokensReceived() was not registered for the recipient
     * @param operator address operator requesting the transfer
     * @param from address token holder address
     * @param to address recipient address
     * @param amount uint256 amount of tokens to transfer
     * @param userData bytes extra information provided by the token holder (if any)
     * @param operatorData bytes extra information provided by the operator (if any)
     * @param requireReceptionAck if true, contract recipients are required to implement ERC777TokensRecipient
     */
    function _callTokensReceived(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData,
        bool requireReceptionAck
    )
        private
    {
         address implementer = _erc1820.getInterfaceImplementer(to, TOKENS_RECIPIENT_INTERFACE_HASH);
        if (implementer != address(0)) {
            IERC777Recipient(implementer).tokensReceived(operator, from, to, amount, userData, operatorData);
        } else if (requireReceptionAck) {
            require(!to.isContract(), "ERC777: token recipient contract has no implementer for ERC777TokensRecipient");
        }
    }
}

// File: contracts/IERC677Receiver.sol

pragma solidity ^0.5.0;

interface IERC677Receiver {
  function onTokenTransfer(address _sender, uint _value, bytes calldata _data) external;
}

// File: contracts/ISideToken.sol

pragma solidity ^0.5.0;

interface ISideToken {

    function name() external view returns (string memory);

    function symbol() external view returns (string memory);

    function decimals() external pure returns (uint8);

    function granularity() external view returns (uint256);

    function burn(uint256 amount, bytes calldata data) external;

    function mint(address account, uint256 amount, bytes calldata userData, bytes calldata operatorData) external;

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function send(address recipient, uint256 amount, bytes calldata data) external;

    function transfer(address recipient, uint256 amount) external returns (bool);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
}

// File: contracts/SideToken.sol

pragma solidity ^0.5.0;




contract SideToken is ISideToken, ERC777 {
    using Address for address;
    using SafeMath for uint256;

    address public minter;
    uint256 private _granularity;

    event Transfer(address,address,uint256,bytes);

    constructor(string memory _tokenName, string memory _tokenSymbol, address _minterAddr, uint256 _newGranularity)
    ERC777(_tokenName, _tokenSymbol, new address[](0)) public {
        require(_minterAddr != address(0), "SideToken: Minter address is null");
        require(_newGranularity >= 1, "SideToken: Granularity must be equal or bigger than 1");
        minter = _minterAddr;
        _granularity = _newGranularity;
    }

    modifier onlyMinter() {
        require(_msgSender() == minter, "SideToken: Caller is not the minter");
        _;
    }

    function mint(
        address account,
        uint256 amount,
        bytes calldata userData,
        bytes calldata operatorData
    )
    external onlyMinter
    {
        _mint(_msgSender(), account, amount, userData, operatorData);
    }

    /**
    * @dev ERC677 transfer token with additional data if the recipient is a contact.
    * @param recipient The address to transfer to.
    * @param amount The amount to be transferred.
    * @param data The extra data to be passed to the receiving contract.
    */
    function transferAndCall(address recipient, uint amount, bytes calldata data)
        external returns (bool success)
    {
        address from = _msgSender();

        _send(from, from, recipient, amount, data, "", false);
        emit Transfer(from, recipient, amount, data);
        IERC677Receiver(recipient).onTokenTransfer(from, amount, data);
        return true;
    }

    function granularity() public view returns (uint256) {
        return _granularity;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"address","name":"_minterAddr","type":"address"},{"internalType":"uint256","name":"_newGranularity","type":"uint256"}],"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":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"tokenHolder","type":"address"}],"name":"AuthorizedOperator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"tokenHolder","type":"address"}],"name":"RevokedOperator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"Sent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"","type":"bytes"}],"name":"Transfer","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":[{"internalType":"address","name":"holder","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"authorizeOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"tokenHolder","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"defaultOperators","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"granularity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"tokenHolder","type":"address"}],"name":"isOperatorFor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"userData","type":"bytes"},{"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"minter","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":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"operatorBurn","outputs":[],"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"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"operatorSend","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"revokeOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"send","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"holder","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"}]

60806040523480156200001157600080fd5b5060405162002a7e38038062002a7e833981810160405260808110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b506040818152602083810151938201516000845281840190925287519395509093508692869291620001d09160029186019062000447565b508151620001e690600390602085019062000447565b508051620001fc906004906020840190620004cc565b5060005b6004548110156200025c57600160056000600484815481106200021f57fe5b6000918252602080832091909101546001600160a01b031683528201929092526040019020805460ff191691151591909117905560010162000200565b50604080516a22a9219b9b9baa37b5b2b760a91b8152815190819003600b0181206329965a1d60e01b82523060048301819052602483019190915260448201529051731820a4b7618bde71dce8cdc73aab6c95905fad24916329965a1d91606480830192600092919082900301818387803b158015620002db57600080fd5b505af1158015620002f0573d6000803e3d6000fd5b5050604080516922a92199182a37b5b2b760b11b8152815190819003600a0181206329965a1d60e01b82523060048301819052602483019190915260448201529051731820a4b7618bde71dce8cdc73aab6c95905fad2493506329965a1d9250606480830192600092919082900301818387803b1580156200037157600080fd5b505af115801562000386573d6000803e3d6000fd5b50505050506001600160a01b03841615159150620003d890505760405162461bcd60e51b815260040180806020018281038252602181526020018062002a286021913960400191505060405180910390fd5b60018110156200041a5760405162461bcd60e51b815260040180806020018281038252603581526020018062002a496035913960400191505060405180910390fd5b600980546001600160a01b0319166001600160a01b039390931692909217909155600a5550620005799050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200048a57805160ff1916838001178555620004ba565b82800160010185558215620004ba579182015b82811115620004ba5782518255916020019190600101906200049d565b50620004c892915062000532565b5090565b82805482825590600052602060002090810192821562000524579160200282015b828111156200052457825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620004ed565b50620004c892915062000552565b6200054f91905b80821115620004c8576000815560010162000539565b90565b6200054f91905b80821115620004c85780546001600160a01b031916815560010162000559565b61249f80620005896000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063d95b63711161007c578063d95b637114610551578063dcdc7dd01461057f578063dd62ed3e14610652578063fad8b32a14610680578063fc673c4f146106a6578063fe9d93031461077957610137565b806370a082311461044e578063959b8c3f1461047457806395d89b411461049a5780639bd9bbc6146104a2578063a9059cbb1461052557610137565b806323b872dd116100ff57806323b872dd1461028f578063313ce567146102c55780634000aea0146102e3578063556f0dc71461036657806362ad1b831461036e57610137565b806306e485381461013c57806306fdde03146101945780630754617214610211578063095ea7b31461023557806318160ddd14610275575b600080fd5b6101446107ee565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610180578181015183820152602001610168565b505050509050019250505060405180910390f35b61019c610850565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d65781810151838201526020016101be565b50505050905090810190601f1680156102035780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102196108da565b604080516001600160a01b039092168252519081900360200190f35b6102616004803603604081101561024b57600080fd5b506001600160a01b0381351690602001356108e9565b604080519115158252519081900360200190f35b61027d61090b565b60408051918252519081900360200190f35b610261600480360360608110156102a557600080fd5b506001600160a01b03813581169160208101359091169060400135610911565b6102cd610aaa565b6040805160ff9092168252519081900360200190f35b610261600480360360608110156102f957600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561032857600080fd5b82018360208201111561033a57600080fd5b803590602001918460018302840111600160201b8311171561035b57600080fd5b509092509050610aaf565b61027d610c62565b61044c600480360360a081101561038457600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b8111156103be57600080fd5b8201836020820111156103d057600080fd5b803590602001918460018302840111600160201b831117156103f157600080fd5b919390929091602081019035600160201b81111561040e57600080fd5b82018360208201111561042057600080fd5b803590602001918460018302840111600160201b8311171561044157600080fd5b509092509050610c68565b005b61027d6004803603602081101561046457600080fd5b50356001600160a01b0316610d3e565b61044c6004803603602081101561048a57600080fd5b50356001600160a01b0316610d59565b61019c610ea5565b61044c600480360360608110156104b857600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156104e757600080fd5b8201836020820111156104f957600080fd5b803590602001918460018302840111600160201b8311171561051a57600080fd5b509092509050610f06565b6102616004803603604081101561053b57600080fd5b506001600160a01b038135169060200135610f6e565b6102616004803603604081101561056757600080fd5b506001600160a01b038135811691602001351661105d565b61044c6004803603608081101561059557600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156105c457600080fd5b8201836020820111156105d657600080fd5b803590602001918460018302840111600160201b831117156105f757600080fd5b919390929091602081019035600160201b81111561061457600080fd5b82018360208201111561062657600080fd5b803590602001918460018302840111600160201b8311171561064757600080fd5b5090925090506110ff565b61027d6004803603604081101561066857600080fd5b506001600160a01b03813581169160200135166111dd565b61044c6004803603602081101561069657600080fd5b50356001600160a01b0316611208565b61044c600480360360808110156106bc57600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156106eb57600080fd5b8201836020820111156106fd57600080fd5b803590602001918460018302840111600160201b8311171561071e57600080fd5b919390929091602081019035600160201b81111561073b57600080fd5b82018360208201111561074d57600080fd5b803590602001918460018302840111600160201b8311171561076e57600080fd5b509092509050611354565b61044c6004803603604081101561078f57600080fd5b81359190810190604081016020820135600160201b8111156107b057600080fd5b8201836020820111156107c257600080fd5b803590602001918460018302840111600160201b831117156107e357600080fd5b50909250905061141d565b6060600480548060200260200160405190810160405280929190818152602001828054801561084657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610828575b5050505050905090565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156108465780601f106108ae57610100808354040283529160200191610846565b820191906000526020600020905b8154815290600101906020018083116108bc57509395945050505050565b6009546001600160a01b031681565b6000806108f4611480565b9050610901818585611484565b5060019392505050565b60015490565b60006001600160a01b03831661096e576040805162461bcd60e51b815260206004820181905260248201527f4552433737373a207472616e7366657220746f207a65726f2061646472657373604482015290519081900360640190fd5b6001600160a01b0384166109b35760405162461bcd60e51b81526004018080602001828103825260228152602001806124056022913960400191505060405180910390fd5b60006109bd611480565b90506109eb818686866040518060200160405280600081525060405180602001604052806000815250611541565b610a17818686866040518060200160405280600081525060405180602001604052806000815250611788565b610a718582610a6c866040518060600160405280602981526020016123dc602991396001600160a01b03808c166000908152600860209081526040808320938b1683529290522054919063ffffffff6119a116565b611484565b610a9f8186868660405180602001604052806000815250604051806020016040528060008152506000611a38565b506001949350505050565b601290565b600080610aba611480565b9050610b0e8182888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250604080516020810190915281815293509150611cd89050565b7fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16818787878760405180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b03168152602001848152602001806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039850909650505050505050a1856001600160a01b031663a4c0ed36828787876040518563ffffffff1660e01b815260040180856001600160a01b03166001600160a01b03168152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b158015610c3e57600080fd5b505af1158015610c52573d6000803e3d6000fd5b5060019998505050505050505050565b600a5490565b610c79610c73611480565b8861105d565b610cb45760405162461bcd60e51b81526004018080602001828103825260218152602001806124276021913960400191505060405180910390fd5b610d35610cbf611480565b88888888888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8c018190048102820181019092528a815292508a915089908190840183828082843760009201919091525060019250611cd8915050565b50505050505050565b6001600160a01b031660009081526020819052604090205490565b806001600160a01b0316610d6b611480565b6001600160a01b03161415610db15760405162461bcd60e51b81526004018080602001828103825260248152602001806123276024913960400191505060405180910390fd5b6001600160a01b03811660009081526005602052604090205460ff1615610e145760076000610dde611480565b6001600160a01b03908116825260208083019390935260409182016000908120918516815292529020805460ff19169055610e5b565b600160066000610e22611480565b6001600160a01b03908116825260208083019390935260409182016000908120918616815292529020805460ff19169115159190911790555b610e63611480565b6001600160a01b0316816001600160a01b03167ff4caeb2d6ca8932a215a353d0703c326ec2d81fc68170f320eb2ab49e9df61f960405160405180910390a350565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108465780601f106108ae57610100808354040283529160200191610846565b610f68610f11611480565b610f19611480565b868686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052506040805160208101909152908152925060019150611cd89050565b50505050565b60006001600160a01b038316610fcb576040805162461bcd60e51b815260206004820181905260248201527f4552433737373a207472616e7366657220746f207a65726f2061646472657373604482015290519081900360640190fd5b6000610fd5611480565b9050611003818286866040518060200160405280600081525060405180602001604052806000815250611541565b61102f818286866040518060200160405280600081525060405180602001604052806000815250611788565b6109018182868660405180602001604052806000815250604051806020016040528060008152506000611a38565b6000816001600160a01b0316836001600160a01b031614806110c857506001600160a01b03831660009081526005602052604090205460ff1680156110c857506001600160a01b0380831660009081526007602090815260408083209387168352929052205460ff16155b806110f857506001600160a01b0380831660009081526006602090815260408083209387168352929052205460ff165b9392505050565b6009546001600160a01b0316611113611480565b6001600160a01b0316146111585760405162461bcd60e51b81526004018080602001828103825260238152602001806123b96023913960400191505060405180910390fd5b6111d5611163611480565b878787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8b018190048102820181019092528981529250899150889081908401838280828437600092019190915250611db992505050565b505050505050565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b611210611480565b6001600160a01b0316816001600160a01b031614156112605760405162461bcd60e51b815260040180806020018281038252602181526020018061234b6021913960400191505060405180910390fd5b6001600160a01b03811660009081526005602052604090205460ff16156112cc5760016007600061128f611480565b6001600160a01b03908116825260208083019390935260409182016000908120918616815292529020805460ff191691151591909117905561130a565b600660006112d8611480565b6001600160a01b03908116825260208083019390935260409182016000908120918516815292529020805460ff191690555b611312611480565b6001600160a01b0316816001600160a01b03167f50546e66e5f44d728365dc3908c63bc5cfeeab470722c1677e3073a6ac294aa160405160405180910390a350565b61136561135f611480565b8761105d565b6113a05760405162461bcd60e51b81526004018080602001828103825260218152602001806124276021913960400191505060405180910390fd5b6111d56113ab611480565b878787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8b018190048102820181019092528981529250899150889081908401838280828437600092019190915250611fe492505050565b61147b611428611480565b611430611480565b8585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525060408051602081019091529081529250611fe4915050565b505050565b3390565b6001600160a01b0382166114df576040805162461bcd60e51b815260206004820152601f60248201527f4552433737373a20617070726f766520746f207a65726f206164647265737300604482015290519081900360640190fd5b6001600160a01b03808416600081815260086020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6040805163555ddc6560e11b81526001600160a01b03871660048201527f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe89560248201529051600091731820a4b7618bde71dce8cdc73aab6c95905fad249163aabbb8ca91604480820192602092909190829003018186803b1580156115c557600080fd5b505afa1580156115d9573d6000803e3d6000fd5b505050506040513d60208110156115ef57600080fd5b505190506001600160a01b03811615610d3557806001600160a01b03166375ab97828888888888886040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156116b557818101518382015260200161169d565b50505050905090810190601f1680156116e25780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b838110156117155781810151838201526020016116fd565b50505050905090810190601f1680156117425780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b15801561176757600080fd5b505af115801561177b573d6000803e3d6000fd5b5050505050505050505050565b6117cb83604051806060016040528060278152602001612300602791396001600160a01b038816600090815260208190526040902054919063ffffffff6119a116565b6001600160a01b038087166000908152602081905260408082209390935590861681522054611800908463ffffffff61222716565b600080866001600160a01b03166001600160a01b0316815260200190815260200160002081905550836001600160a01b0316856001600160a01b0316876001600160a01b03167f06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc82614677987868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156118b1578181015183820152602001611899565b50505050905090810190601f1680156118de5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b838110156119115781810151838201526020016118f9565b50505050905090810190601f16801561193e5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a4836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050565b60008184841115611a305760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156119f55781810151838201526020016119dd565b50505050905090810190601f168015611a225780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6040805163555ddc6560e11b81526001600160a01b03871660048201527fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b60248201529051600091731820a4b7618bde71dce8cdc73aab6c95905fad249163aabbb8ca91604480820192602092909190829003018186803b158015611abc57600080fd5b505afa158015611ad0573d6000803e3d6000fd5b505050506040513d6020811015611ae657600080fd5b505190506001600160a01b03811615611c7a57806001600160a01b03166223de298989898989896040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611bab578181015183820152602001611b93565b50505050905090810190601f168015611bd85780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611c0b578181015183820152602001611bf3565b50505050905090810190601f168015611c385780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b158015611c5d57600080fd5b505af1158015611c71573d6000803e3d6000fd5b50505050611cce565b8115611cce57611c92866001600160a01b0316612281565b15611cce5760405162461bcd60e51b815260040180806020018281038252604d81526020018061236c604d913960600191505060405180910390fd5b5050505050505050565b6001600160a01b038616611d33576040805162461bcd60e51b815260206004820152601e60248201527f4552433737373a2073656e642066726f6d207a65726f20616464726573730000604482015290519081900360640190fd5b6001600160a01b038516611d8e576040805162461bcd60e51b815260206004820152601c60248201527f4552433737373a2073656e6420746f207a65726f206164647265737300000000604482015290519081900360640190fd5b611d9c878787878787611541565b611daa878787878787611788565b610d3587878787878787611a38565b6001600160a01b038416611e14576040805162461bcd60e51b815260206004820152601c60248201527f4552433737373a206d696e7420746f207a65726f206164647265737300000000604482015290519081900360640190fd5b600154611e27908463ffffffff61222716565b6001556001600160a01b038416600090815260208190526040902054611e53908463ffffffff61222716565b6001600160a01b038516600090815260208190526040812091909155611e80908690868686866001611a38565b836001600160a01b0316856001600160a01b03167f2fe5be0146f74c5bce36c0b80911af6c7d86ff27e89d5cfa61fc681327954e5d858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611eff578181015183820152602001611ee7565b50505050905090810190601f168015611f2c5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611f5f578181015183820152602001611f47565b50505050905090810190601f168015611f8c5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805184815290516001600160a01b038616916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b6001600160a01b03841661203f576040805162461bcd60e51b815260206004820152601e60248201527f4552433737373a206275726e2066726f6d207a65726f20616464726573730000604482015290519081900360640190fd5b61204e85856000868686611541565b61209183604051806060016040528060238152602001612448602391396001600160a01b038716600090815260208190526040902054919063ffffffff6119a116565b6001600160a01b0385166000908152602081905260409020556001546120bd908463ffffffff6122bd16565b600181905550836001600160a01b0316856001600160a01b03167fa78a9be3a7b862d26933ad85fb11d80ef66b8f972d7cbba06621d583943a4098858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101561214257818101518382015260200161212a565b50505050905090810190601f16801561216f5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b838110156121a257818101518382015260200161218a565b50505050905090810190601f1680156121cf5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805184815290516000916001600160a01b038716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b6000828201838110156110f8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906122b557508115155b949350505050565b60006110f883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506119a156fe4552433737373a207472616e7366657220616d6f756e7420657863656564732062616c616e63654552433737373a20617574686f72697a696e672073656c66206173206f70657261746f724552433737373a207265766f6b696e672073656c66206173206f70657261746f724552433737373a20746f6b656e20726563697069656e7420636f6e747261637420686173206e6f20696d706c656d656e74657220666f7220455243373737546f6b656e73526563697069656e7453696465546f6b656e3a2043616c6c6572206973206e6f7420746865206d696e7465724552433737373a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654552433737373a207472616e736665722066726f6d207a65726f20616464726573734552433737373a2063616c6c6572206973206e6f7420616e206f70657261746f724552433737373a206275726e20616d6f756e7420657863656564732062616c616e6365a265627a7a7231582076b0e2c04b4ff21c973866ca12697a9f82c9171a6dfd3616318d38a49232f1fe64736f6c6343000511003253696465546f6b656e3a204d696e7465722061646472657373206973206e756c6c53696465546f6b656e3a204772616e756c6172697479206d75737420626520657175616c206f7220626967676572207468616e2031000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000009719d81c506c95f92caf970851b22afc88aee57400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000005656355534400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056563555344000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063d95b63711161007c578063d95b637114610551578063dcdc7dd01461057f578063dd62ed3e14610652578063fad8b32a14610680578063fc673c4f146106a6578063fe9d93031461077957610137565b806370a082311461044e578063959b8c3f1461047457806395d89b411461049a5780639bd9bbc6146104a2578063a9059cbb1461052557610137565b806323b872dd116100ff57806323b872dd1461028f578063313ce567146102c55780634000aea0146102e3578063556f0dc71461036657806362ad1b831461036e57610137565b806306e485381461013c57806306fdde03146101945780630754617214610211578063095ea7b31461023557806318160ddd14610275575b600080fd5b6101446107ee565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610180578181015183820152602001610168565b505050509050019250505060405180910390f35b61019c610850565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d65781810151838201526020016101be565b50505050905090810190601f1680156102035780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102196108da565b604080516001600160a01b039092168252519081900360200190f35b6102616004803603604081101561024b57600080fd5b506001600160a01b0381351690602001356108e9565b604080519115158252519081900360200190f35b61027d61090b565b60408051918252519081900360200190f35b610261600480360360608110156102a557600080fd5b506001600160a01b03813581169160208101359091169060400135610911565b6102cd610aaa565b6040805160ff9092168252519081900360200190f35b610261600480360360608110156102f957600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561032857600080fd5b82018360208201111561033a57600080fd5b803590602001918460018302840111600160201b8311171561035b57600080fd5b509092509050610aaf565b61027d610c62565b61044c600480360360a081101561038457600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b8111156103be57600080fd5b8201836020820111156103d057600080fd5b803590602001918460018302840111600160201b831117156103f157600080fd5b919390929091602081019035600160201b81111561040e57600080fd5b82018360208201111561042057600080fd5b803590602001918460018302840111600160201b8311171561044157600080fd5b509092509050610c68565b005b61027d6004803603602081101561046457600080fd5b50356001600160a01b0316610d3e565b61044c6004803603602081101561048a57600080fd5b50356001600160a01b0316610d59565b61019c610ea5565b61044c600480360360608110156104b857600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156104e757600080fd5b8201836020820111156104f957600080fd5b803590602001918460018302840111600160201b8311171561051a57600080fd5b509092509050610f06565b6102616004803603604081101561053b57600080fd5b506001600160a01b038135169060200135610f6e565b6102616004803603604081101561056757600080fd5b506001600160a01b038135811691602001351661105d565b61044c6004803603608081101561059557600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156105c457600080fd5b8201836020820111156105d657600080fd5b803590602001918460018302840111600160201b831117156105f757600080fd5b919390929091602081019035600160201b81111561061457600080fd5b82018360208201111561062657600080fd5b803590602001918460018302840111600160201b8311171561064757600080fd5b5090925090506110ff565b61027d6004803603604081101561066857600080fd5b506001600160a01b03813581169160200135166111dd565b61044c6004803603602081101561069657600080fd5b50356001600160a01b0316611208565b61044c600480360360808110156106bc57600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156106eb57600080fd5b8201836020820111156106fd57600080fd5b803590602001918460018302840111600160201b8311171561071e57600080fd5b919390929091602081019035600160201b81111561073b57600080fd5b82018360208201111561074d57600080fd5b803590602001918460018302840111600160201b8311171561076e57600080fd5b509092509050611354565b61044c6004803603604081101561078f57600080fd5b81359190810190604081016020820135600160201b8111156107b057600080fd5b8201836020820111156107c257600080fd5b803590602001918460018302840111600160201b831117156107e357600080fd5b50909250905061141d565b6060600480548060200260200160405190810160405280929190818152602001828054801561084657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610828575b5050505050905090565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156108465780601f106108ae57610100808354040283529160200191610846565b820191906000526020600020905b8154815290600101906020018083116108bc57509395945050505050565b6009546001600160a01b031681565b6000806108f4611480565b9050610901818585611484565b5060019392505050565b60015490565b60006001600160a01b03831661096e576040805162461bcd60e51b815260206004820181905260248201527f4552433737373a207472616e7366657220746f207a65726f2061646472657373604482015290519081900360640190fd5b6001600160a01b0384166109b35760405162461bcd60e51b81526004018080602001828103825260228152602001806124056022913960400191505060405180910390fd5b60006109bd611480565b90506109eb818686866040518060200160405280600081525060405180602001604052806000815250611541565b610a17818686866040518060200160405280600081525060405180602001604052806000815250611788565b610a718582610a6c866040518060600160405280602981526020016123dc602991396001600160a01b03808c166000908152600860209081526040808320938b1683529290522054919063ffffffff6119a116565b611484565b610a9f8186868660405180602001604052806000815250604051806020016040528060008152506000611a38565b506001949350505050565b601290565b600080610aba611480565b9050610b0e8182888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250604080516020810190915281815293509150611cd89050565b7fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16818787878760405180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b03168152602001848152602001806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039850909650505050505050a1856001600160a01b031663a4c0ed36828787876040518563ffffffff1660e01b815260040180856001600160a01b03166001600160a01b03168152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b158015610c3e57600080fd5b505af1158015610c52573d6000803e3d6000fd5b5060019998505050505050505050565b600a5490565b610c79610c73611480565b8861105d565b610cb45760405162461bcd60e51b81526004018080602001828103825260218152602001806124276021913960400191505060405180910390fd5b610d35610cbf611480565b88888888888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8c018190048102820181019092528a815292508a915089908190840183828082843760009201919091525060019250611cd8915050565b50505050505050565b6001600160a01b031660009081526020819052604090205490565b806001600160a01b0316610d6b611480565b6001600160a01b03161415610db15760405162461bcd60e51b81526004018080602001828103825260248152602001806123276024913960400191505060405180910390fd5b6001600160a01b03811660009081526005602052604090205460ff1615610e145760076000610dde611480565b6001600160a01b03908116825260208083019390935260409182016000908120918516815292529020805460ff19169055610e5b565b600160066000610e22611480565b6001600160a01b03908116825260208083019390935260409182016000908120918616815292529020805460ff19169115159190911790555b610e63611480565b6001600160a01b0316816001600160a01b03167ff4caeb2d6ca8932a215a353d0703c326ec2d81fc68170f320eb2ab49e9df61f960405160405180910390a350565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108465780601f106108ae57610100808354040283529160200191610846565b610f68610f11611480565b610f19611480565b868686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052506040805160208101909152908152925060019150611cd89050565b50505050565b60006001600160a01b038316610fcb576040805162461bcd60e51b815260206004820181905260248201527f4552433737373a207472616e7366657220746f207a65726f2061646472657373604482015290519081900360640190fd5b6000610fd5611480565b9050611003818286866040518060200160405280600081525060405180602001604052806000815250611541565b61102f818286866040518060200160405280600081525060405180602001604052806000815250611788565b6109018182868660405180602001604052806000815250604051806020016040528060008152506000611a38565b6000816001600160a01b0316836001600160a01b031614806110c857506001600160a01b03831660009081526005602052604090205460ff1680156110c857506001600160a01b0380831660009081526007602090815260408083209387168352929052205460ff16155b806110f857506001600160a01b0380831660009081526006602090815260408083209387168352929052205460ff165b9392505050565b6009546001600160a01b0316611113611480565b6001600160a01b0316146111585760405162461bcd60e51b81526004018080602001828103825260238152602001806123b96023913960400191505060405180910390fd5b6111d5611163611480565b878787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8b018190048102820181019092528981529250899150889081908401838280828437600092019190915250611db992505050565b505050505050565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b611210611480565b6001600160a01b0316816001600160a01b031614156112605760405162461bcd60e51b815260040180806020018281038252602181526020018061234b6021913960400191505060405180910390fd5b6001600160a01b03811660009081526005602052604090205460ff16156112cc5760016007600061128f611480565b6001600160a01b03908116825260208083019390935260409182016000908120918616815292529020805460ff191691151591909117905561130a565b600660006112d8611480565b6001600160a01b03908116825260208083019390935260409182016000908120918516815292529020805460ff191690555b611312611480565b6001600160a01b0316816001600160a01b03167f50546e66e5f44d728365dc3908c63bc5cfeeab470722c1677e3073a6ac294aa160405160405180910390a350565b61136561135f611480565b8761105d565b6113a05760405162461bcd60e51b81526004018080602001828103825260218152602001806124276021913960400191505060405180910390fd5b6111d56113ab611480565b878787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8b018190048102820181019092528981529250899150889081908401838280828437600092019190915250611fe492505050565b61147b611428611480565b611430611480565b8585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525060408051602081019091529081529250611fe4915050565b505050565b3390565b6001600160a01b0382166114df576040805162461bcd60e51b815260206004820152601f60248201527f4552433737373a20617070726f766520746f207a65726f206164647265737300604482015290519081900360640190fd5b6001600160a01b03808416600081815260086020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6040805163555ddc6560e11b81526001600160a01b03871660048201527f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe89560248201529051600091731820a4b7618bde71dce8cdc73aab6c95905fad249163aabbb8ca91604480820192602092909190829003018186803b1580156115c557600080fd5b505afa1580156115d9573d6000803e3d6000fd5b505050506040513d60208110156115ef57600080fd5b505190506001600160a01b03811615610d3557806001600160a01b03166375ab97828888888888886040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156116b557818101518382015260200161169d565b50505050905090810190601f1680156116e25780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b838110156117155781810151838201526020016116fd565b50505050905090810190601f1680156117425780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b15801561176757600080fd5b505af115801561177b573d6000803e3d6000fd5b5050505050505050505050565b6117cb83604051806060016040528060278152602001612300602791396001600160a01b038816600090815260208190526040902054919063ffffffff6119a116565b6001600160a01b038087166000908152602081905260408082209390935590861681522054611800908463ffffffff61222716565b600080866001600160a01b03166001600160a01b0316815260200190815260200160002081905550836001600160a01b0316856001600160a01b0316876001600160a01b03167f06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc82614677987868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156118b1578181015183820152602001611899565b50505050905090810190601f1680156118de5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b838110156119115781810151838201526020016118f9565b50505050905090810190601f16801561193e5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a4836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050565b60008184841115611a305760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156119f55781810151838201526020016119dd565b50505050905090810190601f168015611a225780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6040805163555ddc6560e11b81526001600160a01b03871660048201527fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b60248201529051600091731820a4b7618bde71dce8cdc73aab6c95905fad249163aabbb8ca91604480820192602092909190829003018186803b158015611abc57600080fd5b505afa158015611ad0573d6000803e3d6000fd5b505050506040513d6020811015611ae657600080fd5b505190506001600160a01b03811615611c7a57806001600160a01b03166223de298989898989896040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611bab578181015183820152602001611b93565b50505050905090810190601f168015611bd85780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611c0b578181015183820152602001611bf3565b50505050905090810190601f168015611c385780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b158015611c5d57600080fd5b505af1158015611c71573d6000803e3d6000fd5b50505050611cce565b8115611cce57611c92866001600160a01b0316612281565b15611cce5760405162461bcd60e51b815260040180806020018281038252604d81526020018061236c604d913960600191505060405180910390fd5b5050505050505050565b6001600160a01b038616611d33576040805162461bcd60e51b815260206004820152601e60248201527f4552433737373a2073656e642066726f6d207a65726f20616464726573730000604482015290519081900360640190fd5b6001600160a01b038516611d8e576040805162461bcd60e51b815260206004820152601c60248201527f4552433737373a2073656e6420746f207a65726f206164647265737300000000604482015290519081900360640190fd5b611d9c878787878787611541565b611daa878787878787611788565b610d3587878787878787611a38565b6001600160a01b038416611e14576040805162461bcd60e51b815260206004820152601c60248201527f4552433737373a206d696e7420746f207a65726f206164647265737300000000604482015290519081900360640190fd5b600154611e27908463ffffffff61222716565b6001556001600160a01b038416600090815260208190526040902054611e53908463ffffffff61222716565b6001600160a01b038516600090815260208190526040812091909155611e80908690868686866001611a38565b836001600160a01b0316856001600160a01b03167f2fe5be0146f74c5bce36c0b80911af6c7d86ff27e89d5cfa61fc681327954e5d858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611eff578181015183820152602001611ee7565b50505050905090810190601f168015611f2c5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611f5f578181015183820152602001611f47565b50505050905090810190601f168015611f8c5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805184815290516001600160a01b038616916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b6001600160a01b03841661203f576040805162461bcd60e51b815260206004820152601e60248201527f4552433737373a206275726e2066726f6d207a65726f20616464726573730000604482015290519081900360640190fd5b61204e85856000868686611541565b61209183604051806060016040528060238152602001612448602391396001600160a01b038716600090815260208190526040902054919063ffffffff6119a116565b6001600160a01b0385166000908152602081905260409020556001546120bd908463ffffffff6122bd16565b600181905550836001600160a01b0316856001600160a01b03167fa78a9be3a7b862d26933ad85fb11d80ef66b8f972d7cbba06621d583943a4098858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101561214257818101518382015260200161212a565b50505050905090810190601f16801561216f5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b838110156121a257818101518382015260200161218a565b50505050905090810190601f1680156121cf5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805184815290516000916001600160a01b038716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b6000828201838110156110f8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906122b557508115155b949350505050565b60006110f883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506119a156fe4552433737373a207472616e7366657220616d6f756e7420657863656564732062616c616e63654552433737373a20617574686f72697a696e672073656c66206173206f70657261746f724552433737373a207265766f6b696e672073656c66206173206f70657261746f724552433737373a20746f6b656e20726563697069656e7420636f6e747261637420686173206e6f20696d706c656d656e74657220666f7220455243373737546f6b656e73526563697069656e7453696465546f6b656e3a2043616c6c6572206973206e6f7420746865206d696e7465724552433737373a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654552433737373a207472616e736665722066726f6d207a65726f20616464726573734552433737373a2063616c6c6572206973206e6f7420616e206f70657261746f724552433737373a206275726e20616d6f756e7420657863656564732062616c616e6365a265627a7a7231582076b0e2c04b4ff21c973866ca12697a9f82c9171a6dfd3616318d38a49232f1fe64736f6c63430005110032

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000009719d81c506c95f92caf970851b22afc88aee57400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000005656355534400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056563555344000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): ecUSD
Arg [1] : _tokenSymbol (string): ecUSD
Arg [2] : _minterAddr (address): 0x9719D81c506c95f92caF970851b22AFc88aee574
Arg [3] : _newGranularity (uint256): 1

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000009719d81c506c95f92caf970851b22afc88aee574
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 6563555344000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 6563555344000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42478:1838:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42478:1838:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31508:115;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;31508:115:0;;;;;;;;;;;;;;;;;27794:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;27794:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42593:21;;;:::i;:::-;;;;-1:-1:-1;;;;;42593:21:0;;;;;;;;;;;;;;33051:186;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;33051:186:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;28569:91;;;:::i;:::-;;;;;;;;;;;;;;;;33599:671;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;33599:671:0;;;;;;;;;;;;;;;;;:::i;28225:76::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43826:386;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;43826:386:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;43826:386:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;43826:386:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;43826:386:0;;-1:-1:-1;43826:386:0;-1:-1:-1;43826:386:0;:::i;44220:91::-;;;:::i;31742:377::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;31742:377:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;31742:377:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;31742:377:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;31742:377:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;31742:377:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;31742:377:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;31742:377:0;;-1:-1:-1;31742:377:0;-1:-1:-1;31742:377:0;:::i;:::-;;28765:118;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28765:118:0;-1:-1:-1;;;;;28765:118:0;;:::i;30563:407::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30563:407:0;-1:-1:-1;;;;;30563:407:0;;:::i;27938:87::-;;;:::i;29013:166::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;29013:166:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;29013:166:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;29013:166:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;29013:166:0;;-1:-1:-1;29013:166:0;-1:-1:-1;29013:166:0;:::i;29420:432::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;29420:432:0;;;;;;;;:::i;30180:311::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30180:311:0;;;;;;;;;;:::i;43285:253::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;43285:253:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;43285:253:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;43285:253:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;43285:253:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;43285:253:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;43285:253:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;43285:253:0;;-1:-1:-1;43285:253:0;-1:-1:-1;43285:253:0;:::i;32770:136::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;32770:136:0;;;;;;;;;;:::i;31039:398::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31039:398:0;-1:-1:-1;;;;;31039:398:0;;:::i;32240:282::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;32240:282:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;32240:282:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;32240:282:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;32240:282:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;32240:282:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;32240:282:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;32240:282:0;;-1:-1:-1;32240:282:0;-1:-1:-1;32240:282:0;:::i;29982:130::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29982:130:0;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;29982:130:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;29982:130:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;29982:130:0;;-1:-1:-1;29982:130:0;-1:-1:-1;29982:130:0;:::i;31508:115::-;31557:16;31593:22;31586:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31586:29:0;;;;;;;;;;;;;;;;;;;;;;;31508:115;:::o;27794:83::-;27864:5;27857:12;;;;;;;-1:-1:-1;;27857:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27831:13;;27857:12;;27864:5;;27857:12;;27864:5;27857:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27857:12:0;;27794:83;-1:-1:-1;;;;;27794:83:0:o;42593:21::-;;;-1:-1:-1;;;;;42593:21:0;;:::o;33051:186::-;33118:4;33135:14;33152:12;:10;:12::i;:::-;33135:29;;33175:32;33184:6;33192:7;33201:5;33175:8;:32::i;:::-;-1:-1:-1;33225:4:0;;33051:186;-1:-1:-1;;;33051:186:0:o;28569:91::-;28640:12;;28569:91;:::o;33599:671::-;33690:4;-1:-1:-1;;;;;33715:23:0;;33707:68;;;;;-1:-1:-1;;;33707:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33794:20:0;;33786:67;;;;-1:-1:-1;;;33786:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33866:15;33884:12;:10;:12::i;:::-;33866:30;;33909:61;33927:7;33936:6;33944:9;33955:6;33909:61;;;;;;;;;;;;;;;;;;;;;;;;:17;:61::i;:::-;33983:49;33989:7;33998:6;34006:9;34017:6;33983:49;;;;;;;;;;;;;;;;;;;;;;;;:5;:49::i;:::-;34043:112;34052:6;34060:7;34069:85;34102:6;34069:85;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34069:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;:85;;:32;:85;:::i;:::-;34043:8;:112::i;:::-;34168:70;34188:7;34197:6;34205:9;34216:6;34168:70;;;;;;;;;;;;;;;;;;;;;;;;34232:5;34168:19;:70::i;:::-;-1:-1:-1;34258:4:0;;33599:671;-1:-1:-1;;;;33599:671:0:o;28225:76::-;28291:2;28225:76;:::o;43826:386::-;43931:12;43961;43976;:10;:12::i;:::-;43961:27;;44001:53;44007:4;44013;44019:9;44030:6;44038:4;;44001:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;-1:-1;44001:53:0;;;;;;;;;;;;;-1:-1:-1;99:1;-1:-1;44001:5:0;;-1:-1:-1;44001:53:0:i;:::-;44070:39;44079:4;44085:9;44096:6;44104:4;;44070:39;;;;-1:-1:-1;;;;;44070:39:0;-1:-1:-1;;;;;44070:39:0;;;;;;-1:-1:-1;;;;;44070:39:0;-1:-1:-1;;;;;44070:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;44070:39:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;44070:39:0;;;;-1:-1:-1;44070:39:0;;-1:-1:-1;;;;;;;44070:39:0;44136:9;-1:-1:-1;;;;;44120:42:0;;44163:4;44169:6;44177:4;;44120:62;;;;;;;;;;;;;-1:-1:-1;;;;;44120:62:0;-1:-1:-1;;;;;44120:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;44120:62:0;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44120:62:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;44200:4:0;;43826:386;-1:-1:-1;;;;;;;;;43826:386:0:o;44220:91::-;44291:12;;44220:91;:::o;31742:377::-;31955:35;31969:12;:10;:12::i;:::-;31983:6;31955:13;:35::i;:::-;31947:81;;;;-1:-1:-1;;;31947:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32039:72;32045:12;:10;:12::i;:::-;32059:6;32067:9;32078:6;32086:4;;32039:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;32039:72:0;;;;137:4:-1;32039:72:0;;;;;;;;;;;;;;;;;;-1:-1:-1;32092:12:0;;-1:-1:-1;32092:12:0;;;;32039:72;;32092:12;;;;32039:72;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;32106:4:0;;-1:-1:-1;32039:5:0;;-1:-1:-1;;32039:72:0:i;:::-;31742:377;;;;;;;:::o;28765:118::-;-1:-1:-1;;;;;28853:22:0;28826:7;28853:22;;;;;;;;;;;;28765:118::o;30563:407::-;30652:8;-1:-1:-1;;;;;30636:24:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;30636:24:0;;;30628:73;;;;-1:-1:-1;;;30628:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30718:27:0;;;;;;:17;:27;;;;;;;;30714:189;;;30769:24;:38;30794:12;:10;:12::i;:::-;-1:-1:-1;;;;;30769:38:0;;;;;;;;;;;;;;;;;-1:-1:-1;30769:38:0;;;:48;;;;;;;;;30762:55;;-1:-1:-1;;30762:55:0;;;30714:189;;;30887:4;30850:10;:24;30861:12;:10;:12::i;:::-;-1:-1:-1;;;;;30850:24:0;;;;;;;;;;;;;;;;;-1:-1:-1;30850:24:0;;;:34;;;;;;;;;:41;;-1:-1:-1;;30850:41:0;;;;;;;;;;30714:189;30949:12;:10;:12::i;:::-;-1:-1:-1;;;;;30920:42:0;30939:8;-1:-1:-1;;;;;30920:42:0;;;;;;;;;;;30563:407;:::o;27938:87::-;28010:7;28003:14;;;;;;;;-1:-1:-1;;28003:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27977:13;;28003:14;;28010:7;;28003:14;;28010:7;28003:14;;;;;;;;;;;;;;;;;;;;;;;;29013:166;29103:68;29109:12;:10;:12::i;:::-;29123;:10;:12::i;:::-;29137:9;29148:6;29156:4;;29103:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;-1:-1;29103:68:0;;;;;;;;;;;;;-1:-1:-1;29166:4:0;;-1:-1:-1;29103:5:0;;-1:-1:-1;29103:68:0:i;:::-;29013:166;;;;:::o;29420:432::-;29491:4;-1:-1:-1;;;;;29516:23:0;;29508:68;;;;;-1:-1:-1;;;29508:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29589:12;29604;:10;:12::i;:::-;29589:27;;29629:56;29647:4;29653;29659:9;29670:6;29629:56;;;;;;;;;;;;;;;;;;;;;;;;:17;:56::i;:::-;29698:44;29704:4;29710;29716:9;29727:6;29698:44;;;;;;;;;;;;;;;;;;;;;;;;:5;:44::i;:::-;29755:65;29775:4;29781;29787:9;29798:6;29755:65;;;;;;;;;;;;;;;;;;;;;;;;29814:5;29755:19;:65::i;30180:311::-;30288:4;30324:11;-1:-1:-1;;;;;30312:23:0;:8;-1:-1:-1;;;;;30312:23:0;;:121;;;-1:-1:-1;;;;;;30353:27:0;;;;;;:17;:27;;;;;;;;:79;;;;-1:-1:-1;;;;;;30385:37:0;;;;;;;:24;:37;;;;;;;;:47;;;;;;;;;;;;30384:48;30353:79;30312:171;;;-1:-1:-1;;;;;;30450:23:0;;;;;;;:10;:23;;;;;;;;:33;;;;;;;;;;;;30312:171;30305:178;30180:311;-1:-1:-1;;;30180:311:0:o;43285:253::-;43211:6;;-1:-1:-1;;;;;43211:6:0;43195:12;:10;:12::i;:::-;-1:-1:-1;;;;;43195:22:0;;43187:70;;;;-1:-1:-1;;;43187:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43470:60;43476:12;:10;:12::i;:::-;43490:7;43499:6;43507:8;;43470:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;43470:60:0;;;;137:4:-1;43470:60:0;;;;;;;;;;;;;;;;;;-1:-1:-1;43517:12:0;;-1:-1:-1;43517:12:0;;;;43470:60;;43517:12;;;;43470:60;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;43470:5:0;;-1:-1:-1;;;43470:60:0:i;:::-;43285:253;;;;;;:::o;32770:136::-;-1:-1:-1;;;;;32870:19:0;;;32843:7;32870:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;32770:136::o;31039:398::-;31121:12;:10;:12::i;:::-;-1:-1:-1;;;;;31109:24:0;:8;-1:-1:-1;;;;;31109:24:0;;;31101:70;;;;-1:-1:-1;;;31101:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31188:27:0;;;;;;:17;:27;;;;;;;;31184:189;;;31283:4;31232:24;:38;31257:12;:10;:12::i;:::-;-1:-1:-1;;;;;31232:38:0;;;;;;;;;;;;;;;;;-1:-1:-1;31232:38:0;;;:48;;;;;;;;;:55;;-1:-1:-1;;31232:55:0;;;;;;;;;;31184:189;;;31327:10;:24;31338:12;:10;:12::i;:::-;-1:-1:-1;;;;;31327:24:0;;;;;;;;;;;;;;;;;-1:-1:-1;31327:24:0;;;:34;;;;;;;;;31320:41;;-1:-1:-1;;31320:41:0;;;31184:189;31416:12;:10;:12::i;:::-;-1:-1:-1;;;;;31390:39:0;31406:8;-1:-1:-1;;;;;31390:39:0;;;;;;;;;;;31039:398;:::o;32240:282::-;32373:36;32387:12;:10;:12::i;:::-;32401:7;32373:13;:36::i;:::-;32365:82;;;;-1:-1:-1;;;32365:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32458:56;32464:12;:10;:12::i;:::-;32478:7;32487:6;32495:4;;32458:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;32458:56:0;;;;137:4:-1;32458:56:0;;;;;;;;;;;;;;;;;;-1:-1:-1;32501:12:0;;-1:-1:-1;32501:12:0;;;;32458:56;;32501:12;;;;32458:56;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;32458:5:0;;-1:-1:-1;;;32458:56:0:i;29982:130::-;30053:51;30059:12;:10;:12::i;:::-;30073;:10;:12::i;:::-;30087:6;30095:4;;30053:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;-1:-1;30053:51:0;;;;;;;;;;;;;-1:-1:-1;30053:5:0;;-1:-1:-1;;30053:51:0:i;:::-;29982:130;;;:::o;853:98::-;933:10;853:98;:::o;38229:496::-;-1:-1:-1;;;;;38563:21:0;;38555:65;;;;;-1:-1:-1;;;38555:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38633:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;:36;;;38685:32;;;;;;;;;;;;;;;;;38229:496;;;:::o;39209:489::-;39463:68;;;-1:-1:-1;;;39463:68:0;;-1:-1:-1;;;;;39463:68:0;;;;;;26148:66;39463:68;;;;;;39441:19;;25670:42;;39463:32;;:68;;;;;;;;;;;;;;;25670:42;39463:68;;;5:2:-1;;;;30:1;27;20:12;5:2;39463:68:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39463:68:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39463:68:0;;-1:-1:-1;;;;;;39546:25:0;;;39542:149;;39602:11;-1:-1:-1;;;;;39588:39:0;;39628:8;39638:4;39644:2;39648:6;39656:8;39666:12;39588:91;;;;;;;;;;;;;-1:-1:-1;;;;;39588:91:0;-1:-1:-1;;;;;39588:91:0;;;;;;-1:-1:-1;;;;;39588:91:0;-1:-1:-1;;;;;39588:91:0;;;;;;-1:-1:-1;;;;;39588:91:0;-1:-1:-1;;;;;39588:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;39588:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39588:91:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;39588:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39588:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39588:91:0;;;;39209:489;;;;;;;:::o;37737:484::-;37975:70;37995:6;37975:70;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37975:15:0;;:9;:15;;;;;;;;;;;;:70;;:19;:70;:::i;:::-;-1:-1:-1;;;;;37957:15:0;;;:9;:15;;;;;;;;;;;:88;;;;38072:13;;;;;;;:25;;38090:6;38072:25;:17;:25;:::i;:::-;38056:9;:13;38066:2;-1:-1:-1;;;;;38056:13:0;-1:-1:-1;;;;;38056:13:0;;;;;;;;;;;;:41;;;;38136:2;-1:-1:-1;;;;;38115:56:0;38130:4;-1:-1:-1;;;;;38115:56:0;38120:8;-1:-1:-1;;;;;38115:56:0;;38140:6;38148:8;38158:12;38115:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;38115:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38115:56:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;38115:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38202:2;-1:-1:-1;;;;;38187:26:0;38196:4;-1:-1:-1;;;;;38187:26:0;;38206:6;38187:26;;;;;;;;;;;;;;;;;;37737:484;;;;;;:::o;14711:192::-;14797:7;14833:12;14825:6;;;;14817:29;;;;-1:-1:-1;;;14817:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;14817:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;14869:5:0;;;14711:192::o;40400:696::-;40691:69;;;-1:-1:-1;;;40691:69:0;;-1:-1:-1;;;;;40691:69:0;;;;;;26334:66;40691:69;;;;;;40669:19;;25670:42;;40691:32;;:69;;;;;;;;;;;;;;;25670:42;40691:69;;;5:2:-1;;;;30:1;27;20:12;5:2;40691:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40691:69:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40691:69:0;;-1:-1:-1;;;;;;40775:25:0;;;40771:318;;40834:11;-1:-1:-1;;;;;40817:44:0;;40862:8;40872:4;40878:2;40882:6;40890:8;40900:12;40817:96;;;;;;;;;;;;;-1:-1:-1;;;;;40817:96:0;-1:-1:-1;;;;;40817:96:0;;;;;;-1:-1:-1;;;;;40817:96:0;-1:-1:-1;;;;;40817:96:0;;;;;;-1:-1:-1;;;;;40817:96:0;-1:-1:-1;;;;;40817:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;40817:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40817:96:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;40817:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40817:96:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40817:96:0;;;;40771:318;;;40935:19;40931:158;;;40980:15;:2;-1:-1:-1;;;;;40980:13:0;;:15::i;:::-;40979:16;40971:106;;;;-1:-1:-1;;;40971:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40400:696;;;;;;;;:::o;36050:649::-;-1:-1:-1;;;;;36313:18:0;;36305:61;;;;;-1:-1:-1;;;36305:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36385:16:0;;36377:57;;;;;-1:-1:-1;;;36377:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36447:69;36465:8;36475:4;36481:2;36485:6;36493:8;36503:12;36447:17;:69::i;:::-;36529:57;36535:8;36545:4;36551:2;36555:6;36563:8;36573:12;36529:5;:57::i;:::-;36599:92;36619:8;36629:4;36635:2;36639:6;36647:8;36657:12;36671:19;36599;:92::i;34852:646::-;-1:-1:-1;;;;;35058:21:0;;35050:62;;;;;-1:-1:-1;;;35050:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35175:12;;:24;;35192:6;35175:24;:16;:24;:::i;:::-;35160:12;:39;-1:-1:-1;;;;;35231:18:0;;:9;:18;;;;;;;;;;;:30;;35254:6;35231:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;35210:18:0;;:9;:18;;;;;;;;;;:51;;;;35274:88;;35294:8;;35220:7;35325:6;35333:8;35343:12;35357:4;35274:19;:88::i;:::-;35397:7;-1:-1:-1;;;;;35380:57:0;35387:8;-1:-1:-1;;;;;35380:57:0;;35406:6;35414:8;35424:12;35380:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;35380:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35380:57:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;35380:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35453:37;;;;;;;;-1:-1:-1;;;;;35453:37:0;;;35470:1;;35453:37;;;;;;;;;34852:646;;;;;:::o;37079:650::-;-1:-1:-1;;;;;37282:18:0;;37274:61;;;;;-1:-1:-1;;;37274:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37348:73;37366:8;37376:4;37390:1;37394:6;37402:4;37408:12;37348:17;:73::i;:::-;37487:66;37507:6;37487:66;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37487:15:0;;:9;:15;;;;;;;;;;;;:66;;:19;:66;:::i;:::-;-1:-1:-1;;;;;37469:15:0;;:9;:15;;;;;;;;;;:84;37579:12;;:24;;37596:6;37579:24;:16;:24;:::i;:::-;37564:12;:39;;;;37638:4;-1:-1:-1;;;;;37621:50:0;37628:8;-1:-1:-1;;;;;37621:50:0;;37644:6;37652:4;37658:12;37621:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;37621:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37621:50:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;37621:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37687:34;;;;;;;;37710:1;;-1:-1:-1;;;;;37687:34:0;;;;;;;;;;;;37079:650;;;;;:::o;13782:181::-;13840:7;13872:5;;;13896:6;;;;13888:46;;;;;-1:-1:-1;;;13888:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;19137:619;19197:4;19665:20;;19508:66;19705:23;;;;;;:42;;-1:-1:-1;19732:15:0;;;19705:42;19697:51;19137:619;-1:-1:-1;;;;19137:619:0:o;14238:136::-;14296:7;14323:43;14327:1;14330;14323:43;;;;;;;;;;;;;;;;;:3;:43::i

Swarm Source

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