ETH Price: $3,152.63 (-1.42%)
 

Overview

Max Total Supply

10,000 GOALD

Holders

10

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 2 Decimals)

Balance
1,000 GOALD

Value
$0.00
0x60299d7fcd00cf14fe57d8ced0680498871eadb6
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:
GoaldToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-03-17
*/

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

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

/**
 * @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.
     */
    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.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        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.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @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 in 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");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        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);
            }
        }
    }
}





/**
 * @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;
    using Address for address;

    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 returns (string memory) {
        return _name;
    }

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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 {
        _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 { }
}

// SPDX-License-Identifier: GPL-3.0-or-later

pragma solidity 0.6.12;
interface IGoaldDAO {
    /** Returns the number of goalds deployed from this DAO. */
    function getGoaldCount() external view returns (uint256);

    /** Returns the current address that fees will be sent to. */
    function getProxyAddress() external view returns (address);

    /** Called if the DAO manager is no longer a holder after burning the initialization tokens. */
    function initializeDecreasesHolders() external;

    /** Called if the DAO manager is now a holder after claiming the initialization tokens. */
    function issuanceIncreasesHolders() external;
    
    /** Makes this DAO ready for deployments (regardless of whether or not there are authorized ones). */
    function makeReady(uint256 governanceStage, uint256 idOffset) external;

    /** Update the reward balances prior to the transfer completing. */
    function preTransfer(address sender, address recipient) external;

    /** Updates holder counts after doing a transfer. */
    function postTransfer(address sender, uint256 senderBefore, uint256 senderAfter, uint256 recipientBefore, uint256 recipientAfter) external;

    /** Called when the DAO has been initialized. */
    function updateGovernanceStage() external;
}

contract GoaldToken is ERC20 {
    address public _manager = msg.sender;

    /** @dev The DAO versions. DAOs only become invalid if they have a security vulnerability that compromises this contract. */
    address[] private _daoAddresses;
    mapping(address => uint256) private _isValidDAO;
    uint256 private constant UNTRACKED_DAO = 0;
    uint256 private constant VALID_DAO     = 1;
    uint256 private constant INVALID_DAO   = 2;

    /** @dev The number of decimals is small to allow for rewards of tokens with substantially different exchange rates. */
    uint8   private constant DECIMALS = 2;

    /** 
     * @dev The minimum amount of tokens necessary to be eligible for a reward. This is "one token", considering decimal places. We
     * are choosing two decimal places because we are initially targeting WBTC, which has 8. This way we can do a minimum reward ratio
     * of 1 / 1,000,000 of a WBTC, relative to our token. So at $25,000 (2020 value), the minimum reward would be $250 (assuming we
     * have issued all 10,000 tokens).
     */
    uint256 private constant REWARD_THRESHOLD = 10**uint256(DECIMALS);

    /**
     * @dev The maximum supply is 210,000 tokens. 110,000 tokens are burned on initiating the DAO; 10,000 are given to Bittrees for
     * initial management. The remainder are minted on a decreasing schedule based on the total number of deployed Goalds.
     */
    uint256 private constant MAX_SUPPLY = 210000 * REWARD_THRESHOLD;

    /** @dev The base token URI for the Goald metadata. */
    string  private _baseTokenURI;

    /** @dev The total number of deployed Goalds across all DAOs. */
    uint256 private _goaldCount;

    /**
     * @dev The stage of the governance token. Tokens can be issued based on deployments regardless of what stage we are in.
     *      0: Created, with no governance protocol initiated. The initial governance issuance can be claimed.
     *      1: Initial governance issuance has been claimed.
     *      2: The governance protocal has been initiated.
     *      3: All governance tokens have been issued.
     */
    uint256 private constant STAGE_INITIAL               = 0;
    uint256 private constant STAGE_ISSUANCE_CLAIMED      = 1;
    uint256 private constant STAGE_DAO_INITIATED         = 2;
    uint256 private constant STAGE_ALL_GOVERNANCE_ISSUED = 3;
    uint256 private _governanceStage;

    // Reentrancy reversions are the only calls to revert (in this contract) that do not have reasons. We add a third state, 'frozen'
    // to allow for locking non-admin functions. The contract may be permanently frozen if it has been upgraded.
    uint256 private constant RE_NOT_ENTERED = 1;
    uint256 private constant RE_ENTERED     = 2;
    uint256 private constant RE_FROZEN      = 3;
    uint256 private _status;

    // Separate reentrancy status to further guard against arbitrary calls against a DAO contract via `unsafeCallDAO()`.
    uint256 private _daoStatus;

    // Override decimal places to 2. See `GoaldProxy.REWARD_THRESHOLD`.
    constructor() ERC20("Goald", "GOALD") public {
        _setupDecimals(DECIMALS);
        _status    = RE_FROZEN;
        _daoStatus = RE_NOT_ENTERED;
    }

    /// Events ///
    
    event DAOStatusChanged(address daoAddress, uint256 status);

    event DAOUpgraded(address daoAddress);

    event GoaldDeployed(address goaldAddress);

    event ManagerChanged(address newManager);

    /// Admin ///

    /** Freezes the contract. Only admin functions can be called. */
    function freeze() external {
        // Reentrancy guard.
        require(_status == RE_NOT_ENTERED);
        require(msg.sender == _manager, "Not manager");

        _status = RE_FROZEN;
    }

    /** Sets the status of a given DAO. */
    function setDAOStatus(address daoAddress, uint256 index, uint256 status) external {
        // Reentrancy guard.
        require(_status == RE_NOT_ENTERED || _status == RE_FROZEN);
        require(msg.sender == _manager, "Not manager");

        // Validate the index as well.
        require(_daoAddresses[index] == daoAddress, "Non-matching DAO index");

        // Validate the status.
        require(status == VALID_DAO || status == INVALID_DAO, "Invalid status");
        uint256 currentStatus = _isValidDAO[daoAddress];
        require(currentStatus != status && (currentStatus == VALID_DAO || currentStatus == INVALID_DAO), "Invalid current status");

        // Update the status.
        _isValidDAO[daoAddress] = status;

        // Hello world!
        emit DAOStatusChanged(daoAddress, status);
    }

    function setManager(address newManager) external {
        // Reentrancy guard.
        require(_status == RE_NOT_ENTERED || _status == RE_FROZEN);
        require(msg.sender == _manager,      "Not manager");
        require(newManager != address(0),    "Can't be zero address");
        require(newManager != address(this), "Can't be this address");

        // If the issuance has been claimed but the DAO has not been initialized, then the new manager must be able to initialize it.
        require((_governanceStage != STAGE_ISSUANCE_CLAIMED) || (balanceOf(newManager) > 110000 * REWARD_THRESHOLD), "New manager can't init DAO");

        _manager = newManager;

        // Hello world!
        emit ManagerChanged(newManager);
    }

    /** Unfreezes the contract. Non-admin functions can again be called. */
    function unfreeze() external {
        // Reentrancy guard.
        require(_status == RE_FROZEN);
        require(msg.sender == _manager, "Not manager");

        _status = RE_NOT_ENTERED;
    }

    /** Upgrades to the new DAO version. Can only be done when frozen. */
    function upgradeDAO(address daoAddress) external {
        // Reentrancy guard.
        require(_status == RE_FROZEN);
        _status = RE_ENTERED;

        // It must be a contract.
        uint256 codeSize;
        assembly { codeSize := extcodesize(daoAddress) }
        require(codeSize > 0, "Not a contract");

        // Make sure it hasn't been tracked yet.
        require(_isValidDAO[daoAddress] == UNTRACKED_DAO, "DAO already tracked");

        // Upgrade the DAO.
        _daoAddresses.push(daoAddress);
        _isValidDAO[daoAddress] = VALID_DAO;

        // Enable the DAO.
        IGoaldDAO(daoAddress).makeReady(_governanceStage, _goaldCount);

        // Hello world!
        emit DAOUpgraded(daoAddress);

        // By storing the original amount once again, a refund is triggered (see https://eips.ethereum.org/EIPS/eip-2200).
        _status = RE_FROZEN;
    }

    /// Goalds ///

    /** Gets the base url for Goald metadata. */
    function getBaseTokenURI() external view returns (string memory) {
        return _baseTokenURI;
    }

    /** Gets the total number of deployed Goalds. */
    function getGoaldCount() external view returns (uint256) {
        return _goaldCount;
    }

    /** Returns the address of the DAO which deployed the Goald. */
    function getGoaldDAO(uint256 id) external view returns (address) {
        require(id < _goaldCount, "ID too large");

        uint256 addressesCount = _daoAddresses.length;
        uint256 index;
        uint256 goaldCount;
        address goaldAddress;

        for (; index < addressesCount; index ++) {
            goaldAddress = _daoAddresses[index];
            goaldCount += IGoaldDAO(goaldAddress).getGoaldCount();
            if (id <= goaldCount) {
                return goaldAddress;
            }
        }

        revert("Unknown DAO");
    }

    /**
     * Called when a deployer deploys a new Goald (via the DAO contract). Currently we use this to distribute the governance token
     * according to the following schedule. An additional 120,000 tokens will be claimable by the deployer of this proxy. This will
     * create a total supply of 210,000 tokens. Once the governance protocal is set up, 110,000 tokens will be burned to initiate that
     * mechanism. That will leave 10% ownership for the deployer of the contract, with the remaining 90% disbused on Goald creations.
     * No rewards can be paid out before the governance protocal has been initiated.
     *
     *      # Goalds    # Tokens
     *       0 -  9       1000
     *      10 - 19        900
     *      20 - 29        800
     *      30 - 39        700
     *      40 - 49        600
     *      50 - 59        500
     *      60 - 69        400
     *      70 - 79        300
     *      80 - 89        200
     *      90 - 99        100
     *       < 3600         10
     */
    function goaldDeployed(address recipient, address goaldAddress) external returns (uint256) {
        // Reentrancy guard.
        require(_daoStatus == RE_NOT_ENTERED);

        // Validate the caller.
        require(msg.sender == _daoAddresses[_daoAddresses.length - 1], "Caller not latest DAO");
        require(_isValidDAO[msg.sender] == VALID_DAO, "Caller not valid DAO");

        // Hello world!
        emit GoaldDeployed(goaldAddress);

        uint256 goaldCount = _goaldCount++;
        if (_governanceStage == STAGE_ALL_GOVERNANCE_ISSUED) {
            return 0;
        }

        // Calculate the amount of tokens issued based on the schedule.
        uint256 amount;
        if        (goaldCount <   10) {
            amount = 1000;
        } else if (goaldCount <   20) {
            amount =  900;
        } else if (goaldCount <   30) {
            amount =  800;
        } else if (goaldCount <   40) {
            amount =  700;
        } else if (goaldCount <   50) {
            amount =  600;
        } else if (goaldCount <   60) {
            amount =  500;
        } else if (goaldCount <   70) {
            amount =  400;
        } else if (goaldCount <   80) {
            amount =  300;
        } else if (goaldCount <   90) {
            amount =  200;
        } else if (goaldCount <  100) {
            amount =  100;
        } else if (goaldCount < 3600) {
            amount =   10;
        }
        
        // We have issued all tokens, so move to the last stage of governance. This will short circuit this function on future calls.
        // This will result in unnecessary gas if the DAO is never initiated and all 3600 token-earning goalds are created. But the
        // DAO should be initiated long before that.
        else if (_governanceStage == STAGE_DAO_INITIATED) {
            _governanceStage = STAGE_ALL_GOVERNANCE_ISSUED;
        }

        if (amount == 0) {
            return 0;
        }

        // Validate the recipient.
        require(_isValidDAO[recipient] == UNTRACKED_DAO, "Can't be DAO");
        require(recipient != address(0), "Can't be zero address");
        require(recipient != address(this), "Can't be Goald token");

        // Validate the amount.
        uint256 totalSupply = totalSupply();
        require(amount + totalSupply > totalSupply, "Overflow error");
        require(amount + totalSupply < MAX_SUPPLY, "Exceeds supply");
        
        // Mint the tokens.
        _mint(recipient, amount * REWARD_THRESHOLD);

        return amount;
    }

    /** Sets the base url for Goald metadata. */
    function setBaseTokenURI(string calldata baseTokenURI) external {
        // Reentrancy guard.
        require(_status == RE_NOT_ENTERED || _status == RE_FROZEN);
        require(msg.sender == _manager, "Not manager");

        _baseTokenURI = baseTokenURI;
    }

    /// Governance ///

    /** Claims the initial issuance of the governance token to enable bootstrapping the DAO. */
    function claimIssuance() external {
        // Reentrancy guard.
        require(_status == RE_NOT_ENTERED);
        require(msg.sender == _manager,            "Not manager");
        require(_governanceStage == STAGE_INITIAL, "Already claimed");

        // We are creating a new holder.
        if (balanceOf(_manager) < REWARD_THRESHOLD) {
            uint256 index;
            uint256 count = _daoAddresses.length;
            for (; index < count; index ++) {
                IGoaldDAO(_daoAddresses[index]).issuanceIncreasesHolders();
            }
        }

        // Mint the tokens.
        _mint(_manager, 120000 * REWARD_THRESHOLD);

        // Update the governance stage.
        _governanceStage = STAGE_ISSUANCE_CLAIMED;
    }

    /** Returns the address of the DAO at the given index. */
    function getDAOAddressAt(uint256 index) external view returns (address) {
        return _daoAddresses[index];
    }

    /** Returns the number of historical DAO addresses. */
    function getDAOCount() external view returns (uint256) {
        return _daoAddresses.length;
    }

    /** Returns the status of the DAO with the given address. */
    function getDAOStatus(address daoAddress) external view returns (uint256) {
        return _isValidDAO[daoAddress];
    }

    /** Gets the latest dao address, so long as it's valid. */
    function getLatestDAO() external view returns (address) {
        address daoAddress = _daoAddresses[_daoAddresses.length - 1];
        require(_isValidDAO[daoAddress] == VALID_DAO, "Latest DAO invalid");

        return daoAddress;
    }

    /** Returns the current stage of the DAO's governance. */
    function getGovernanceStage() external view returns (uint256) {
        return _governanceStage;
    }

    /** Releases management to the DAO. */
    function initializeDAO() external {
        // Reentrancy guard.
        require(_status == RE_NOT_ENTERED);
        _status = RE_ENTERED;

        require(msg.sender == _manager,                     "Not manager");
        require(_governanceStage == STAGE_ISSUANCE_CLAIMED, "Issuance unclaimed");

        // Burn the tokens.
        uint256 startingBalance = balanceOf(_manager);
        require(startingBalance >= 110000 * REWARD_THRESHOLD, "Not enough tokens");
        _burn(_manager, 110000 * REWARD_THRESHOLD);

        // Update the stage.
        _governanceStage = STAGE_DAO_INITIATED;

        uint256 count = _daoAddresses.length;

        // If the manager no longer is a holder we need to tell the latest DAO.
        if (count > 0 && startingBalance - (110000 * REWARD_THRESHOLD) < REWARD_THRESHOLD) {
            IGoaldDAO(_daoAddresses[count - 1]).initializeDecreasesHolders();
        }

        // Tell the DAOs so they can create rewards.
        uint256 index;
        for (; index < count; index++) {
            IGoaldDAO(_daoAddresses[index]).updateGovernanceStage();
        }

        // By storing the original amount once again, a refund is triggered (see https://eips.ethereum.org/EIPS/eip-2200).
        _status = RE_NOT_ENTERED;
    }

    /**
     * Executes a function on the DAO. Only the manager can call this function. This guards against reentrancy so any called function
     * cannot execute a call against this contract. This code is duplicated with `unsafeCallDAO()` in place of having an internal
     * `_callDAO()` since reentrancy guarding is not guaranteed.
     *
     * @param daoAddress Which DAO is being called.
     * @param encodedData The non-packed, abi encoded calldata that will be included with the function call.
     */
    function safeCallDAO(address daoAddress, bytes calldata encodedData) external returns (bytes memory) {
        // Reentrancy guard. We check against both normal reentrancy and DAO call reentrancy.
        require(_status    == RE_NOT_ENTERED);
        require(_daoStatus == RE_NOT_ENTERED);
        _status = RE_ENTERED;
        _daoStatus = RE_ENTERED;

        require(msg.sender == _manager, "Not manager");
        // `_isValidDAO` since DAOs can be disabled. Use `unsafeCallDAO()` if a call must be made to an invalid DAO.
        require(_isValidDAO[daoAddress] == VALID_DAO, "Not a valid DAO");

        // Call the function, bubbling on errors.
        (bool success, bytes memory returnData) = daoAddress.call(encodedData);

        // By storing the original amount once again, a refund is triggered (see https://eips.ethereum.org/EIPS/eip-2200).
        _status = RE_NOT_ENTERED;
        _daoStatus = RE_NOT_ENTERED;

        // See @OpenZeppelin.Address._functionCallWithValue()
        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();
            }
        }
    }

    /**
     * Executes a function on the DAO. Only the manager can call this function. This DOES NOT guard against reentrancy. Do not use
     * this unless reentrancy is needed or the call is made to an invlaid contract. Otherwise use `safeCallDAO()`. This code is
     * duplicated in place of having an internal `_callDAO()` since reentrancy guarding is not guaranteed.
     *
     * @param daoAddress Which DAO is being called.
     * @param encodedData The non-packed, abi encoded calldata that will be included with the function call.
     */
    function unsafeCallDAO(address daoAddress, bytes calldata encodedData) external returns (bytes memory) {
        // Reentrancy guard. We check against both normal reentrancy and DAO call reentrancy.
        require(_daoStatus == RE_NOT_ENTERED);
        _daoStatus = RE_ENTERED;

        require(msg.sender == _manager, "Not manager");
        // `_isValidDAO` since DAOs can be disabled.
        require(_isValidDAO[daoAddress] != UNTRACKED_DAO, "DAO not tracked");

        // Call the function, bubbling on errors.
        (bool success, bytes memory returnData) = daoAddress.call(encodedData);

        // By storing the original amount once again, a refund is triggered (see https://eips.ethereum.org/EIPS/eip-2200).
        _daoStatus = RE_NOT_ENTERED;
        
        // See @OpenZeppelin.Address._functionCallWithValue()
        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();
            }
        }
    }

    /// ERC20 Overrides ///

    /** This is overridden so we can update the reward balancees prior to the transfer completing. */
    function transfer(address recipient, uint256 amount) public override returns (bool) {
        // Reentrancy guard.
        require(_status == RE_NOT_ENTERED);
        _status = RE_ENTERED;

        // Preserve the original balances so we know if we need to change `_rewardHolders`. We need to call `pre()` and `post()` on
        // every DAO version to make sure that the reward balances are updated correctly.
        uint256 senderBefore = balanceOf(msg.sender);
        uint256 recipientBefore = balanceOf(recipient);

        // Update reward balances.
        uint256 count = _daoAddresses.length;
        uint256 index;
        for (; index < count; index ++) {
            IGoaldDAO(_daoAddresses[index]).preTransfer(msg.sender, recipient);
        }
        
        // Transfer the tokens.
        super.transfer(recipient, amount);
        
        // Update holder counts.
        index = 0;
        for (; index < count; index ++) {
            IGoaldDAO(_daoAddresses[index]).postTransfer(msg.sender, senderBefore, balanceOf(msg.sender), recipientBefore, balanceOf(recipient));
        }

        // By storing the original amount once again, a refund is triggered (see https://eips.ethereum.org/EIPS/eip-2200).
        _status = RE_NOT_ENTERED;

        return true;
    }

    /** This is overridden so we can update the reward balancees prior to the transfer completing. */
    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        // Reentrancy guard.
        require(_status == RE_NOT_ENTERED);
        _status = RE_ENTERED;

        // Preserve the original balances so we know if we need to change `_rewardHolders`. We need to call `pre()` and `post()` on
        // every DAO version to make sure that the reward balances are updated correctly.
        uint256 senderBefore = balanceOf(sender);
        uint256 recipientBefore = balanceOf(recipient);

        // Update reward balances.
        uint256 count = _daoAddresses.length;
        uint256 index;
        for (; index < count; index ++) {
            IGoaldDAO(_daoAddresses[index]).preTransfer(sender, recipient);
        }
        
        // Transfer the tokens.
        super.transferFrom(sender, recipient, amount);
        
        // Update holder counts.
        index = 0;
        for (; index < count; index ++) {
            IGoaldDAO(_daoAddresses[index]).postTransfer(sender, senderBefore, balanceOf(sender), recipientBefore, balanceOf(recipient));
        }

        // By storing the original amount once again, a refund is triggered (see https://eips.ethereum.org/EIPS/eip-2200).
        _status = RE_NOT_ENTERED;

        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"daoAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"status","type":"uint256"}],"name":"DAOStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"daoAddress","type":"address"}],"name":"DAOUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"goaldAddress","type":"address"}],"name":"GoaldDeployed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newManager","type":"address"}],"name":"ManagerChanged","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":[],"name":"_manager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimIssuance","outputs":[],"stateMutability":"nonpayable","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":[],"name":"freeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBaseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getDAOAddressAt","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDAOCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"daoAddress","type":"address"}],"name":"getDAOStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGoaldCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getGoaldDAO","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGovernanceStage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLatestDAO","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"goaldAddress","type":"address"}],"name":"goaldDeployed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initializeDAO","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"daoAddress","type":"address"},{"internalType":"bytes","name":"encodedData","type":"bytes"}],"name":"safeCallDAO","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"daoAddress","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"status","type":"uint256"}],"name":"setDAOStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newManager","type":"address"}],"name":"setManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unfreeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"daoAddress","type":"address"},{"internalType":"bytes","name":"encodedData","type":"bytes"}],"name":"unsafeCallDAO","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"daoAddress","type":"address"}],"name":"upgradeDAO","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260058054610100600160a81b03191633610100021790553480156200002857600080fd5b506040518060400160405280600581526020016411dbd85b1960da1b8152506040518060400160405280600581526020016411d3d0531160da1b81525081600390805190602001906200007d929190620000d5565b50805162000093906004906020840190620000d5565b50506005805460ff1916601217905550620000af6002620000bf565b6003600b556001600c5562000171565b6005805460ff191660ff92909216919091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200011857805160ff191683800117855562000148565b8280016001018555821562000148579182015b82811115620001485782518255916020019190600101906200012b565b50620001569291506200015a565b5090565b5b808211156200015657600081556001016200015b565b61285a80620001816000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063933d2a871161010f578063d0ebdbe7116100a2578063eb88c32c11610071578063eb88c32c146106a1578063ee3d2f3d146106c7578063f0329f6b146106cf578063ff2650fc146106d7576101e5565b8063d0ebdbe71461060a578063dd62ed3e14610630578063de9bbcc71461065e578063e963532f14610684576101e5565b8063a2ffdab4116100de578063a2ffdab4146105a2578063a457c2d7146105aa578063a9059cbb146105d6578063bdc32be014610602576101e5565b8063933d2a87146104b357806393798b2d146104e1578063951c32de1461056157806395d89b411461059a576101e5565b806339509351116101875780636c19abe7116101565780636c19abe7146103d357806370a08231146104055780637995bdf11461042b578063929272bd14610433576101e5565b8063395093511461038f5780633a479fb8146103bb57806362a5af3b146103c35780636a28f000146103cb576101e5565b806323b872dd116101c357806323b872dd146102c157806330176e13146102f7578063313ce5671461036957806338f7e46214610387576101e5565b806306fdde03146101ea578063095ea7b31461026757806318160ddd146102a7575b600080fd5b6101f26106df565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022c578181015183820152602001610214565b50505050905090810190601f1680156102595780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102936004803603604081101561027d57600080fd5b506001600160a01b038135169060200135610775565b604080519115158252519081900360200190f35b6102af610793565b60408051918252519081900360200190f35b610293600480360360608110156102d757600080fd5b506001600160a01b03813581169160208101359091169060400135610799565b6103676004803603602081101561030d57600080fd5b81019060208101813564010000000081111561032857600080fd5b82018360208201111561033a57600080fd5b8035906020019184600183028401116401000000008311171561035c57600080fd5b50909250905061094c565b005b6103716109cb565b6040805160ff9092168252519081900360200190f35b6102af6109d4565b610293600480360360408110156103a557600080fd5b506001600160a01b0381351690602001356109da565b6102af610a2d565b610367610a33565b610367610a9b565b610367600480360360608110156103e957600080fd5b506001600160a01b038135169060208101359060400135610b03565b6102af6004803603602081101561041b57600080fd5b50356001600160a01b0316610d11565b6102af610d30565b6101f26004803603604081101561044957600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561047457600080fd5b82018360208201111561048657600080fd5b803590602001918460018302840111640100000000831117156104a857600080fd5b509092509050610d36565b6102af600480360360408110156104c957600080fd5b506001600160a01b0381358116916020013516610ea5565b6101f2600480360360408110156104f757600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561052257600080fd5b82018360208201111561053457600080fd5b8035906020019184600183028401116401000000008311171561055657600080fd5b50909250905061127c565b61057e6004803603602081101561057757600080fd5b50356113bf565b604080516001600160a01b039092168252519081900360200190f35b6101f26113e9565b61036761144a565b610293600480360360408110156105c057600080fd5b506001600160a01b0381351690602001356116a6565b610293600480360360408110156105ec57600080fd5b506001600160a01b03813516906020013561170e565b6101f26118bb565b6103676004803603602081101561062057600080fd5b50356001600160a01b031661191c565b6102af6004803603604081101561064657600080fd5b506001600160a01b0381358116916020013516611afc565b6103676004803603602081101561067457600080fd5b50356001600160a01b0316611b27565b61057e6004803603602081101561069a57600080fd5b5035611ce1565b6102af600480360360208110156106b757600080fd5b50356001600160a01b0316611e1a565b61057e611e35565b61057e611ec2565b610367611ed6565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561076b5780601f106107405761010080835404028352916020019161076b565b820191906000526020600020905b81548152906001019060200180831161074e57829003601f168201915b5050505050905090565b6000610789610782612051565b8484612055565b5060015b92915050565b60025490565b60006001600b54146107aa57600080fd5b6002600b5560006107ba85610d11565b905060006107c785610d11565b60065490915060005b8181101561086357600681815481106107e557fe5b600091825260208220015460408051630d1c0dd960e31b81526001600160a01b038c811660048301528b81166024830152915191909216926368e06ec8926044808201939182900301818387803b15801561083f57600080fd5b505af1158015610853573d6000803e3d6000fd5b5050600190920191506107d09050565b61086e888888612141565b50600090505b81811015610937576006818154811061088957fe5b6000918252602090912001546001600160a01b0316634752d8dd89866108ae82610d11565b876108b88d610d11565b6040518663ffffffff1660e01b815260040180866001600160a01b0316815260200185815260200184815260200183815260200182815260200195505050505050600060405180830381600087803b15801561091357600080fd5b505af1158015610927573d6000803e3d6000fd5b5050600190920191506108749050565b50506001600b819055925050505b9392505050565b6001600b54148061095f57506003600b54145b61096857600080fd5b60055461010090046001600160a01b031633146109ba576040805162461bcd60e51b815260206004820152600b60248201526a2737ba1036b0b730b3b2b960a91b604482015290519081900360640190fd5b6109c66008838361264d565b505050565b60055460ff1690565b60095490565b60006107896109e7612051565b84610a2885600160006109f8612051565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906121c3565b612055565b60065490565b6001600b5414610a4257600080fd5b60055461010090046001600160a01b03163314610a94576040805162461bcd60e51b815260206004820152600b60248201526a2737ba1036b0b730b3b2b960a91b604482015290519081900360640190fd5b6003600b55565b6003600b5414610aaa57600080fd5b60055461010090046001600160a01b03163314610afc576040805162461bcd60e51b815260206004820152600b60248201526a2737ba1036b0b730b3b2b960a91b604482015290519081900360640190fd5b6001600b55565b6001600b541480610b1657506003600b54145b610b1f57600080fd5b60055461010090046001600160a01b03163314610b71576040805162461bcd60e51b815260206004820152600b60248201526a2737ba1036b0b730b3b2b960a91b604482015290519081900360640190fd5b826001600160a01b031660068381548110610b8857fe5b6000918252602090912001546001600160a01b031614610be8576040805162461bcd60e51b815260206004820152601660248201527509cdedc5adac2e8c6d0d2dcce4088829e40d2dcc8caf60531b604482015290519081900360640190fd5b6001811480610bf75750600281145b610c39576040805162461bcd60e51b815260206004820152600e60248201526d496e76616c69642073746174757360901b604482015290519081900360640190fd5b6001600160a01b038316600090815260076020526040902054818114801590610c6c57506001811480610c6c5750600281145b610cb6576040805162461bcd60e51b8152602060048201526016602482015275496e76616c69642063757272656e742073746174757360501b604482015290519081900360640190fd5b6001600160a01b0384166000818152600760209081526040918290208590558151928352820184905280517f80641210aa080f385bc750ba9a41e63b876779711c6652f2fbbbde183eefe02f9281900390910190a150505050565b6001600160a01b0381166000908152602081905260409020545b919050565b600a5490565b60606001600b5414610d4757600080fd5b6001600c5414610d5657600080fd5b6002600b819055600c5560055461010090046001600160a01b03163314610db2576040805162461bcd60e51b815260206004820152600b60248201526a2737ba1036b0b730b3b2b960a91b604482015290519081900360640190fd5b6001600160a01b038416600090815260076020526040902054600114610e11576040805162461bcd60e51b815260206004820152600f60248201526e4e6f7420612076616c69642044414f60881b604482015290519081900360640190fd5b60006060856001600160a01b03168585604051808383808284376040519201945060009350909150508083038183865af19150503d8060008114610e71576040519150601f19603f3d011682016040523d82523d6000602084013e610e76565b606091505b506001600b819055600c5590925090508115610e955791506109459050565b8051156101e55780518082602001fd5b60006001600c5414610eb657600080fd5b600680546000198101908110610ec857fe5b6000918252602090912001546001600160a01b03163314610f28576040805162461bcd60e51b815260206004820152601560248201527443616c6c6572206e6f74206c61746573742044414f60581b604482015290519081900360640190fd5b33600090815260076020526040902054600114610f83576040805162461bcd60e51b815260206004820152601460248201527343616c6c6572206e6f742076616c69642044414f60601b604482015290519081900360640190fd5b604080516001600160a01b038416815290517f389f4a28d99140627331631d6b3bf3111066be50ecc29c13d28cf79c199b30819181900360200190a16009805460018101909155600a5460031415610fdf57600091505061078d565b6000600a821015610ff357506103e86110b6565b601482101561100557506103846110b6565b601e82101561101757506103206110b6565b602882101561102957506102bc6110b6565b603282101561103b57506102586110b6565b603c82101561104d57506101f46110b6565b604682101561105f57506101906110b6565b6050821015611071575061012c6110b6565b605a821015611082575060c86110b6565b6064821015611093575060646110b6565b610e108210156110a55750600a6110b6565b6002600a5414156110b6576003600a555b806110c65760009250505061078d565b6001600160a01b03851660009081526007602052604090205415611120576040805162461bcd60e51b815260206004820152600c60248201526b43616e27742062652044414f60a01b604482015290519081900360640190fd5b6001600160a01b038516611173576040805162461bcd60e51b815260206004820152601560248201527443616e2774206265207a65726f206164647265737360581b604482015290519081900360640190fd5b6001600160a01b0385163014156111c8576040805162461bcd60e51b815260206004820152601460248201527321b0b713ba1031329023b7b0b632103a37b5b2b760611b604482015290519081900360640190fd5b60006111d2610793565b9050808183011161121b576040805162461bcd60e51b815260206004820152600e60248201526d27bb32b9333637bb9032b93937b960911b604482015290519081900360640190fd5b6301406f4082820110611266576040805162461bcd60e51b815260206004820152600e60248201526d4578636565647320737570706c7960901b604482015290519081900360640190fd5b611273866064840261221d565b50949350505050565b60606001600c541461128d57600080fd5b6002600c5560055461010090046001600160a01b031633146112e4576040805162461bcd60e51b815260206004820152600b60248201526a2737ba1036b0b730b3b2b960a91b604482015290519081900360640190fd5b6001600160a01b038416600090815260076020526040902054611340576040805162461bcd60e51b815260206004820152600f60248201526e111053c81b9bdd081d1c9858dad959608a1b604482015290519081900360640190fd5b60006060856001600160a01b03168585604051808383808284376040519201945060009350909150508083038183865af19150503d80600081146113a0576040519150601f19603f3d011682016040523d82523d6000602084013e6113a5565b606091505b506001600c5590925090508115610e955791506109459050565b6000600682815481106113ce57fe5b6000918252602090912001546001600160a01b031692915050565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561076b5780601f106107405761010080835404028352916020019161076b565b6001600b541461145957600080fd5b6002600b5560055461010090046001600160a01b031633146114b0576040805162461bcd60e51b815260206004820152600b60248201526a2737ba1036b0b730b3b2b960a91b604482015290519081900360640190fd5b6001600a54146114fc576040805162461bcd60e51b8152602060048201526012602482015271125cdcdd585b98d9481d5b98db185a5b595960721b604482015290519081900360640190fd5b6005546000906115199061010090046001600160a01b0316610d11565b905062a7d8c0811015611567576040805162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820746f6b656e7360781b604482015290519081900360640190fd5b6005546115859061010090046001600160a01b031662a7d8c061230d565b6002600a5560065480158015906115a25750606462a7d8bf198301105b1561161857600660018203815481106115b757fe5b60009182526020822001546040805163080a8ae360e21b815290516001600160a01b039092169263202a2b8c9260048084019382900301818387803b1580156115ff57600080fd5b505af1158015611613573d6000803e3d6000fd5b505050505b60005b8181101561169c576006818154811061163057fe5b600091825260208220015460408051637dd3249160e01b815290516001600160a01b0390921692637dd324919260048084019382900301818387803b15801561167857600080fd5b505af115801561168c573d6000803e3d6000fd5b50506001909201915061161b9050565b50506001600b5550565b60006107896116b3612051565b84610a288560405180606001604052806025815260200161280060259139600160006116dd612051565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612409565b60006001600b541461171f57600080fd5b6002600b55600061172f33610d11565b9050600061173c85610d11565b60065490915060005b818110156117d6576006818154811061175a57fe5b600091825260208220015460408051630d1c0dd960e31b81523360048201526001600160a01b038b81166024830152915191909216926368e06ec8926044808201939182900301818387803b1580156117b257600080fd5b505af11580156117c6573d6000803e3d6000fd5b5050600190920191506117459050565b6117e087876124a0565b50600090505b818110156118a957600681815481106117fb57fe5b6000918252602090912001546001600160a01b0316634752d8dd338661182082610d11565b8761182a8d610d11565b6040518663ffffffff1660e01b815260040180866001600160a01b0316815260200185815260200184815260200183815260200182815260200195505050505050600060405180830381600087803b15801561188557600080fd5b505af1158015611899573d6000803e3d6000fd5b5050600190920191506117e69050565b50506001600b81905595945050505050565b60088054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561076b5780601f106107405761010080835404028352916020019161076b565b6001600b54148061192f57506003600b54145b61193857600080fd5b60055461010090046001600160a01b0316331461198a576040805162461bcd60e51b815260206004820152600b60248201526a2737ba1036b0b730b3b2b960a91b604482015290519081900360640190fd5b6001600160a01b0381166119dd576040805162461bcd60e51b815260206004820152601560248201527443616e2774206265207a65726f206164647265737360581b604482015290519081900360640190fd5b6001600160a01b038116301415611a33576040805162461bcd60e51b815260206004820152601560248201527443616e27742062652074686973206164647265737360581b604482015290519081900360640190fd5b6001600a54141580611a4f575062a7d8c0611a4d82610d11565b115b611aa0576040805162461bcd60e51b815260206004820152601a60248201527f4e6577206d616e616765722063616e277420696e69742044414f000000000000604482015290519081900360640190fd5b600580546001600160a01b0383166101008102610100600160a81b03199092169190911790915560408051918252517f198db6e425fb8aafd1823c6ca50be2d51e5764571a5ae0f0f21c6812e45def0b9181900360200190a150565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6003600b5414611b3657600080fd5b6002600b55803b80611b80576040805162461bcd60e51b815260206004820152600e60248201526d139bdd08184818dbdb9d1c9858dd60921b604482015290519081900360640190fd5b6001600160a01b03821660009081526007602052604090205415611be1576040805162461bcd60e51b8152602060048201526013602482015272111053c8185b1c9958591e481d1c9858dad959606a1b604482015290519081900360640190fd5b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b03851690811790915560008181526007602052604080822093909355600a546009548451639b7a47c360e01b81526004810192909252602482015292519192639b7a47c3926044808301939282900301818387803b158015611c8357600080fd5b505af1158015611c97573d6000803e3d6000fd5b5050604080516001600160a01b038616815290517f09f6ca648131ba8cd5f78fdb7a29aca5740aa94f516530e0a5a39e44c3cacf719350908190036020019150a150506003600b55565b60006009548210611d28576040805162461bcd60e51b815260206004820152600c60248201526b494420746f6f206c6172676560a01b604482015290519081900360640190fd5b600654600080805b83831015611ddf5760068381548110611d4557fe5b6000918252602091829020015460408051631c7bf23160e11b815290516001600160a01b03909216935083926338f7e46292600480840193829003018186803b158015611d9157600080fd5b505afa158015611da5573d6000803e3d6000fd5b505050506040513d6020811015611dbb57600080fd5b50519190910190818611611dd4579350610d2b92505050565b600190920191611d30565b6040805162461bcd60e51b815260206004820152600b60248201526a556e6b6e6f776e2044414f60a81b604482015290519081900360640190fd5b6001600160a01b031660009081526007602052604090205490565b6006805460009182916000198101908110611e4c57fe5b60009182526020808320909101546001600160a01b03168083526007909152604090912054909150600114611ebd576040805162461bcd60e51b815260206004820152601260248201527113185d195cdd08111053c81a5b9d985b1a5960721b604482015290519081900360640190fd5b905090565b60055461010090046001600160a01b031681565b6001600b5414611ee557600080fd5b60055461010090046001600160a01b03163314611f37576040805162461bcd60e51b815260206004820152600b60248201526a2737ba1036b0b730b3b2b960a91b604482015290519081900360640190fd5b600a5415611f7e576040805162461bcd60e51b815260206004820152600f60248201526e105b1c9958591e4818db185a5b5959608a1b604482015290519081900360640190fd5b600554606490611f9b9061010090046001600160a01b0316610d11565b101561202c576006546000905b808210156120295760068281548110611fbd57fe5b600091825260208220015460408051631ccad89560e01b815290516001600160a01b0390921692631ccad8959260048084019382900301818387803b15801561200557600080fd5b505af1158015612019573d6000803e3d6000fd5b505060019093019250611fa89050565b50505b60055461204a9061010090046001600160a01b031662b71b0061221d565b6001600a55565b3390565b6001600160a01b03831661209a5760405162461bcd60e51b81526004018080602001828103825260248152602001806127dc6024913960400191505060405180910390fd5b6001600160a01b0382166120df5760405162461bcd60e51b81526004018080602001828103825260228152602001806127266022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600061214e8484846124b0565b6121b98461215a612051565b610a288560405180606001604052806028815260200161276e602891396001600160a01b038a16600090815260016020526040812090612198612051565b6001600160a01b031681526020810191909152604001600020549190612409565b5060019392505050565b600082820183811015610945576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216612278576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b612284600083836109c6565b60025461229190826121c3565b6002556001600160a01b0382166000908152602081905260409020546122b790826121c3565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166123525760405162461bcd60e51b81526004018080602001828103825260218152602001806127966021913960400191505060405180910390fd5b61235e826000836109c6565b61239b81604051806060016040528060228152602001612704602291396001600160a01b0385166000908152602081905260409020549190612409565b6001600160a01b0383166000908152602081905260409020556002546123c1908261260b565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600081848411156124985760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561245d578181015183820152602001612445565b50505050905090810190601f16801561248a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60006107896124ad612051565b84845b6001600160a01b0383166124f55760405162461bcd60e51b81526004018080602001828103825260258152602001806127b76025913960400191505060405180910390fd5b6001600160a01b03821661253a5760405162461bcd60e51b81526004018080602001828103825260238152602001806126e16023913960400191505060405180910390fd5b6125458383836109c6565b61258281604051806060016040528060268152602001612748602691396001600160a01b0386166000908152602081905260409020549190612409565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546125b190826121c3565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600061094583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612409565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061268e5782800160ff198235161785556126bb565b828001600101855582156126bb579182015b828111156126bb5782358255916020019190600101906126a0565b506126c79291506126cb565b5090565b5b808211156126c757600081556001016126cc56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b42d28226cc2a3d75fba564d2d9d50af3b39b7ed489e852f1b565890f42f69f064736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c8063933d2a871161010f578063d0ebdbe7116100a2578063eb88c32c11610071578063eb88c32c146106a1578063ee3d2f3d146106c7578063f0329f6b146106cf578063ff2650fc146106d7576101e5565b8063d0ebdbe71461060a578063dd62ed3e14610630578063de9bbcc71461065e578063e963532f14610684576101e5565b8063a2ffdab4116100de578063a2ffdab4146105a2578063a457c2d7146105aa578063a9059cbb146105d6578063bdc32be014610602576101e5565b8063933d2a87146104b357806393798b2d146104e1578063951c32de1461056157806395d89b411461059a576101e5565b806339509351116101875780636c19abe7116101565780636c19abe7146103d357806370a08231146104055780637995bdf11461042b578063929272bd14610433576101e5565b8063395093511461038f5780633a479fb8146103bb57806362a5af3b146103c35780636a28f000146103cb576101e5565b806323b872dd116101c357806323b872dd146102c157806330176e13146102f7578063313ce5671461036957806338f7e46214610387576101e5565b806306fdde03146101ea578063095ea7b31461026757806318160ddd146102a7575b600080fd5b6101f26106df565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022c578181015183820152602001610214565b50505050905090810190601f1680156102595780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102936004803603604081101561027d57600080fd5b506001600160a01b038135169060200135610775565b604080519115158252519081900360200190f35b6102af610793565b60408051918252519081900360200190f35b610293600480360360608110156102d757600080fd5b506001600160a01b03813581169160208101359091169060400135610799565b6103676004803603602081101561030d57600080fd5b81019060208101813564010000000081111561032857600080fd5b82018360208201111561033a57600080fd5b8035906020019184600183028401116401000000008311171561035c57600080fd5b50909250905061094c565b005b6103716109cb565b6040805160ff9092168252519081900360200190f35b6102af6109d4565b610293600480360360408110156103a557600080fd5b506001600160a01b0381351690602001356109da565b6102af610a2d565b610367610a33565b610367610a9b565b610367600480360360608110156103e957600080fd5b506001600160a01b038135169060208101359060400135610b03565b6102af6004803603602081101561041b57600080fd5b50356001600160a01b0316610d11565b6102af610d30565b6101f26004803603604081101561044957600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561047457600080fd5b82018360208201111561048657600080fd5b803590602001918460018302840111640100000000831117156104a857600080fd5b509092509050610d36565b6102af600480360360408110156104c957600080fd5b506001600160a01b0381358116916020013516610ea5565b6101f2600480360360408110156104f757600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561052257600080fd5b82018360208201111561053457600080fd5b8035906020019184600183028401116401000000008311171561055657600080fd5b50909250905061127c565b61057e6004803603602081101561057757600080fd5b50356113bf565b604080516001600160a01b039092168252519081900360200190f35b6101f26113e9565b61036761144a565b610293600480360360408110156105c057600080fd5b506001600160a01b0381351690602001356116a6565b610293600480360360408110156105ec57600080fd5b506001600160a01b03813516906020013561170e565b6101f26118bb565b6103676004803603602081101561062057600080fd5b50356001600160a01b031661191c565b6102af6004803603604081101561064657600080fd5b506001600160a01b0381358116916020013516611afc565b6103676004803603602081101561067457600080fd5b50356001600160a01b0316611b27565b61057e6004803603602081101561069a57600080fd5b5035611ce1565b6102af600480360360208110156106b757600080fd5b50356001600160a01b0316611e1a565b61057e611e35565b61057e611ec2565b610367611ed6565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561076b5780601f106107405761010080835404028352916020019161076b565b820191906000526020600020905b81548152906001019060200180831161074e57829003601f168201915b5050505050905090565b6000610789610782612051565b8484612055565b5060015b92915050565b60025490565b60006001600b54146107aa57600080fd5b6002600b5560006107ba85610d11565b905060006107c785610d11565b60065490915060005b8181101561086357600681815481106107e557fe5b600091825260208220015460408051630d1c0dd960e31b81526001600160a01b038c811660048301528b81166024830152915191909216926368e06ec8926044808201939182900301818387803b15801561083f57600080fd5b505af1158015610853573d6000803e3d6000fd5b5050600190920191506107d09050565b61086e888888612141565b50600090505b81811015610937576006818154811061088957fe5b6000918252602090912001546001600160a01b0316634752d8dd89866108ae82610d11565b876108b88d610d11565b6040518663ffffffff1660e01b815260040180866001600160a01b0316815260200185815260200184815260200183815260200182815260200195505050505050600060405180830381600087803b15801561091357600080fd5b505af1158015610927573d6000803e3d6000fd5b5050600190920191506108749050565b50506001600b819055925050505b9392505050565b6001600b54148061095f57506003600b54145b61096857600080fd5b60055461010090046001600160a01b031633146109ba576040805162461bcd60e51b815260206004820152600b60248201526a2737ba1036b0b730b3b2b960a91b604482015290519081900360640190fd5b6109c66008838361264d565b505050565b60055460ff1690565b60095490565b60006107896109e7612051565b84610a2885600160006109f8612051565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906121c3565b612055565b60065490565b6001600b5414610a4257600080fd5b60055461010090046001600160a01b03163314610a94576040805162461bcd60e51b815260206004820152600b60248201526a2737ba1036b0b730b3b2b960a91b604482015290519081900360640190fd5b6003600b55565b6003600b5414610aaa57600080fd5b60055461010090046001600160a01b03163314610afc576040805162461bcd60e51b815260206004820152600b60248201526a2737ba1036b0b730b3b2b960a91b604482015290519081900360640190fd5b6001600b55565b6001600b541480610b1657506003600b54145b610b1f57600080fd5b60055461010090046001600160a01b03163314610b71576040805162461bcd60e51b815260206004820152600b60248201526a2737ba1036b0b730b3b2b960a91b604482015290519081900360640190fd5b826001600160a01b031660068381548110610b8857fe5b6000918252602090912001546001600160a01b031614610be8576040805162461bcd60e51b815260206004820152601660248201527509cdedc5adac2e8c6d0d2dcce4088829e40d2dcc8caf60531b604482015290519081900360640190fd5b6001811480610bf75750600281145b610c39576040805162461bcd60e51b815260206004820152600e60248201526d496e76616c69642073746174757360901b604482015290519081900360640190fd5b6001600160a01b038316600090815260076020526040902054818114801590610c6c57506001811480610c6c5750600281145b610cb6576040805162461bcd60e51b8152602060048201526016602482015275496e76616c69642063757272656e742073746174757360501b604482015290519081900360640190fd5b6001600160a01b0384166000818152600760209081526040918290208590558151928352820184905280517f80641210aa080f385bc750ba9a41e63b876779711c6652f2fbbbde183eefe02f9281900390910190a150505050565b6001600160a01b0381166000908152602081905260409020545b919050565b600a5490565b60606001600b5414610d4757600080fd5b6001600c5414610d5657600080fd5b6002600b819055600c5560055461010090046001600160a01b03163314610db2576040805162461bcd60e51b815260206004820152600b60248201526a2737ba1036b0b730b3b2b960a91b604482015290519081900360640190fd5b6001600160a01b038416600090815260076020526040902054600114610e11576040805162461bcd60e51b815260206004820152600f60248201526e4e6f7420612076616c69642044414f60881b604482015290519081900360640190fd5b60006060856001600160a01b03168585604051808383808284376040519201945060009350909150508083038183865af19150503d8060008114610e71576040519150601f19603f3d011682016040523d82523d6000602084013e610e76565b606091505b506001600b819055600c5590925090508115610e955791506109459050565b8051156101e55780518082602001fd5b60006001600c5414610eb657600080fd5b600680546000198101908110610ec857fe5b6000918252602090912001546001600160a01b03163314610f28576040805162461bcd60e51b815260206004820152601560248201527443616c6c6572206e6f74206c61746573742044414f60581b604482015290519081900360640190fd5b33600090815260076020526040902054600114610f83576040805162461bcd60e51b815260206004820152601460248201527343616c6c6572206e6f742076616c69642044414f60601b604482015290519081900360640190fd5b604080516001600160a01b038416815290517f389f4a28d99140627331631d6b3bf3111066be50ecc29c13d28cf79c199b30819181900360200190a16009805460018101909155600a5460031415610fdf57600091505061078d565b6000600a821015610ff357506103e86110b6565b601482101561100557506103846110b6565b601e82101561101757506103206110b6565b602882101561102957506102bc6110b6565b603282101561103b57506102586110b6565b603c82101561104d57506101f46110b6565b604682101561105f57506101906110b6565b6050821015611071575061012c6110b6565b605a821015611082575060c86110b6565b6064821015611093575060646110b6565b610e108210156110a55750600a6110b6565b6002600a5414156110b6576003600a555b806110c65760009250505061078d565b6001600160a01b03851660009081526007602052604090205415611120576040805162461bcd60e51b815260206004820152600c60248201526b43616e27742062652044414f60a01b604482015290519081900360640190fd5b6001600160a01b038516611173576040805162461bcd60e51b815260206004820152601560248201527443616e2774206265207a65726f206164647265737360581b604482015290519081900360640190fd5b6001600160a01b0385163014156111c8576040805162461bcd60e51b815260206004820152601460248201527321b0b713ba1031329023b7b0b632103a37b5b2b760611b604482015290519081900360640190fd5b60006111d2610793565b9050808183011161121b576040805162461bcd60e51b815260206004820152600e60248201526d27bb32b9333637bb9032b93937b960911b604482015290519081900360640190fd5b6301406f4082820110611266576040805162461bcd60e51b815260206004820152600e60248201526d4578636565647320737570706c7960901b604482015290519081900360640190fd5b611273866064840261221d565b50949350505050565b60606001600c541461128d57600080fd5b6002600c5560055461010090046001600160a01b031633146112e4576040805162461bcd60e51b815260206004820152600b60248201526a2737ba1036b0b730b3b2b960a91b604482015290519081900360640190fd5b6001600160a01b038416600090815260076020526040902054611340576040805162461bcd60e51b815260206004820152600f60248201526e111053c81b9bdd081d1c9858dad959608a1b604482015290519081900360640190fd5b60006060856001600160a01b03168585604051808383808284376040519201945060009350909150508083038183865af19150503d80600081146113a0576040519150601f19603f3d011682016040523d82523d6000602084013e6113a5565b606091505b506001600c5590925090508115610e955791506109459050565b6000600682815481106113ce57fe5b6000918252602090912001546001600160a01b031692915050565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561076b5780601f106107405761010080835404028352916020019161076b565b6001600b541461145957600080fd5b6002600b5560055461010090046001600160a01b031633146114b0576040805162461bcd60e51b815260206004820152600b60248201526a2737ba1036b0b730b3b2b960a91b604482015290519081900360640190fd5b6001600a54146114fc576040805162461bcd60e51b8152602060048201526012602482015271125cdcdd585b98d9481d5b98db185a5b595960721b604482015290519081900360640190fd5b6005546000906115199061010090046001600160a01b0316610d11565b905062a7d8c0811015611567576040805162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820746f6b656e7360781b604482015290519081900360640190fd5b6005546115859061010090046001600160a01b031662a7d8c061230d565b6002600a5560065480158015906115a25750606462a7d8bf198301105b1561161857600660018203815481106115b757fe5b60009182526020822001546040805163080a8ae360e21b815290516001600160a01b039092169263202a2b8c9260048084019382900301818387803b1580156115ff57600080fd5b505af1158015611613573d6000803e3d6000fd5b505050505b60005b8181101561169c576006818154811061163057fe5b600091825260208220015460408051637dd3249160e01b815290516001600160a01b0390921692637dd324919260048084019382900301818387803b15801561167857600080fd5b505af115801561168c573d6000803e3d6000fd5b50506001909201915061161b9050565b50506001600b5550565b60006107896116b3612051565b84610a288560405180606001604052806025815260200161280060259139600160006116dd612051565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612409565b60006001600b541461171f57600080fd5b6002600b55600061172f33610d11565b9050600061173c85610d11565b60065490915060005b818110156117d6576006818154811061175a57fe5b600091825260208220015460408051630d1c0dd960e31b81523360048201526001600160a01b038b81166024830152915191909216926368e06ec8926044808201939182900301818387803b1580156117b257600080fd5b505af11580156117c6573d6000803e3d6000fd5b5050600190920191506117459050565b6117e087876124a0565b50600090505b818110156118a957600681815481106117fb57fe5b6000918252602090912001546001600160a01b0316634752d8dd338661182082610d11565b8761182a8d610d11565b6040518663ffffffff1660e01b815260040180866001600160a01b0316815260200185815260200184815260200183815260200182815260200195505050505050600060405180830381600087803b15801561188557600080fd5b505af1158015611899573d6000803e3d6000fd5b5050600190920191506117e69050565b50506001600b81905595945050505050565b60088054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561076b5780601f106107405761010080835404028352916020019161076b565b6001600b54148061192f57506003600b54145b61193857600080fd5b60055461010090046001600160a01b0316331461198a576040805162461bcd60e51b815260206004820152600b60248201526a2737ba1036b0b730b3b2b960a91b604482015290519081900360640190fd5b6001600160a01b0381166119dd576040805162461bcd60e51b815260206004820152601560248201527443616e2774206265207a65726f206164647265737360581b604482015290519081900360640190fd5b6001600160a01b038116301415611a33576040805162461bcd60e51b815260206004820152601560248201527443616e27742062652074686973206164647265737360581b604482015290519081900360640190fd5b6001600a54141580611a4f575062a7d8c0611a4d82610d11565b115b611aa0576040805162461bcd60e51b815260206004820152601a60248201527f4e6577206d616e616765722063616e277420696e69742044414f000000000000604482015290519081900360640190fd5b600580546001600160a01b0383166101008102610100600160a81b03199092169190911790915560408051918252517f198db6e425fb8aafd1823c6ca50be2d51e5764571a5ae0f0f21c6812e45def0b9181900360200190a150565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6003600b5414611b3657600080fd5b6002600b55803b80611b80576040805162461bcd60e51b815260206004820152600e60248201526d139bdd08184818dbdb9d1c9858dd60921b604482015290519081900360640190fd5b6001600160a01b03821660009081526007602052604090205415611be1576040805162461bcd60e51b8152602060048201526013602482015272111053c8185b1c9958591e481d1c9858dad959606a1b604482015290519081900360640190fd5b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b03851690811790915560008181526007602052604080822093909355600a546009548451639b7a47c360e01b81526004810192909252602482015292519192639b7a47c3926044808301939282900301818387803b158015611c8357600080fd5b505af1158015611c97573d6000803e3d6000fd5b5050604080516001600160a01b038616815290517f09f6ca648131ba8cd5f78fdb7a29aca5740aa94f516530e0a5a39e44c3cacf719350908190036020019150a150506003600b55565b60006009548210611d28576040805162461bcd60e51b815260206004820152600c60248201526b494420746f6f206c6172676560a01b604482015290519081900360640190fd5b600654600080805b83831015611ddf5760068381548110611d4557fe5b6000918252602091829020015460408051631c7bf23160e11b815290516001600160a01b03909216935083926338f7e46292600480840193829003018186803b158015611d9157600080fd5b505afa158015611da5573d6000803e3d6000fd5b505050506040513d6020811015611dbb57600080fd5b50519190910190818611611dd4579350610d2b92505050565b600190920191611d30565b6040805162461bcd60e51b815260206004820152600b60248201526a556e6b6e6f776e2044414f60a81b604482015290519081900360640190fd5b6001600160a01b031660009081526007602052604090205490565b6006805460009182916000198101908110611e4c57fe5b60009182526020808320909101546001600160a01b03168083526007909152604090912054909150600114611ebd576040805162461bcd60e51b815260206004820152601260248201527113185d195cdd08111053c81a5b9d985b1a5960721b604482015290519081900360640190fd5b905090565b60055461010090046001600160a01b031681565b6001600b5414611ee557600080fd5b60055461010090046001600160a01b03163314611f37576040805162461bcd60e51b815260206004820152600b60248201526a2737ba1036b0b730b3b2b960a91b604482015290519081900360640190fd5b600a5415611f7e576040805162461bcd60e51b815260206004820152600f60248201526e105b1c9958591e4818db185a5b5959608a1b604482015290519081900360640190fd5b600554606490611f9b9061010090046001600160a01b0316610d11565b101561202c576006546000905b808210156120295760068281548110611fbd57fe5b600091825260208220015460408051631ccad89560e01b815290516001600160a01b0390921692631ccad8959260048084019382900301818387803b15801561200557600080fd5b505af1158015612019573d6000803e3d6000fd5b505060019093019250611fa89050565b50505b60055461204a9061010090046001600160a01b031662b71b0061221d565b6001600a55565b3390565b6001600160a01b03831661209a5760405162461bcd60e51b81526004018080602001828103825260248152602001806127dc6024913960400191505060405180910390fd5b6001600160a01b0382166120df5760405162461bcd60e51b81526004018080602001828103825260228152602001806127266022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600061214e8484846124b0565b6121b98461215a612051565b610a288560405180606001604052806028815260200161276e602891396001600160a01b038a16600090815260016020526040812090612198612051565b6001600160a01b031681526020810191909152604001600020549190612409565b5060019392505050565b600082820183811015610945576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216612278576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b612284600083836109c6565b60025461229190826121c3565b6002556001600160a01b0382166000908152602081905260409020546122b790826121c3565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166123525760405162461bcd60e51b81526004018080602001828103825260218152602001806127966021913960400191505060405180910390fd5b61235e826000836109c6565b61239b81604051806060016040528060228152602001612704602291396001600160a01b0385166000908152602081905260409020549190612409565b6001600160a01b0383166000908152602081905260409020556002546123c1908261260b565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600081848411156124985760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561245d578181015183820152602001612445565b50505050905090810190601f16801561248a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60006107896124ad612051565b84845b6001600160a01b0383166124f55760405162461bcd60e51b81526004018080602001828103825260258152602001806127b76025913960400191505060405180910390fd5b6001600160a01b03821661253a5760405162461bcd60e51b81526004018080602001828103825260238152602001806126e16023913960400191505060405180910390fd5b6125458383836109c6565b61258281604051806060016040528060268152602001612748602691396001600160a01b0386166000908152602081905260409020549190612409565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546125b190826121c3565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600061094583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612409565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061268e5782800160ff198235161785556126bb565b828001600101855582156126bb579182015b828111156126bb5782358255916020019190600101906126a0565b506126c79291506126cb565b5090565b5b808211156126c757600081556001016126cc56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b42d28226cc2a3d75fba564d2d9d50af3b39b7ed489e852f1b565890f42f69f064736f6c634300060c0033

Deployed Bytecode Sourcemap

27101:22011:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16973:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19079:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19079:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18048:100;;;:::i;:::-;;;;;;;;;;;;;;;;47776:1333;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;47776:1333:0;;;;;;;;;;;;;;;;;:::i;38501:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38501:269:0;;-1:-1:-1;38501:269:0;-1:-1:-1;38501:269:0;:::i;:::-;;17900:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34058:94;;;:::i;20452:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20452:218:0;;;;;;;;:::i;39922:101::-;;;:::i;30694:199::-;;;:::i;32620:201::-;;;:::i;30945:831::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30945:831:0;;;;;;;;;;;;;:::i;18211:119::-;;;;;;;;;;;;;;;;-1:-1:-1;18211:119:0;-1:-1:-1;;;;;18211:119:0;;:::i;40606:104::-;;;:::i;42588:1608::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42588:1608:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42588:1608:0;;-1:-1:-1;42588:1608:0;-1:-1:-1;42588:1608:0;:::i;35845:2598::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35845:2598:0;;;;;;;;;;:::i;44762:1444::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44762:1444:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44762:1444:0;;-1:-1:-1;44762:1444:0;-1:-1:-1;44762:1444:0;:::i;39736:118::-;;;;;;;;;;;;;;;;-1:-1:-1;39736:118:0;;:::i;:::-;;;;-1:-1:-1;;;;;39736:118:0;;;;;;;;;;;;;;17175:87;;;:::i;40762:1297::-;;;:::i;21173:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21173:269:0;;;;;;;;:::i;46348:1317::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;46348:1317:0;;;;;;;;:::i;33892:104::-;;;:::i;31784:751::-;;;;;;;;;;;;;;;;-1:-1:-1;31784:751:0;-1:-1:-1;;;;;31784:751:0;;:::i;18781:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18781:151:0;;;;;;;;;;:::i;32904:908::-;;;;;;;;;;;;;;;;-1:-1:-1;32904:908:0;-1:-1:-1;;;;;32904:908:0;;:::i;34229:574::-;;;;;;;;;;;;;;;;-1:-1:-1;34229:574:0;;:::i;40097:123::-;;;;;;;;;;;;;;;;-1:-1:-1;40097:123:0;-1:-1:-1;;;;;40097:123:0;;:::i;40292:243::-;;;:::i;27137:36::-;;;:::i;38901:764::-;;;:::i;16973:83::-;17043:5;17036:12;;;;;;;;-1:-1:-1;;17036:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17010:13;;17036:12;;17043:5;;17036:12;;17043:5;17036:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16973:83;:::o;19079:169::-;19162:4;19179:39;19188:12;:10;:12::i;:::-;19202:7;19211:6;19179:8;:39::i;:::-;-1:-1:-1;19236:4:0;19079:169;;;;;:::o;18048:100::-;18128:12;;18048:100;:::o;47776:1333::-;47874:4;29828:1;47929:7;;:25;47921:34;;;;;;29878:1;47966:7;:20;48223;48246:17;48256:6;48246:9;:17::i;:::-;48223:40;;48274:23;48300:20;48310:9;48300;:20::i;:::-;48385:13;:20;48274:46;;-1:-1:-1;48369:13:0;48440:121;48455:5;48447;:13;48440:121;;;48497:13;48511:5;48497:20;;;;;;;;;;;;;;;;;48487:62;;;-1:-1:-1;;;48487:62:0;;-1:-1:-1;;;;;48487:62:0;;;;;;;;;;;;;;;;48497:20;;;;;48487:43;;:62;;;;;;;;;;;48497:20;;48487:62;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48462:8:0;;;;;-1:-1:-1;48440:121:0;;-1:-1:-1;48440:121:0;;48614:45;48633:6;48641:9;48652:6;48614:18;:45::i;:::-;;48722:1;48714:9;;48734:183;48749:5;48741;:13;48734:183;;;48791:13;48805:5;48791:20;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48791:20:0;48781:44;48826:6;48834:12;48848:17;48826:6;48848:9;:17::i;:::-;48867:15;48884:20;48894:9;48884;:20::i;:::-;48781:124;;;;;;;;;;;;;-1:-1:-1;;;;;48781:124:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48756:8:0;;;;;-1:-1:-1;48734:183:0;;-1:-1:-1;48734:183:0;;-1:-1:-1;;29828:1:0;49053:7;:24;;;29828:1;-1:-1:-1;;;47776:1333:0;;;;;;:::o;38501:269::-;29828:1;38614:7;;:25;:49;;;;29928:1;38643:7;;:20;38614:49;38606:58;;;;;;38697:8;;;;;-1:-1:-1;;;;;38697:8:0;38683:10;:22;38675:46;;;;;-1:-1:-1;;;38675:46:0;;;;;;;;;;;;-1:-1:-1;;;38675:46:0;;;;;;;;;;;;;;;38734:28;:13;38750:12;;38734:28;:::i;:::-;;38501:269;;:::o;17900:83::-;17966:9;;;;17900:83;:::o;34058:94::-;34133:11;;34058:94;:::o;20452:218::-;20540:4;20557:83;20566:12;:10;:12::i;:::-;20580:7;20589:50;20628:10;20589:11;:25;20601:12;:10;:12::i;:::-;-1:-1:-1;;;;;20589:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20589:25:0;;;:34;;;;;;;;;;;:38;:50::i;:::-;20557:8;:83::i;39922:101::-;39995:13;:20;39922:101;:::o;30694:199::-;29828:1;30770:7;;:25;30762:34;;;;;;30829:8;;;;;-1:-1:-1;;;;;30829:8:0;30815:10;:22;30807:46;;;;;-1:-1:-1;;;30807:46:0;;;;;;;;;;;;-1:-1:-1;;;30807:46:0;;;;;;;;;;;;;;;29928:1;30866:7;:19;30694:199::o;32620:201::-;29928:1;32698:7;;:20;32690:29;;;;;;32752:8;;;;;-1:-1:-1;;;;;32752:8:0;32738:10;:22;32730:46;;;;;-1:-1:-1;;;32730:46:0;;;;;;;;;;;;-1:-1:-1;;;32730:46:0;;;;;;;;;;;;;;;29828:1;32789:7;:24;32620:201::o;30945:831::-;29828:1;31076:7;;:25;:49;;;;29928:1;31105:7;;:20;31076:49;31068:58;;;;;;31159:8;;;;;-1:-1:-1;;;;;31159:8:0;31145:10;:22;31137:46;;;;;-1:-1:-1;;;31137:46:0;;;;;;;;;;;;-1:-1:-1;;;31137:46:0;;;;;;;;;;;;;;;31268:10;-1:-1:-1;;;;;31244:34:0;:13;31258:5;31244:20;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31244:20:0;:34;31236:69;;;;;-1:-1:-1;;;31236:69:0;;;;;;;;;;;;-1:-1:-1;;;31236:69:0;;;;;;;;;;;;;;;27494:1;31359:6;:19;:44;;;;27543:1;31382:6;:21;31359:44;31351:71;;;;;-1:-1:-1;;;31351:71:0;;;;;;;;;;;;-1:-1:-1;;;31351:71:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31457:23:0;;31433:21;31457:23;;;:11;:23;;;;;;31499;;;;;;:87;;;27494:1;31527:13;:26;:58;;;;27543:1;31557:13;:28;31527:58;31491:122;;;;;-1:-1:-1;;;31491:122:0;;;;;;;;;;;;-1:-1:-1;;;31491:122:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31657:23:0;;;;;;:11;:23;;;;;;;;;:32;;;31732:36;;;;;;;;;;;;;;;;;;;;;;30945:831;;;;:::o;18211:119::-;-1:-1:-1;;;;;18304:18:0;;18277:7;18304:18;;;;;;;;;;;18211:119;;;;:::o;40606:104::-;40686:16;;40606:104;:::o;42588:1608::-;42675:12;29828:1;42803:7;;:28;42795:37;;;;;;29828:1;42851:10;;:28;42843:37;;;;;;29878:1;42891:7;:20;;;42922:10;:23;42980:8;;;;;-1:-1:-1;;;;;42980:8:0;42966:10;:22;42958:46;;;;;-1:-1:-1;;;42958:46:0;;;;;;;;;;;;-1:-1:-1;;;42958:46:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;43141:23:0;;;;;;:11;:23;;;;;;27494:1;43141:36;43133:64;;;;;-1:-1:-1;;;43133:64:0;;;;;;;;;;;;-1:-1:-1;;;43133:64:0;;;;;;;;;;;;;;;43262:12;43276:23;43303:10;-1:-1:-1;;;;;43303:15:0;43319:11;;43303:28;;;;;;;;;;;;;;-1:-1:-1;43303:28:0;;-1:-1:-1;43303:28:0;;-1:-1:-1;;43303:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29828:1:0;43468:7;:24;;;43503:10;:27;43261:70;;-1:-1:-1;43261:70:0;-1:-1:-1;43606:583:0;;;;43641:10;-1:-1:-1;43634:17:0;;-1:-1:-1;43634:17:0;43606:583;43755:17;;:21;43751:427;;44018:10;44012:17;44079:15;44066:10;44062:2;44058:19;44051:44;35845:2598;35927:7;29828:1;35985:10;;:28;35977:37;;;;;;36082:13;36096:20;;-1:-1:-1;;36096:24:0;;;36082:39;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36082:39:0;36068:10;:53;36060:87;;;;;-1:-1:-1;;;36060:87:0;;;;;;;;;;;;-1:-1:-1;;;36060:87:0;;;;;;;;;;;;;;;36178:10;36166:23;;;;:11;:23;;;;;;27494:1;36166:36;36158:69;;;;;-1:-1:-1;;;36158:69:0;;;;;;;;;;;;-1:-1:-1;;;36158:69:0;;;;;;;;;;;;;;;36270:27;;;-1:-1:-1;;;;;36270:27:0;;;;;;;;;;;;;;;36331:11;:13;;;;;;;;36359:16;;29488:1;36359:47;36355:88;;;36430:1;36423:8;;;;;36355:88;36528:14;36579:2;36564:10;:17;36553:1225;;;-1:-1:-1;36607:4:0;36553:1225;;;36648:2;36633:10;:17;36629:1149;;;-1:-1:-1;36677:3:0;36629:1149;;;36717:2;36702:10;:17;36698:1080;;;-1:-1:-1;36746:3:0;36698:1080;;;36786:2;36771:10;:17;36767:1011;;;-1:-1:-1;36815:3:0;36767:1011;;;36855:2;36840:10;:17;36836:942;;;-1:-1:-1;36884:3:0;36836:942;;;36924:2;36909:10;:17;36905:873;;;-1:-1:-1;36953:3:0;36905:873;;;36993:2;36978:10;:17;36974:804;;;-1:-1:-1;37022:3:0;36974:804;;;37062:2;37047:10;:17;37043:735;;;-1:-1:-1;37091:3:0;37043:735;;;37131:2;37116:10;:17;37112:666;;;-1:-1:-1;37160:3:0;37112:666;;;37199:3;37185:10;:17;37181:597;;;-1:-1:-1;37229:3:0;37181:597;;;37267:4;37254:10;:17;37250:528;;;-1:-1:-1;37299:2:0;37250:528;;;29425:1;37664:16;;:39;37660:118;;;29488:1;37720:16;:46;37660:118;37794:11;37790:52;;37829:1;37822:8;;;;;;37790:52;-1:-1:-1;;;;;37898:22:0;;27445:1;37898:22;;;:11;:22;;;;;;:39;37890:64;;;;;-1:-1:-1;;;37890:64:0;;;;;;;;;;;;-1:-1:-1;;;37890:64:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;37973:23:0;;37965:57;;;;;-1:-1:-1;;;37965:57:0;;;;;;;;;;;;-1:-1:-1;;;37965:57:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38041:26:0;;38062:4;38041:26;;38033:59;;;;;-1:-1:-1;;;38033:59:0;;;;;;;;;;;;-1:-1:-1;;;38033:59:0;;;;;;;;;;;;;;;38138:19;38160:13;:11;:13::i;:::-;38138:35;;38215:11;38201;38192:6;:20;:34;38184:61;;;;;-1:-1:-1;;;38184:61:0;;;;;;;;;;;;-1:-1:-1;;;38184:61:0;;;;;;;;;;;;;;;28572:25;38264:20;;;:33;38256:60;;;;;-1:-1:-1;;;38256:60:0;;;;;;;;;;;;-1:-1:-1;;;38256:60:0;;;;;;;;;;;;;;;38366:43;38372:9;28229:21;38383:25;;38366:5;:43::i;:::-;-1:-1:-1;38429:6:0;35845:2598;-1:-1:-1;;;;35845:2598:0:o;44762:1444::-;44851:12;29828:1;44979:10;;:28;44971:37;;;;;;29878:1;45019:10;:23;45077:8;;;;;-1:-1:-1;;;;;45077:8:0;45063:10;:22;45055:46;;;;;-1:-1:-1;;;45055:46:0;;;;;;;;;;;;-1:-1:-1;;;45055:46:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;45174:23:0;;27445:1;45174:23;;;:11;:23;;;;;;45166:68;;;;;-1:-1:-1;;;45166:68:0;;;;;;;;;;;;-1:-1:-1;;;45166:68:0;;;;;;;;;;;;;;;45299:12;45313:23;45340:10;-1:-1:-1;;;;;45340:15:0;45356:11;;45340:28;;;;;;;;;;;;;;-1:-1:-1;45340:28:0;;-1:-1:-1;45340:28:0;;-1:-1:-1;;45340:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29828:1:0;45505:10;:27;45298:70;;-1:-1:-1;45298:70:0;-1:-1:-1;45616:583:0;;;;45651:10;-1:-1:-1;45644:17:0;;-1:-1:-1;45644:17:0;39736:118;39799:7;39826:13;39840:5;39826:20;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39826:20:0;;39736:118;-1:-1:-1;;39736:118:0:o;17175:87::-;17247:7;17240:14;;;;;;;;-1:-1:-1;;17240:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17214:13;;17240:14;;17247:7;;17240:14;;17247:7;17240:14;;;;;;;;;;;;;;;;;;;;;;;;40762:1297;29828:1;40845:7;;:25;40837:34;;;;;;29878:1;40882:7;:20;40937:8;;;;;-1:-1:-1;;;;;40937:8:0;40923:10;:22;40915:66;;;;;-1:-1:-1;;;40915:66:0;;;;;;;;;;;;-1:-1:-1;;;40915:66:0;;;;;;;;;;;;;;;29362:1;41000:16;;:42;40992:73;;;;;-1:-1:-1;;;40992:73:0;;;;;;;;;;;;-1:-1:-1;;;40992:73:0;;;;;;;;;;;;;;;41143:8;;41107:23;;41133:19;;41143:8;;;-1:-1:-1;;;;;41143:8:0;41133:9;:19::i;:::-;41107:45;-1:-1:-1;41190:25:0;41171:44;;;41163:74;;;;;-1:-1:-1;;;41163:74:0;;;;;;;;;;;;-1:-1:-1;;;41163:74:0;;;;;;;;;;;;;;;41254:8;;41248:42;;41254:8;;;-1:-1:-1;;;;;41254:8:0;41264:25;41248:5;:42::i;:::-;29425:1;41333:16;:38;41400:13;:20;41518:9;;;;;:77;;-1:-1:-1;28229:21:0;-1:-1:-1;;41531:45:0;;:64;41518:77;41514:174;;;41622:13;41644:1;41636:5;:9;41622:24;;;;;;;;;;;;;;;;;41612:64;;;-1:-1:-1;;;41612:64:0;;;;-1:-1:-1;;;;;41622:24:0;;;;41612:62;;:64;;;;;;;;;;41622:24;;41612:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41514:174;41754:13;41778:113;41793:5;41785;:13;41778:113;;;41834:13;41848:5;41834:20;;;;;;;;;;;;;;;;;41824:55;;;-1:-1:-1;;;41824:55:0;;;;-1:-1:-1;;;;;41834:20:0;;;;41824:53;;:55;;;;;;;;;;41834:20;;41824:55;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;41800:7:0;;;;;-1:-1:-1;41778:113:0;;-1:-1:-1;41778:113:0;;-1:-1:-1;;29828:1:0;42027:7;:24;-1:-1:-1;40762:1297:0:o;21173:269::-;21266:4;21283:129;21292:12;:10;:12::i;:::-;21306:7;21315:96;21354:15;21315:96;;;;;;;;;;;;;;;;;:11;:25;21327:12;:10;:12::i;:::-;-1:-1:-1;;;;;21315:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21315:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;46348:1317::-;46426:4;29828:1;46481:7;;:25;46473:34;;;;;;29878:1;46518:7;:20;46775;46798:21;46808:10;46798:9;:21::i;:::-;46775:44;;46830:23;46856:20;46866:9;46856;:20::i;:::-;46941:13;:20;46830:46;;-1:-1:-1;46925:13:0;46996:125;47011:5;47003;:13;46996:125;;;47053:13;47067:5;47053:20;;;;;;;;;;;;;;;;;47043:66;;;-1:-1:-1;;;47043:66:0;;47087:10;47043:66;;;;-1:-1:-1;;;;;47043:66:0;;;;;;;;;47053:20;;;;;47043:43;;:66;;;;;;;;;;;47053:20;;47043:66;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47018:8:0;;;;;-1:-1:-1;46996:125:0;;-1:-1:-1;46996:125:0;;47174:33;47189:9;47200:6;47174:14;:33::i;:::-;;47270:1;47262:9;;47282:191;47297:5;47289;:13;47282:191;;;47339:13;47353:5;47339:20;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47339:20:0;47329:44;47374:10;47386:12;47400:21;47374:10;47400:9;:21::i;:::-;47423:15;47440:20;47450:9;47440;:20::i;:::-;47329:132;;;;;;;;;;;;;-1:-1:-1;;;;;47329:132:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47304:8:0;;;;;-1:-1:-1;47282:191:0;;-1:-1:-1;47282:191:0;;-1:-1:-1;;29828:1:0;47609:7;:24;;;29828:1;46348:1317;-1:-1:-1;;;;;46348:1317:0:o;33892:104::-;33975:13;33968:20;;;;;;;;-1:-1:-1;;33968:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33942:13;;33968:20;;33975:13;;33968:20;;33975:13;33968:20;;;;;;;;;;;;;;;;;;;;;;;;31784:751;29828:1;31882:7;;:25;:49;;;;29928:1;31911:7;;:20;31882:49;31874:58;;;;;;31965:8;;;;;-1:-1:-1;;;;;31965:8:0;31951:10;:22;31943:51;;;;;-1:-1:-1;;;31943:51:0;;;;;;;;;;;;-1:-1:-1;;;31943:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32013:24:0;;32005:61;;;;;-1:-1:-1;;;32005:61:0;;;;;;;;;;;;-1:-1:-1;;;32005:61:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32085:27:0;;32107:4;32085:27;;32077:61;;;;;-1:-1:-1;;;32077:61:0;;;;;;;;;;;;-1:-1:-1;;;32077:61:0;;;;;;;;;;;;;;;29362:1;32295:16;;:42;;32294:99;;;-1:-1:-1;32367:25:0;32343:21;32353:10;32343:9;:21::i;:::-;:49;32294:99;32286:138;;;;;-1:-1:-1;;;32286:138:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;32437:8;:21;;-1:-1:-1;;;;;32437:21:0;;;;;-1:-1:-1;;;;;;32437:21:0;;;;;;;;;;32501:26;;;;;;;;;;;;;;;;31784:751;:::o;18781:151::-;-1:-1:-1;;;;;18897:18:0;;;18870:7;18897:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18781:151::o;32904:908::-;29928:1;33002:7;;:20;32994:29;;;;;;29878:1;33034:7;:20;33152:23;;33195:12;33187:39;;;;;-1:-1:-1;;;33187:39:0;;;;;;;;;;;;-1:-1:-1;;;33187:39:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33297:23:0;;27445:1;33297:23;;;:11;:23;;;;;;:40;33289:72;;;;;-1:-1:-1;;;33289:72:0;;;;;;;;;;;;-1:-1:-1;;;33289:72:0;;;;;;;;;;;;;;;33403:13;:30;;;;;;;;;;;;;-1:-1:-1;;;;;;33403:30:0;-1:-1:-1;;;;;33403:30:0;;;;;;;;-1:-1:-1;33444:23:0;;;:11;33403:30;33444:23;;;;;:35;;;;33552:16;;33570:11;;33520:62;;-1:-1:-1;;;33520:62:0;;;;;;;;;;;;;;;33403:30;;33520:31;;:62;;;;;-1:-1:-1;33520:62:0;;;;;-1:-1:-1;33403:30:0;33520:62;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33625:23:0;;;-1:-1:-1;;;;;33625:23:0;;;;;;;;-1:-1:-1;33625:23:0;;;;;;;-1:-1:-1;33625:23:0;-1:-1:-1;;29928:1:0;33785:7;:19;32904:908::o;34229:574::-;34285:7;34318:11;;34313:2;:16;34305:41;;;;;-1:-1:-1;;;34305:41:0;;;;;;;;;;;;-1:-1:-1;;;34305:41:0;;;;;;;;;;;;;;;34384:13;:20;34359:22;;;34501:261;34516:14;34508:5;:22;34501:261;;;34572:13;34586:5;34572:20;;;;;;;;;;;;;;;;;;;34621:39;;;-1:-1:-1;;;34621:39:0;;;;-1:-1:-1;;;;;34572:20:0;;;;-1:-1:-1;34572:20:0;;34621:37;;:39;;;;;;;;;;34572:20;34621:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34621:39:0;34607:53;;;;;34679:16;;;34675:76;;34723:12;-1:-1:-1;34716:19:0;;-1:-1:-1;;;34716:19:0;34675:76;34532:8;;;;;34501:261;;;34774:21;;;-1:-1:-1;;;34774:21:0;;;;;;;;;;;;-1:-1:-1;;;34774:21:0;;;;;;;;;;;;;;40097:123;-1:-1:-1;;;;;40189:23:0;40162:7;40189:23;;;:11;:23;;;;;;;40097:123::o;40292:243::-;40380:13;40394:20;;40339:7;;;;-1:-1:-1;;40394:24:0;;;40380:39;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40380:39:0;40438:23;;;:11;:23;;;;;;;;40380:39;;-1:-1:-1;40380:39:0;40438:36;40430:67;;;;;-1:-1:-1;;;40430:67:0;;;;;;;;;;;;-1:-1:-1;;;40430:67:0;;;;;;;;;;;;;;;40517:10;-1:-1:-1;40292:243:0;:::o;27137:36::-;;;;;;-1:-1:-1;;;;;27137:36:0;;:::o;38901:764::-;29828:1;38984:7;;:25;38976:34;;;;;;39043:8;;;;;-1:-1:-1;;;;;39043:8:0;39029:10;:22;39021:57;;;;;-1:-1:-1;;;39021:57:0;;;;;;;;;;;;-1:-1:-1;;;39021:57:0;;;;;;;;;;;;;;;39097:16;;:33;39089:61;;;;;-1:-1:-1;;;39089:61:0;;;;;;;;;;;;-1:-1:-1;;;39089:61:0;;;;;;;;;;;;;;;39219:8;;28229:21;;39209:19;;39219:8;;;-1:-1:-1;;;;;39219:8:0;39209:9;:19::i;:::-;:38;39205:274;;;39308:13;:20;39264:13;;39343:125;39358:5;39350;:13;39343:125;;;39404:13;39418:5;39404:20;;;;;;;;;;;;;;;;;39394:58;;;-1:-1:-1;;;39394:58:0;;;;-1:-1:-1;;;;;39404:20:0;;;;39394:56;;:58;;;;;;;;;;39404:20;;39394:58;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;39365:8:0;;;;;-1:-1:-1;39343:125:0;;-1:-1:-1;39343:125:0;;39205:274;;;39526:8;;39520:42;;39526:8;;;-1:-1:-1;;;;;39526:8:0;39536:25;39520:5;:42::i;:::-;29362:1;39616:16;:41;38901:764::o;543:106::-;631:10;543:106;:::o;24318:346::-;-1:-1:-1;;;;;24420:19:0;;24412:68;;;;-1:-1:-1;;;24412:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24499:21:0;;24491:68;;;;-1:-1:-1;;;24491:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24572:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24624:32;;;;;;;;;;;;;;;;;24318:346;;;:::o;19722:321::-;19828:4;19845:36;19855:6;19863:9;19874:6;19845:9;:36::i;:::-;19892:121;19901:6;19909:12;:10;:12::i;:::-;19923:89;19961:6;19923:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19923:19:0;;;;;;:11;:19;;;;;;19943:12;:10;:12::i;:::-;-1:-1:-1;;;;;19923:33:0;;;;;;;;;;;;-1:-1:-1;19923:33:0;;;:89;:37;:89::i;19892:121::-;-1:-1:-1;20031:4:0;19722:321;;;;;:::o;4450:181::-;4508:7;4540:5;;;4564:6;;;;4556:46;;;;;-1:-1:-1;;;4556:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;22752:378;-1:-1:-1;;;;;22836:21:0;;22828:65;;;;;-1:-1:-1;;;22828:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22906:49;22935:1;22939:7;22948:6;22906:20;:49::i;:::-;22983:12;;:24;;23000:6;22983:16;:24::i;:::-;22968:12;:39;-1:-1:-1;;;;;23039:18:0;;:9;:18;;;;;;;;;;;:30;;23062:6;23039:22;:30::i;:::-;-1:-1:-1;;;;;23018:18:0;;:9;:18;;;;;;;;;;;:51;;;;23085:37;;;;;;;23018:18;;:9;;23085:37;;;;;;;;;;22752:378;;:::o;23462:418::-;-1:-1:-1;;;;;23546:21:0;;23538:67;;;;-1:-1:-1;;;23538:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23618:49;23639:7;23656:1;23660:6;23618:20;:49::i;:::-;23701:68;23724:6;23701:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23701:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;23680:18:0;;:9;:18;;;;;;;;;;:89;23795:12;;:24;;23812:6;23795:16;:24::i;:::-;23780:12;:39;23835:37;;;;;;;;23861:1;;-1:-1:-1;;;;;23835:37:0;;;;;;;;;;;;23462:418;;:::o;5353:192::-;5439:7;5475:12;5467:6;;;;5459:29;;;;-1:-1:-1;;;5459:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5511:5:0;;;5353:192::o;18543:175::-;18629:4;18646:42;18656:12;:10;:12::i;:::-;18670:9;18681:6;21932:539;-1:-1:-1;;;;;22038:20:0;;22030:70;;;;-1:-1:-1;;;22030:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22119:23:0;;22111:71;;;;-1:-1:-1;;;22111:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22195:47;22216:6;22224:9;22235:6;22195:20;:47::i;:::-;22275:71;22297:6;22275:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22275:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;22255:17:0;;;:9;:17;;;;;;;;;;;:91;;;;22380:20;;;;;;;:32;;22405:6;22380:24;:32::i;:::-;-1:-1:-1;;;;;22357:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;22428:35;;;;;;;22357:20;;22428:35;;;;;;;;;;;;;21932:539;;;:::o;4914:136::-;4972:7;4999:43;5003:1;5006;4999:43;;;;;;;;;;;;;;;;;:3;:43::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;

Swarm Source

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