ETH Price: $2,792.69 (+1.00%)

Token

Crosschain CloutContracts (CCCS)
 

Overview

Max Total Supply

9,298,560 CCCS

Holders

41

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

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:
CrosschainERC20

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 10000 runs

Other Settings:
petersburg EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-06
*/

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



pragma solidity >=0.6.2 <0.8.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) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/math/SafeMath.sol



pragma solidity >=0.6.0 <0.8.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, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @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) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with 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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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

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



pragma solidity >=0.6.0 <0.8.0;




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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

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

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



pragma solidity >=0.6.0 <0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    using SafeMath for uint256;

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}

// File: contracts/CrosschainERC20.sol



pragma solidity 0.7.6;



contract CrosschainERC20 is ERC20Burnable {
    using SafeERC20 for ERC20;

    event MinterSet(address indexed minter);

    modifier onlyMinter() {
        require(minter == msg.sender, "not the minter");
        _;
    }

    ERC20 public coToken;
    address public minter;

    constructor(
        ERC20 _coToken,
        address _minter,
        string memory _name,
        string memory _symbol,
        uint8 _decimals
    ) public ERC20(_name, _symbol) {
        coToken = _coToken;
        minter = _minter;
        _setupDecimals(_decimals);
        emit MinterSet(_minter);
    }

    function transferMintership(address _newMinter) public onlyMinter {
        minter = _newMinter;
        emit MinterSet(_newMinter);
    }

    function deposit(uint256 _amount) public {
        depositTo(msg.sender, _amount);
    }

    function depositTo(address _to, uint256 _amount) public {
        require(address(coToken) != address(0), "no co-token");
        coToken.safeTransferFrom(msg.sender, address(this), _amount);
        _mint(_to, _amount);
    }

    function withdraw(uint256 _amount) public {
        withdrawTo(msg.sender, _amount);
    }

    function withdrawTo(address _to, uint256 _amount) public {
        require(address(coToken) != address(0), "no co-token");
        require(_amount != 0, "amount is 0");
        _burn(msg.sender, _amount);
        coToken.safeTransfer(_to, _amount);
    }

    function mint(address _to, uint256 _amount) public onlyMinter returns (bool) {
        require(_amount != 0, "amount is 0");
        _mint(_to, _amount);
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract ERC20","name":"_coToken","type":"address"},{"internalType":"address","name":"_minter","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"}],"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":"minter","type":"address"}],"name":"MinterSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"coToken","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"depositTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newMinter","type":"address"}],"name":"transferMintership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620019d8380380620019d8833981810160405260a08110156200003757600080fd5b815160208301516040808501805191519395929483019291846401000000008211156200006357600080fd5b9083019060208201858111156200007957600080fd5b82516401000000008111828201881017156200009457600080fd5b82525081516020918201929091019080838360005b83811015620000c3578181015183820152602001620000a9565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011557600080fd5b9083019060208201858111156200012b57600080fd5b82516401000000008111828201881017156200014657600080fd5b82525081516020918201929091019080838360005b83811015620001755781810151838201526020016200015b565b50505050905090810190601f168015620001a35780820380516001836020036101000a031916815260200191505b5060405260209081015185519093508592508491620001c89160039185019062000289565b508051620001de90600490602084019062000289565b505060058054601260ff1990911617610100600160a81b0319166101006001600160a01b038981169190910291909117909155600680546001600160a01b03191691871691909117905550620002348162000273565b6040516001600160a01b038516907f726b590ef91a8c76ad05bbe91a57ef84605276528f49cd47d787f558a4e755b690600090a2505050505062000335565b6005805460ff191660ff92909216919091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620002c157600085556200030c565b82601f10620002dc57805160ff19168380011785556200030c565b828001600101855582156200030c579182015b828111156200030c578251825591602001919060010190620002ef565b506200031a9291506200031e565b5090565b5b808211156200031a57600081556001016200031f565b61169380620003456000396000f3fe608060405234801561001057600080fd5b50600436106101775760003560e01c806342966c68116100d8578063a457c2d71161008c578063cf86a95a11610066578063cf86a95a14610462578063dd62ed3e14610488578063ffaad6a5146104b657610177565b8063a457c2d7146103ed578063a9059cbb14610419578063b6b55f251461044557610177565b806379cc6790116100bd57806379cc6790146103b15780637f9864f7146103dd57806395d89b41146103e557610177565b806342966c681461036e57806370a082311461038b57610177565b806323b872dd1161012f578063313ce56711610114578063313ce567146102f8578063395093511461031657806340c10f191461034257610177565b806323b872dd146102a55780632e1a7d4d146102db57610177565b8063095ea7b311610160578063095ea7b31461021d57806318160ddd1461025d578063205c28781461027757610177565b806306fdde031461017c57806307546172146101f9575b600080fd5b6101846104e2565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101be5781810151838201526020016101a6565b50505050905090810190601f1680156101eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610201610596565b604080516001600160a01b039092168252519081900360200190f35b6102496004803603604081101561023357600080fd5b506001600160a01b0381351690602001356105a5565b604080519115158252519081900360200190f35b6102656105c2565b60408051918252519081900360200190f35b6102a36004803603604081101561028d57600080fd5b506001600160a01b0381351690602001356105c8565b005b610249600480360360608110156102bb57600080fd5b506001600160a01b038135811691602081013590911690604001356106a6565b6102a3600480360360208110156102f157600080fd5b503561072e565b61030061073b565b6040805160ff9092168252519081900360200190f35b6102496004803603604081101561032c57600080fd5b506001600160a01b038135169060200135610744565b6102496004803603604081101561035857600080fd5b506001600160a01b038135169060200135610792565b6102a36004803603602081101561038457600080fd5b5035610850565b610265600480360360208110156103a157600080fd5b50356001600160a01b0316610861565b6102a3600480360360408110156103c757600080fd5b506001600160a01b03813516906020013561087c565b6102016108d6565b6101846108ea565b6102496004803603604081101561040357600080fd5b506001600160a01b038135169060200135610969565b6102496004803603604081101561042f57600080fd5b506001600160a01b0381351690602001356109d1565b6102a36004803603602081101561045b57600080fd5b50356109e5565b6102a36004803603602081101561047857600080fd5b50356001600160a01b03166109ef565b6102656004803603604081101561049e57600080fd5b506001600160a01b0381358116916020013516610ab0565b6102a3600480360360408110156104cc57600080fd5b506001600160a01b038135169060200135610adb565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561058c5780601f106105615761010080835404028352916020019161058c565b820191906000526020600020905b81548152906001019060200180831161056f57829003601f168201915b5050505050905090565b6006546001600160a01b031681565b60006105b96105b2610b64565b8484610b68565b50600192915050565b60025490565b60055461010090046001600160a01b031661062a576040805162461bcd60e51b815260206004820152600b60248201527f6e6f20636f2d746f6b656e000000000000000000000000000000000000000000604482015290519081900360640190fd5b8061067c576040805162461bcd60e51b815260206004820152600b60248201527f616d6f756e742069732030000000000000000000000000000000000000000000604482015290519081900360640190fd5b6106863382610c54565b6005546106a29061010090046001600160a01b03168383610d50565b5050565b60006106b3848484610dd0565b610723846106bf610b64565b61071e85604051806060016040528060288152602001611559602891396001600160a01b038a166000908152600160205260408120906106fd610b64565b6001600160a01b031681526020810191909152604001600020549190610f2b565b610b68565b5060015b9392505050565b61073833826105c8565b50565b60055460ff1690565b60006105b9610751610b64565b8461071e8560016000610762610b64565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610fc2565b6006546000906001600160a01b031633146107f4576040805162461bcd60e51b815260206004820152600e60248201527f6e6f7420746865206d696e746572000000000000000000000000000000000000604482015290519081900360640190fd5b81610846576040805162461bcd60e51b815260206004820152600b60248201527f616d6f756e742069732030000000000000000000000000000000000000000000604482015290519081900360640190fd5b6105b9838361101c565b61073861085b610b64565b82610c54565b6001600160a01b031660009081526020819052604090205490565b60006108b382604051806060016040528060248152602001611581602491396108ac866108a7610b64565b610ab0565b9190610f2b565b90506108c7836108c1610b64565b83610b68565b6108d18383610c54565b505050565b60055461010090046001600160a01b031681565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561058c5780601f106105615761010080835404028352916020019161058c565b60006105b9610976610b64565b8461071e8560405180606001604052806025815260200161163960259139600160006109a0610b64565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610f2b565b60006105b96109de610b64565b8484610dd0565b6107383382610adb565b6006546001600160a01b03163314610a4e576040805162461bcd60e51b815260206004820152600e60248201527f6e6f7420746865206d696e746572000000000000000000000000000000000000604482015290519081900360640190fd5b600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383169081179091556040517f726b590ef91a8c76ad05bbe91a57ef84605276528f49cd47d787f558a4e755b690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60055461010090046001600160a01b0316610b3d576040805162461bcd60e51b815260206004820152600b60248201527f6e6f20636f2d746f6b656e000000000000000000000000000000000000000000604482015290519081900360640190fd5b600554610b5a9061010090046001600160a01b031633308461110c565b6106a2828261101c565b3390565b6001600160a01b038316610bad5760405162461bcd60e51b81526004018080602001828103825260248152602001806115eb6024913960400191505060405180910390fd5b6001600160a01b038216610bf25760405162461bcd60e51b81526004018080602001828103825260228152602001806114eb6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038216610c995760405162461bcd60e51b81526004018080602001828103825260218152602001806115a56021913960400191505060405180910390fd5b610ca5826000836108d1565b610ce2816040518060600160405280602281526020016114c9602291396001600160a01b0385166000908152602081905260409020549190610f2b565b6001600160a01b038316600090815260208190526040902055600254610d08908261119a565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790526108d19084906111f7565b6001600160a01b038316610e155760405162461bcd60e51b81526004018080602001828103825260258152602001806115c66025913960400191505060405180910390fd5b6001600160a01b038216610e5a5760405162461bcd60e51b81526004018080602001828103825260238152602001806114a66023913960400191505060405180910390fd5b610e658383836108d1565b610ea28160405180606001604052806026815260200161150d602691396001600160a01b0386166000908152602081905260409020549190610f2b565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610ed19082610fc2565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610fba5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610f7f578181015183820152602001610f67565b50505050905090810190601f168015610fac5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610727576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216611077576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611083600083836108d1565b6002546110909082610fc2565b6002556001600160a01b0382166000908152602081905260409020546110b69082610fc2565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd000000000000000000000000000000000000000000000000000000001790526111949085906111f7565b50505050565b6000828211156111f1576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600061124c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166112a89092919063ffffffff16565b8051909150156108d15780806020019051602081101561126b57600080fd5b50516108d15760405162461bcd60e51b815260040180806020018281038252602a81526020018061160f602a913960400191505060405180910390fd5b60606112b784846000856112bf565b949350505050565b606030318311156113015760405162461bcd60e51b81526004018080602001828103825260268152602001806115336026913960400191505060405180910390fd5b61130a85611439565b61135b576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b602083106113b757805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0909201916020918201910161137a565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611419576040519150601f19603f3d011682016040523d82523d6000602084013e61141e565b606091505b509150915061142e82828661143f565b979650505050505050565b3b151590565b6060831561144e575081610727565b82511561145e5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315610f7f578181015183820152602001610f6756fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122011f14534b53bd4289a85b68c08b54b87febc4dab1fc30df955c69582ee7be94864736f6c634300070600330000000000000000000000001da4858ad385cc377165a298cc2ce3fce0c5fd31000000000000000000000000964f4f19bc823e72cc1f806021937cfc06f63b4500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001943726f7373636861696e20436c6f7574436f6e7472616374730000000000000000000000000000000000000000000000000000000000000000000000000000044343435300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101775760003560e01c806342966c68116100d8578063a457c2d71161008c578063cf86a95a11610066578063cf86a95a14610462578063dd62ed3e14610488578063ffaad6a5146104b657610177565b8063a457c2d7146103ed578063a9059cbb14610419578063b6b55f251461044557610177565b806379cc6790116100bd57806379cc6790146103b15780637f9864f7146103dd57806395d89b41146103e557610177565b806342966c681461036e57806370a082311461038b57610177565b806323b872dd1161012f578063313ce56711610114578063313ce567146102f8578063395093511461031657806340c10f191461034257610177565b806323b872dd146102a55780632e1a7d4d146102db57610177565b8063095ea7b311610160578063095ea7b31461021d57806318160ddd1461025d578063205c28781461027757610177565b806306fdde031461017c57806307546172146101f9575b600080fd5b6101846104e2565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101be5781810151838201526020016101a6565b50505050905090810190601f1680156101eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610201610596565b604080516001600160a01b039092168252519081900360200190f35b6102496004803603604081101561023357600080fd5b506001600160a01b0381351690602001356105a5565b604080519115158252519081900360200190f35b6102656105c2565b60408051918252519081900360200190f35b6102a36004803603604081101561028d57600080fd5b506001600160a01b0381351690602001356105c8565b005b610249600480360360608110156102bb57600080fd5b506001600160a01b038135811691602081013590911690604001356106a6565b6102a3600480360360208110156102f157600080fd5b503561072e565b61030061073b565b6040805160ff9092168252519081900360200190f35b6102496004803603604081101561032c57600080fd5b506001600160a01b038135169060200135610744565b6102496004803603604081101561035857600080fd5b506001600160a01b038135169060200135610792565b6102a36004803603602081101561038457600080fd5b5035610850565b610265600480360360208110156103a157600080fd5b50356001600160a01b0316610861565b6102a3600480360360408110156103c757600080fd5b506001600160a01b03813516906020013561087c565b6102016108d6565b6101846108ea565b6102496004803603604081101561040357600080fd5b506001600160a01b038135169060200135610969565b6102496004803603604081101561042f57600080fd5b506001600160a01b0381351690602001356109d1565b6102a36004803603602081101561045b57600080fd5b50356109e5565b6102a36004803603602081101561047857600080fd5b50356001600160a01b03166109ef565b6102656004803603604081101561049e57600080fd5b506001600160a01b0381358116916020013516610ab0565b6102a3600480360360408110156104cc57600080fd5b506001600160a01b038135169060200135610adb565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561058c5780601f106105615761010080835404028352916020019161058c565b820191906000526020600020905b81548152906001019060200180831161056f57829003601f168201915b5050505050905090565b6006546001600160a01b031681565b60006105b96105b2610b64565b8484610b68565b50600192915050565b60025490565b60055461010090046001600160a01b031661062a576040805162461bcd60e51b815260206004820152600b60248201527f6e6f20636f2d746f6b656e000000000000000000000000000000000000000000604482015290519081900360640190fd5b8061067c576040805162461bcd60e51b815260206004820152600b60248201527f616d6f756e742069732030000000000000000000000000000000000000000000604482015290519081900360640190fd5b6106863382610c54565b6005546106a29061010090046001600160a01b03168383610d50565b5050565b60006106b3848484610dd0565b610723846106bf610b64565b61071e85604051806060016040528060288152602001611559602891396001600160a01b038a166000908152600160205260408120906106fd610b64565b6001600160a01b031681526020810191909152604001600020549190610f2b565b610b68565b5060015b9392505050565b61073833826105c8565b50565b60055460ff1690565b60006105b9610751610b64565b8461071e8560016000610762610b64565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610fc2565b6006546000906001600160a01b031633146107f4576040805162461bcd60e51b815260206004820152600e60248201527f6e6f7420746865206d696e746572000000000000000000000000000000000000604482015290519081900360640190fd5b81610846576040805162461bcd60e51b815260206004820152600b60248201527f616d6f756e742069732030000000000000000000000000000000000000000000604482015290519081900360640190fd5b6105b9838361101c565b61073861085b610b64565b82610c54565b6001600160a01b031660009081526020819052604090205490565b60006108b382604051806060016040528060248152602001611581602491396108ac866108a7610b64565b610ab0565b9190610f2b565b90506108c7836108c1610b64565b83610b68565b6108d18383610c54565b505050565b60055461010090046001600160a01b031681565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561058c5780601f106105615761010080835404028352916020019161058c565b60006105b9610976610b64565b8461071e8560405180606001604052806025815260200161163960259139600160006109a0610b64565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610f2b565b60006105b96109de610b64565b8484610dd0565b6107383382610adb565b6006546001600160a01b03163314610a4e576040805162461bcd60e51b815260206004820152600e60248201527f6e6f7420746865206d696e746572000000000000000000000000000000000000604482015290519081900360640190fd5b600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383169081179091556040517f726b590ef91a8c76ad05bbe91a57ef84605276528f49cd47d787f558a4e755b690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60055461010090046001600160a01b0316610b3d576040805162461bcd60e51b815260206004820152600b60248201527f6e6f20636f2d746f6b656e000000000000000000000000000000000000000000604482015290519081900360640190fd5b600554610b5a9061010090046001600160a01b031633308461110c565b6106a2828261101c565b3390565b6001600160a01b038316610bad5760405162461bcd60e51b81526004018080602001828103825260248152602001806115eb6024913960400191505060405180910390fd5b6001600160a01b038216610bf25760405162461bcd60e51b81526004018080602001828103825260228152602001806114eb6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038216610c995760405162461bcd60e51b81526004018080602001828103825260218152602001806115a56021913960400191505060405180910390fd5b610ca5826000836108d1565b610ce2816040518060600160405280602281526020016114c9602291396001600160a01b0385166000908152602081905260409020549190610f2b565b6001600160a01b038316600090815260208190526040902055600254610d08908261119a565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790526108d19084906111f7565b6001600160a01b038316610e155760405162461bcd60e51b81526004018080602001828103825260258152602001806115c66025913960400191505060405180910390fd5b6001600160a01b038216610e5a5760405162461bcd60e51b81526004018080602001828103825260238152602001806114a66023913960400191505060405180910390fd5b610e658383836108d1565b610ea28160405180606001604052806026815260200161150d602691396001600160a01b0386166000908152602081905260409020549190610f2b565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610ed19082610fc2565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610fba5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610f7f578181015183820152602001610f67565b50505050905090810190601f168015610fac5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610727576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216611077576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611083600083836108d1565b6002546110909082610fc2565b6002556001600160a01b0382166000908152602081905260409020546110b69082610fc2565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd000000000000000000000000000000000000000000000000000000001790526111949085906111f7565b50505050565b6000828211156111f1576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600061124c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166112a89092919063ffffffff16565b8051909150156108d15780806020019051602081101561126b57600080fd5b50516108d15760405162461bcd60e51b815260040180806020018281038252602a81526020018061160f602a913960400191505060405180910390fd5b60606112b784846000856112bf565b949350505050565b606030318311156113015760405162461bcd60e51b81526004018080602001828103825260268152602001806115336026913960400191505060405180910390fd5b61130a85611439565b61135b576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b602083106113b757805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0909201916020918201910161137a565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611419576040519150601f19603f3d011682016040523d82523d6000602084013e61141e565b606091505b509150915061142e82828661143f565b979650505050505050565b3b151590565b6060831561144e575081610727565b82511561145e5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315610f7f578181015183820152602001610f6756fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122011f14534b53bd4289a85b68c08b54b87febc4dab1fc30df955c69582ee7be94864736f6c63430007060033

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

0000000000000000000000001da4858ad385cc377165a298cc2ce3fce0c5fd31000000000000000000000000964f4f19bc823e72cc1f806021937cfc06f63b4500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001943726f7373636861696e20436c6f7574436f6e7472616374730000000000000000000000000000000000000000000000000000000000000000000000000000044343435300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _coToken (address): 0x1da4858ad385cc377165A298CC2CE3fce0C5fD31
Arg [1] : _minter (address): 0x964F4f19Bc823E72cc1F806021937cfC06F63B45
Arg [2] : _name (string): Crosschain CloutContracts
Arg [3] : _symbol (string): CCCS
Arg [4] : _decimals (uint8): 0

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000001da4858ad385cc377165a298cc2ce3fce0c5fd31
Arg [1] : 000000000000000000000000964f4f19bc823e72cc1f806021937cfc06f63b45
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [6] : 43726f7373636861696e20436c6f7574436f6e74726163747300000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 4343435300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

35389:1664:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25205:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35655:21;;;:::i;:::-;;;;-1:-1:-1;;;;;35655:21:0;;;;;;;;;;;;;;27351:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27351:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;26304:108;;;:::i;:::-;;;;;;;;;;;;;;;;36599:259;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36599:259:0;;;;;;;;:::i;:::-;;28002:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28002:321:0;;;;;;;;;;;;;;;;;:::i;36499:92::-;;;;;;;;;;;;;;;;-1:-1:-1;36499:92:0;;:::i;26148:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28732:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28732:218:0;;;;;;;;:::i;36866:184::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36866:184:0;;;;;;;;:::i;34601:91::-;;;;;;;;;;;;;;;;-1:-1:-1;34601:91:0;;:::i;26475:127::-;;;;;;;;;;;;;;;;-1:-1:-1;26475:127:0;-1:-1:-1;;;;;26475:127:0;;:::i;35011:295::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35011:295:0;;;;;;;;:::i;35628:20::-;;;:::i;25415:95::-;;;:::i;29453:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29453:269:0;;;;;;;;:::i;26815:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26815:175:0;;;;;;;;:::i;36163:90::-;;;;;;;;;;;;;;;;-1:-1:-1;36163:90:0;;:::i;36014:141::-;;;;;;;;;;;;;;;;-1:-1:-1;36014:141:0;-1:-1:-1;;;;;36014:141:0;;:::i;27053:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27053:151:0;;;;;;;;;;:::i;36261:230::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36261:230:0;;;;;;;;:::i;25205:91::-;25283:5;25276:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25250:13;;25276:12;;25283:5;;25276:12;;25283:5;25276:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25205:91;:::o;35655:21::-;;;-1:-1:-1;;;;;35655:21:0;;:::o;27351:169::-;27434:4;27451:39;27460:12;:10;:12::i;:::-;27474:7;27483:6;27451:8;:39::i;:::-;-1:-1:-1;27508:4:0;27351:169;;;;:::o;26304:108::-;26392:12;;26304:108;:::o;36599:259::-;36683:7;;;;;-1:-1:-1;;;;;36683:7:0;36667:54;;;;;-1:-1:-1;;;36667:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36740:12;36732:36;;;;;-1:-1:-1;;;36732:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36779:26;36785:10;36797:7;36779:5;:26::i;:::-;36816:7;;:34;;:7;;;-1:-1:-1;;;;;36816:7:0;36837:3;36842:7;36816:20;:34::i;:::-;36599:259;;:::o;28002:321::-;28108:4;28125:36;28135:6;28143:9;28154:6;28125:9;:36::i;:::-;28172:121;28181:6;28189:12;:10;:12::i;:::-;28203:89;28241:6;28203:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28203:19:0;;;;;;:11;:19;;;;;;28223:12;:10;:12::i;:::-;-1:-1:-1;;;;;28203:33:0;;;;;;;;;;;;-1:-1:-1;28203:33:0;;;:89;:37;:89::i;:::-;28172:8;:121::i;:::-;-1:-1:-1;28311:4:0;28002:321;;;;;;:::o;36499:92::-;36552:31;36563:10;36575:7;36552:10;:31::i;:::-;36499:92;:::o;26148:91::-;26222:9;;;;26148:91;:::o;28732:218::-;28820:4;28837:83;28846:12;:10;:12::i;:::-;28860:7;28869:50;28908:10;28869:11;:25;28881:12;:10;:12::i;:::-;-1:-1:-1;;;;;28869:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;28869:25:0;;;:34;;;;;;;;;;;:38;:50::i;36866:184::-;35561:6;;36937:4;;-1:-1:-1;;;;;35561:6:0;35571:10;35561:20;35553:47;;;;;-1:-1:-1;;;35553:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36962:12;36954:36:::1;;;::::0;;-1:-1:-1;;;36954:36:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;37001:19;37007:3;37012:7;37001:5;:19::i;34601:91::-:0;34657:27;34663:12;:10;:12::i;:::-;34677:6;34657:5;:27::i;26475:127::-;-1:-1:-1;;;;;26576:18:0;26549:7;26576:18;;;;;;;;;;;;26475:127::o;35011:295::-;35088:26;35117:84;35154:6;35117:84;;;;;;;;;;;;;;;;;:32;35127:7;35136:12;:10;:12::i;:::-;35117:9;:32::i;:::-;:36;:84;:36;:84::i;:::-;35088:113;;35214:51;35223:7;35232:12;:10;:12::i;:::-;35246:18;35214:8;:51::i;:::-;35276:22;35282:7;35291:6;35276:5;:22::i;:::-;35011:295;;;:::o;35628:20::-;;;;;;-1:-1:-1;;;;;35628:20:0;;:::o;25415:95::-;25495:7;25488:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25462:13;;25488:14;;25495:7;;25488:14;;25495:7;25488:14;;;;;;;;;;;;;;;;;;;;;;;;29453:269;29546:4;29563:129;29572:12;:10;:12::i;:::-;29586:7;29595:96;29634:15;29595:96;;;;;;;;;;;;;;;;;:11;:25;29607:12;:10;:12::i;:::-;-1:-1:-1;;;;;29595:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29595:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;26815:175::-;26901:4;26918:42;26928:12;:10;:12::i;:::-;26942:9;26953:6;26918:9;:42::i;36163:90::-;36215:30;36225:10;36237:7;36215:9;:30::i;36014:141::-;35561:6;;-1:-1:-1;;;;;35561:6:0;35571:10;35561:20;35553:47;;;;;-1:-1:-1;;;35553:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36091:6:::1;:19:::0;;;::::1;-1:-1:-1::0;;;;;36091:19:0;::::1;::::0;;::::1;::::0;;;36126:21:::1;::::0;::::1;::::0;-1:-1:-1;;36126:21:0::1;36014:141:::0;:::o;27053:151::-;-1:-1:-1;;;;;27169:18:0;;;27142:7;27169:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;27053:151::o;36261:230::-;36344:7;;;;;-1:-1:-1;;;;;36344:7:0;36328:54;;;;;-1:-1:-1;;;36328:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36393:7;;:60;;:7;;;-1:-1:-1;;;;;36393:7:0;36418:10;36438:4;36445:7;36393:24;:60::i;:::-;36464:19;36470:3;36475:7;36464:5;:19::i;22683:106::-;22771:10;22683:106;:::o;32600:346::-;-1:-1:-1;;;;;32702:19:0;;32694:68;;;;-1:-1:-1;;;32694:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32781:21:0;;32773:68;;;;-1:-1:-1;;;32773:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32854:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;32906:32;;;;;;;;;;;;;;;;;32600:346;;;:::o;31744:418::-;-1:-1:-1;;;;;31828:21:0;;31820:67;;;;-1:-1:-1;;;31820:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31900:49;31921:7;31938:1;31942:6;31900:20;:49::i;:::-;31983:68;32006:6;31983:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31983:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;31962:18:0;;:9;:18;;;;;;;;;;:89;32077:12;;:24;;32094:6;32077:16;:24::i;:::-;32062:12;:39;32117:37;;;;;;;;32143:1;;-1:-1:-1;;;;;32117:37:0;;;;;;;;;;;;31744:418;;:::o;18974:177::-;19084:58;;;-1:-1:-1;;;;;19084:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19107:23;19084:58;;;19057:86;;19077:5;;19057:19;:86::i;30212:539::-;-1:-1:-1;;;;;30318:20:0;;30310:70;;;;-1:-1:-1;;;30310:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30399:23:0;;30391:71;;;;-1:-1:-1;;;30391:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30475:47;30496:6;30504:9;30515:6;30475:20;:47::i;:::-;30555:71;30577:6;30555:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30555:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;30535:17:0;;;:9;:17;;;;;;;;;;;:91;;;;30660:20;;;;;;;:32;;30685:6;30660:24;:32::i;:::-;-1:-1:-1;;;;;30637:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;30708:35;;;;;;;30637:20;;30708:35;;;;;;;;;;;;;30212:539;;;:::o;13657:166::-;13743:7;13779:12;13771:6;;;;13763:29;;;;-1:-1:-1;;;13763:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;13810:5:0;;;13657:166::o;10830:179::-;10888:7;10920:5;;;10944:6;;;;10936:46;;;;;-1:-1:-1;;;10936:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;31033:378;-1:-1:-1;;;;;31117:21:0;;31109:65;;;;;-1:-1:-1;;;31109:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31187:49;31216:1;31220:7;31229:6;31187:20;:49::i;:::-;31264:12;;:24;;31281:6;31264:16;:24::i;:::-;31249:12;:39;-1:-1:-1;;;;;31320:18:0;;:9;:18;;;;;;;;;;;:30;;31343:6;31320:22;:30::i;:::-;-1:-1:-1;;;;;31299:18:0;;:9;:18;;;;;;;;;;;:51;;;;31366:37;;;;;;;31299:18;;:9;;31366:37;;;;;;;;;;31033:378;;:::o;19159:205::-;19287:68;;;-1:-1:-1;;;;;19287:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19310:27;19287:68;;;19260:96;;19280:5;;19260:19;:96::i;:::-;19159:205;;;;:::o;11292:158::-;11350:7;11383:1;11378;:6;;11370:49;;;;;-1:-1:-1;;;11370:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11437:5:0;;;11292:158::o;21279:761::-;21703:23;21729:69;21757:4;21729:69;;;;;;;;;;;;;;;;;21737:5;-1:-1:-1;;;;;21729:27:0;;;:69;;;;;:::i;:::-;21813:17;;21703:95;;-1:-1:-1;21813:21:0;21809:224;;21955:10;21944:30;;;;;;;;;;;;;;;-1:-1:-1;21944:30:0;21936:85;;;;-1:-1:-1;;;21936:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3692:195;3795:12;3827:52;3849:6;3857:4;3863:1;3866:12;3827:21;:52::i;:::-;3820:59;3692:195;-1:-1:-1;;;;3692:195:0:o;4744:530::-;4871:12;4912:4;4904:21;:30;-1:-1:-1;4904:30:0;4896:81;;;;-1:-1:-1;;;4896:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4996:18;5007:6;4996:10;:18::i;:::-;4988:60;;;;;-1:-1:-1;;;4988:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5122:12;5136:23;5163:6;-1:-1:-1;;;;;5163:11:0;5183:5;5191:4;5163:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5121:75;;;;5214:52;5232:7;5241:10;5253:12;5214:17;:52::i;:::-;5207:59;4744:530;-1:-1:-1;;;;;;;4744:530:0:o;774:422::-;1141:20;1180:8;;;774:422::o;7284:742::-;7399:12;7428:7;7424:595;;;-1:-1:-1;7459:10:0;7452:17;;7424:595;7573:17;;:21;7569:439;;7836:10;7830:17;7897:15;7884:10;7880:2;7876:19;7869:44;7784:148;7972:20;;-1:-1:-1;;;7972:20:0;;;;;;;;;;;;;;;;;7979:12;;7972:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

ipfs://11f14534b53bd4289a85b68c08b54b87febc4dab1fc30df955c69582ee7be948
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.