ETH Price: $2,379.14 (+1.16%)

Token

wemakeit AG Shares (WMI)
 

Overview

Max Total Supply

20 WMI

Holders

2

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
10 WMI

Value
$0.00
0x5a57dd9c623e1403af1d810673183d89724a4e0c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

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

Contract Name:
Shares

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 6 of 6: Shares.sol
/**
* SPDX-License-Identifier: LicenseRef-Aktionariat
*
* MIT License with Automated License Fee Payments
*
* Copyright (c) 2020 Aktionariat AG (aktionariat.com)
*
* Permission is hereby granted to any person obtaining a copy of this software
* and associated documentation files (the "Software"), to deal in the Software
* without restriction, including without limitation the rights to use, copy,
* modify, merge, publish, distribute, sublicense, and/or sell copies of the
* Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* - The above copyright notice and this permission notice shall be included in
*   all copies or substantial portions of the Software.
* - All automated license fee payments integrated into this and related Software
*   are preserved.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
pragma solidity >=0.8;

import "./Ownable.sol";
import "./ERC20Recoverable.sol";
import "./IERC677Receiver.sol";

/**
 * @title CompanyName AG Shares
 * @author Luzius Meisser, [email protected]
 *
 * These tokens are uncertified shares (Wertrechte according to the Swiss code of obligations),
 * with this smart contract serving as onwership registry (Wertrechtebuch), but not as shareholder
 * registry, which is kept separate and run by the company. This is equivalent to the traditional system
 * of having physical share certificates kept at home by the shareholders and a shareholder registry run by
 * the company. Just like with physical certificates, the owners of the tokens are the owners of the shares.
 * However, in order to exercise their rights (for example receive a dividend), shareholders must register
 * with the company. For example, in case the company pays out a dividend to a previous shareholder because
 * the current shareholder did not register, the company cannot be held liable for paying the dividend to
 * the "wrong" shareholder. In relation to the company, only the registered shareholders count as such.
 * Registration requires setting up an account with ledgy.com providing your name and address and proving
 * ownership over your addresses.
 * @notice The main addition is a functionality that allows the user to claim that the key for a certain address is lost.
 * @notice In order to prevent malicious attempts, a collateral needs to be posted.
 * @notice The contract owner can delete claims in case of disputes.
 */
contract Shares is ERC20Recoverable, Ownable {

    string public override name;
    string public override symbol;
    string public terms;

    uint256 public totalShares = 0; // total number of shares, maybe not all tokenized
    uint256 public invalidTokens = 0;

    address[] public subregisters;

    event Announcement(string message);
    event TokensDeclaredInvalid(address indexed holder, uint256 amount, string message);
    event ShareNumberingEvent(address indexed holder, uint256 firstInclusive, uint256 lastInclusive);
    event SubRegisterAdded(address contractAddress);
    event SubRegisterRemoved(address contractAddress);

    constructor(string memory _symbol, string memory _name, string memory _terms, uint256 _totalShares) ERC20(0) {
        setName(_symbol, _name);
        setTotalShares(_totalShares);
        terms = _terms;
    }

    function setName(string memory _symbol, string memory _name) public onlyOwner {
        symbol = _symbol;
        name = _name;
        emit Announcement(string(abi.encodePacked("New name: ", _name, " (", _symbol, ")")));
    }

    function setTerms(string memory _terms) public onlyOwner {
        terms = _terms;
        emit Announcement(string(abi.encodePacked("New terms: ", _terms)));
    }

    /**
     * Declares the number of total shares, including those that have not been tokenized and those
     * that are held by the company itself. This number can be substiantially higher than totalSupply()
     * in case not all shares have been tokenized. Also, it can be lower than totalSupply() in case some
     * tokens have become invalid.
     */
    function setTotalShares(uint256 _newTotalShares) public onlyOwner() {
        require(_newTotalShares >= totalValidSupply(), "There can't be fewer tokens than shares");
        totalShares = _newTotalShares;
    }

    function countSubregisters() public view returns (uint256){
        return subregisters.length;
    }

    /**
     * Sometimes, tokens are held by smart contracts that are ERC20 contracts themselves.
     * For example, some tokens might be held by a smart contract representing a shareholder agreement.
     * In that case, the owners of that sub-contract are the shareholders, and not the contract itself
     * For such cases, having a list of recognized such subregisters might be helpful with the automated
     * registration and tracking of shareholders.
     * We assume that the number of sub registers stays limited, such that they are safe to iterate.
     * Subregisters should always have the same number of decimals as the main register and their total
     * balance must not exceed the number of tokens assigned to the subregister.
     * In order to preserve FIFO-rules meaningfully, subregisters must be empty when added or removed.
     */
    function recognizeSubRegister(address contractAddress) public onlyOwner () {
        require(balanceOf(contractAddress) == 0, "Subregisters must be empty when added");
        subregisters.push(contractAddress);
        emit SubRegisterAdded(contractAddress);
    }

    function removeSubRegister(address contractAddress) public onlyOwner() {
        require(balanceOf(contractAddress) == 0, "Subregisters must be empty when removed");
        for (uint256 i = 0; i<subregisters.length; i++) {
            if (subregisters[i] == contractAddress) {
                subregisters[i] = subregisters[subregisters.length - 1];
                subregisters.pop();
                emit SubRegisterRemoved(contractAddress);
            }
        }
    }

    /**
     * A deep balanceOf operator that also considers indirectly held tokens in
     * recognized sub registers.
     */
    function balanceOfDeep(address holder) public view returns (uint256) {
        uint256 balance = balanceOf(holder);
        for (uint256 i = 0; i<subregisters.length; i++) {
            IERC20 subERC = IERC20(subregisters[i]);
            balance += subERC.balanceOf(holder);
        }
        return balance;
    }

    /**
     * Allows the issuer to make public announcements that are visible on the blockchain.
     */
    function announcement(string calldata message) external onlyOwner() {
        emit Announcement(message);
    }

    function setClaimPeriod(uint256 claimPeriodInDays) public onlyOwner() {
        super._setClaimPeriod(claimPeriodInDays);
    }

    /**
     * See parent method for collateral requirements.
     */
    function setCustomClaimCollateral(address collateral, uint256 rate) public onlyOwner() {
        super._setCustomClaimCollateral(collateral, rate);
    }

    function getClaimDeleter() public override view returns (address) {
        return owner;
    }

    /**
     * Signals that the indicated tokens have been declared invalid (e.g. by a court ruling in accordance
     * with article 973g of the Swiss Code of Obligations) and got detached from
     * the underlying shares. Invalid tokens do not carry any shareholder rights any more.
     *
     * This function is purely declarative. It does not technically immobilize the affected tokens as
     * that would give the issuer too much power.
     */
    function declareInvalid(address holder, uint256 amount, string calldata message) external onlyOwner() {
        uint256 holderBalance = balanceOf(holder);
        require(amount <= holderBalance);
        invalidTokens += amount;
        emit TokensDeclaredInvalid(holder, amount, message);
    }

    /**
     * The total number of valid tokens in circulation. In case some tokens have been declared invalid, this
     * number might be lower than totalSupply(). Also, it will always be lower than or equal to totalShares().
     */
    function totalValidSupply() public view returns (uint256) {
        return totalSupply() - invalidTokens;
    }

    /**
     * Allows the company to tokenize shares. If these shares are newly created, setTotalShares must be
     * called first in order to adjust the total number of shares.
     */
    function mint(address shareholder, uint256 _amount) public onlyOwner() {
        _mint(shareholder, _amount);
    }

    function mintAndCall(address shareholder, address callee, uint256 amount, bytes calldata data) public {
        mint(callee, amount);
        IERC677Receiver(callee).onTokenTransfer(shareholder, amount, data);
    }

    /**
     * Some companies like to number their shares so they can refer to them more explicitely in legal contracts.
     * A minority of Swiss lawyers even believes that numbering shares is compulsory (which is not true).
     * Nonetheless, this function allows to signal the numbers of freshly tokenized shares.
     * In case the shares ever get de-tokenized again, this information might help in deducing their
     * numbers again - although there might be some room for interpretation of what went where.
     * By convention, transfers should be considered FIFO (first in, first out) and transactions in
     * recognized subregisters be taken into account.
     */
    function mintNumbered(address shareholder, uint256 firstShareNumber, uint256 lastShareNumber) public onlyOwner() {
        emit ShareNumberingEvent(shareholder, firstShareNumber, lastShareNumber); // emit mint event before transfer event
        _mint(shareholder, lastShareNumber - firstShareNumber + 1);
    }

    function mintNumberedAndCall(address shareholder, address callee, uint256 firstShareNumber, uint256 lastShareNumber, bytes calldata data) public {
        mintNumbered(shareholder, firstShareNumber, lastShareNumber);
        IERC677Receiver(callee).onTokenTransfer(shareholder, lastShareNumber - firstShareNumber + 1, data);
    }

    function _mint(address account, uint256 amount) internal override {
        require(totalValidSupply() + amount <= totalShares, "There can't be fewer shares than valid tokens");
        super._mint(account, amount);
    }

    /**
     * Transfers _amount tokens to the company and burns them.
     * The meaning of this operation depends on the circumstances and the fate of the shares does
     * not necessarily follow the fate of the tokens. For example, the company itself might call
     * this function to implement a formal decision to destroy some of the outstanding shares.
     * Also, this function might be called by an owner to return the shares to the company and
     * get them back in another form under an according agreement (e.g. printed certificates or
     * tokens on a different blockchain). It is not recommended to call this function without
     * having agreed with the company on the further fate of the shares in question.
     */
    function burn(uint256 _amount) public {
        require(_amount <= balanceOf(msg.sender), "Not enough shares available");
        _transfer(msg.sender, address(this), _amount);
        _burn(address(this), _amount);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) override internal {
    }

}

File 1 of 6: ERC20.sol
// SPDX-License-Identifier: MIT
// Copied and adjusted from OpenZeppelin
// Adjustments:
// - modifications to support ERC-677
// - removed require messages to save space
// - removed unnecessary require statements
// - removed GSN Context
// - upgraded to 0.8 to drop SafeMath
// - let name() and symbol() be implemented by subclass

pragma solidity >=0.8;

import "./IERC20.sol";
import "./IERC677Receiver.sol";

/**
 * @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 `ERC20Mintable`.
 *
 * *For a detailed writeup see our guide [How to implement supply
 * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
 *
 * 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`.
 */

abstract contract ERC20 is IERC20 {

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    uint8 public override decimals;

    constructor(uint8 _decimals) {
        decimals = _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(msg.sender, recipient, amount);
        return true;
    }

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

    /**
     * @dev See `IERC20.approve`.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public override returns (bool) {
        _approve(msg.sender, spender, value);
        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 `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender] - amount);
        return true;
    }

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

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender] - subtractedValue);
        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(recipient != address(0));

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] -= amount;
        _balances[recipient] += amount;
        emit Transfer(sender, recipient, amount);
    }

    // ERC-677 functionality, can be useful for swapping and wrapping tokens
    function transferAndCall(address recipient, uint amount, bytes calldata data) public returns (bool) {
        bool success = transfer(recipient, amount);
        if (success){
            IERC677Receiver(recipient).onTokenTransfer(msg.sender, amount, data);
        }
        return success;
    }

    /** @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 recipient, uint256 amount) internal virtual {
        require(recipient != address(0));

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

        _totalSupply += amount;
        _balances[recipient] += amount;
        emit Transfer(address(0), recipient, 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 {
        _beforeTokenTransfer(account, address(0), amount);

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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 value) internal {
        _allowances[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

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

File 2 of 6: ERC20Recoverable.sol
/**
* SPDX-License-Identifier: LicenseRef-Aktionariat
*
* MIT License with Automated License Fee Payments
*
* Copyright (c) 2020 Aktionariat AG (aktionariat.com)
*
* Permission is hereby granted to any person obtaining a copy of this software
* and associated documentation files (the "Software"), to deal in the Software
* without restriction, including without limitation the rights to use, copy,
* modify, merge, publish, distribute, sublicense, and/or sell copies of the
* Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* - The above copyright notice and this permission notice shall be included in
*   all copies or substantial portions of the Software.
* - All automated license fee payments integrated into this and related Software
*   are preserved.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
pragma solidity >=0.8;

import "./ERC20.sol";
import "./IERC20.sol";

/**
 * @title Recoverable
 * In case of tokens that represent real-world assets such as shares of a company, one needs a way
 * to handle lost private keys. With physical certificates, courts can declare share certificates as
 * invalid so the company can issue replacements. Here, we want a solution that does not depend on
 * third parties to resolve such cases. Instead, when someone has lost a private key, he can use the
 * declareLost function to post a deposit and claim that the shares assigned to a specific address are
 * lost. To prevent front running, a commit reveal scheme is used. If he actually is the owner of the shares,
 * he needs to wait for a certain period and can then reclaim the lost shares as well as the deposit.
 * If he is an attacker trying to claim shares belonging to someone else, he risks losing the deposit
 * as it can be claimed at anytime by the rightful owner.
 * Furthermore, if "getClaimDeleter" is defined in the subclass, the returned address is allowed to
 * delete claims, returning the collateral. This can help to prevent obvious cases of abuse of the claim
 * function.
 */

abstract contract ERC20Recoverable is ERC20 {

    // A struct that represents a claim made
    struct Claim {
        address claimant; // the person who created the claim
        uint256 collateral; // the amount of collateral deposited
        uint256 timestamp;  // the timestamp of the block in which the claim was made
        address currencyUsed; // The currency (XCHF) can be updated, we record the currency used for every request
    }

    uint256 public claimPeriod = 180 days; // Default of 180 days;

    mapping(address => Claim) public claims; // there can be at most one claim per address, here address is claimed address
    mapping(address => bool) public recoveryDisabled; // disable claimability (e.g. for long term storage)

    // ERC-20 token that can be used as collateral or 0x0 if disabled
    address public customCollateralAddress;
    uint256 public customCollateralRate;

    /**
     * Returns the collateral rate for the given collateral type and 0 if that type
     * of collateral is not accepted. By default, only the token itself is accepted at
     * a rate of 1:1.
     *
     * Subclasses should override this method if they want to add additional types of
     * collateral.
     */
    function getCollateralRate(address collateralType) public virtual view returns (uint256) {
        if (collateralType == address(this)) {
            return 1;
        } else if (collateralType == customCollateralAddress) {
            return customCollateralRate;
        } else {
            return 0;
        }
    }

    /**
     * Allows subclasses to set a custom collateral besides the token itself.
     * The collateral must be an ERC-20 token that returns true on successful transfers and
     * throws an exception or returns false on failure.
     * Also, do not forget to multiply the rate in accordance with the number of decimals of the collateral.
     * For example, rate should be 7*10**18 for 7 units of a collateral with 18 decimals.
     */
    function _setCustomClaimCollateral(address collateral, uint256 rate) internal {
        customCollateralAddress = collateral;
        if (customCollateralAddress == address(0)) {
            customCollateralRate = 0; // disabled
        } else {
            require(rate > 0, "Collateral rate can't be zero");
            customCollateralRate = rate;
        }
        emit CustomClaimCollateralChanged(collateral, rate);
    }

    function getClaimDeleter() virtual public view returns (address);

    /**
     * Allows subclasses to change the claim period, but not to fewer than 90 days.
     */
    function _setClaimPeriod(uint256 claimPeriodInDays) internal {
        require(claimPeriodInDays > 90, "Claim period must be at least 90 days"); // must be at least 90 days
        uint256 claimPeriodInSeconds = claimPeriodInDays * (1 days);
        claimPeriod = claimPeriodInSeconds;
        emit ClaimPeriodChanged(claimPeriod);
    }

    function setRecoverable(bool enabled) public {
        recoveryDisabled[msg.sender] = !enabled;
    }

    /**
     * Some users might want to disable claims for their address completely.
     * For example if they use a deep cold storage solution or paper wallet.
     */
    function isRecoveryEnabled(address target) public view returns (bool) {
        return !recoveryDisabled[target];
    }

    event ClaimMade(address indexed lostAddress, address indexed claimant, uint256 balance);
    event ClaimCleared(address indexed lostAddress, uint256 collateral);
    event ClaimDeleted(address indexed lostAddress, address indexed claimant, uint256 collateral);
    event ClaimResolved(address indexed lostAddress, address indexed claimant, uint256 collateral);
    event ClaimPeriodChanged(uint256 newClaimPeriodInDays);
    event CustomClaimCollateralChanged(address newCustomCollateralAddress, uint256 newCustomCollareralRate);

  /** Anyone can declare that the private key to a certain address was lost by calling declareLost
    * providing a deposit/collateral. There are three possibilities of what can happen with the claim:
    * 1) The claim period expires and the claimant can get the deposit and the shares back by calling recover
    * 2) The "lost" private key is used at any time to call clearClaim. In that case, the claim is deleted and
    *    the deposit sent to the shareholder (the owner of the private key). It is recommended to call recover
    *    whenever someone transfers funds to let claims be resolved automatically when the "lost" private key is
    *    used again.
    * 3) The owner deletes the claim and assigns the deposit to the claimant. This is intended to be used to resolve
    *    disputes. Generally, using this function implies that you have to trust the issuer of the tokens to handle
    *    the situation well. As a rule of thumb, the contract owner should assume the owner of the lost address to be the
    *    rightful owner of the deposit.
    * It is highly recommended that the owner observes the claims made and informs the owners of the claimed addresses
    * whenever a claim is made for their address (this of course is only possible if they are known to the owner, e.g.
    * through a shareholder register).
    * To prevent frontrunning attacks, a claim can only be made if the information revealed when calling "declareLost"
    * was previously commited using the "prepareClaim" function.
    */
    function declareLost(address collateralType, address lostAddress) public {
        require(isRecoveryEnabled(lostAddress), "Claims disabled for this address");
        uint256 collateralRate = getCollateralRate(collateralType);
        require(collateralRate > 0, "Unsupported collateral");
        address claimant = msg.sender;
        uint256 balance = balanceOf(lostAddress);
        uint256 collateral = balance * collateralRate;
        IERC20 currency = IERC20(collateralType);
        require(balance > 0, "Claimed address holds no shares");
        require(claims[lostAddress].collateral == 0, "Address already claimed");
        require(currency.transferFrom(claimant, address(this), collateral), "Collateral transfer failed");

        claims[lostAddress] = Claim({
            claimant: claimant,
            collateral: collateral,
            timestamp: block.timestamp,
            currencyUsed: collateralType
        });

        emit ClaimMade(lostAddress, claimant, balance);
    }

    function getClaimant(address lostAddress) public view returns (address) {
        return claims[lostAddress].claimant;
    }

    function getCollateral(address lostAddress) public view returns (uint256) {
        return claims[lostAddress].collateral;
    }

    function getCollateralType(address lostAddress) public view returns (address) {
        return claims[lostAddress].currencyUsed;
    }

    function getTimeStamp(address lostAddress) public view returns (uint256) {
        return claims[lostAddress].timestamp;
    }

    function transfer(address recipient, uint256 amount) override virtual public returns (bool) {
        require(super.transfer(recipient, amount), "Transfer failed");
        clearClaim();
        return true;
    }

    /**
     * Clears a claim after the key has been found again and assigns the collateral to the "lost" address.
     * This is the price an adverse claimer pays for filing a false claim and makes it risky to do so.
     */
    function clearClaim() public {
        if (claims[msg.sender].collateral != 0) {
            uint256 collateral = claims[msg.sender].collateral;
            IERC20 currency = IERC20(claims[msg.sender].currencyUsed);
            delete claims[msg.sender];
            require(currency.transfer(msg.sender, collateral), "Collateral transfer failed");
            emit ClaimCleared(msg.sender, collateral);
        }
    }

   /**
    * After the claim period has passed, the claimant can call this function to send the
    * tokens on the lost address as well as the collateral to himself.
    */
    function recover(address lostAddress) public {
        Claim memory claim = claims[lostAddress];
        uint256 collateral = claim.collateral;
        IERC20 currency = IERC20(claim.currencyUsed);
        require(collateral != 0, "No claim found");
        require(claim.claimant == msg.sender, "Only claimant can resolve claim");
        require(claim.timestamp + claimPeriod <= block.timestamp, "Claim period not over yet");
        address claimant = claim.claimant;
        delete claims[lostAddress];
        require(currency.transfer(claimant, collateral), "Collateral transfer failed");
        _transfer(lostAddress, claimant, balanceOf(lostAddress));
        emit ClaimResolved(lostAddress, claimant, collateral);
    }

    /**
     * This function is to be executed by the claim deleter only in case a dispute needs to be resolved manually.
     */
    function deleteClaim(address lostAddress) public {
        require(msg.sender == getClaimDeleter(), "You cannot delete claims");
        Claim memory claim = claims[lostAddress];
        IERC20 currency = IERC20(claim.currencyUsed);
        require(claim.collateral != 0, "No claim found");
        delete claims[lostAddress];
        require(currency.transfer(claim.claimant, claim.collateral), "Collateral transfer failed");
        emit ClaimDeleted(lostAddress, claim.claimant, claim.collateral);
    }

}

File 3 of 6: IERC20.sol
/**
* SPDX-License-Identifier: MIT
*
* Copyright (c) 2016-2019 zOS Global Limited
*
*/
pragma solidity >=0.8;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see `ERC20Detailed`.
 */

interface IERC20 {

    // Optional functions
    function name() external view returns (string memory);

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

    function decimals() external view returns (uint8);

    /**
     * @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.
     *
     * > Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an `Approval` event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

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

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

File 4 of 6: IERC677Receiver.sol
// SPDX-License-Identifier: MIT
// Copied from https://github.com/Uniswap/uniswap-v2-periphery/blob/master/contracts/UniswapV2Router02.sol
pragma solidity >=0.8;

interface IERC677Receiver {

    function onTokenTransfer(address from, uint256 amount, bytes calldata data) external;

}

File 5 of 6: Ownable.sol
// SPDX-License-Identifier: MIT
//
// From https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol
//
// Modifications:
// - Replaced Context._msgSender() with msg.sender
// - Made leaner

pragma solidity >=0.8;

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

    address public owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        owner = msg.sender;
        emit OwnershipTransferred(address(0), owner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner == msg.sender, "not owner");
        _;
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_terms","type":"string"},{"internalType":"uint256","name":"_totalShares","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"message","type":"string"}],"name":"Announcement","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"lostAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"collateral","type":"uint256"}],"name":"ClaimCleared","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"lostAddress","type":"address"},{"indexed":true,"internalType":"address","name":"claimant","type":"address"},{"indexed":false,"internalType":"uint256","name":"collateral","type":"uint256"}],"name":"ClaimDeleted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"lostAddress","type":"address"},{"indexed":true,"internalType":"address","name":"claimant","type":"address"},{"indexed":false,"internalType":"uint256","name":"balance","type":"uint256"}],"name":"ClaimMade","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newClaimPeriodInDays","type":"uint256"}],"name":"ClaimPeriodChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"lostAddress","type":"address"},{"indexed":true,"internalType":"address","name":"claimant","type":"address"},{"indexed":false,"internalType":"uint256","name":"collateral","type":"uint256"}],"name":"ClaimResolved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newCustomCollateralAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"newCustomCollareralRate","type":"uint256"}],"name":"CustomClaimCollateralChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"holder","type":"address"},{"indexed":false,"internalType":"uint256","name":"firstInclusive","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastInclusive","type":"uint256"}],"name":"ShareNumberingEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"contractAddress","type":"address"}],"name":"SubRegisterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"contractAddress","type":"address"}],"name":"SubRegisterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"holder","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"string","name":"message","type":"string"}],"name":"TokensDeclaredInvalid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"message","type":"string"}],"name":"announcement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"}],"name":"balanceOfDeep","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claims","outputs":[{"internalType":"address","name":"claimant","type":"address"},{"internalType":"uint256","name":"collateral","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"address","name":"currencyUsed","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clearClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"countSubregisters","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"customCollateralAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"customCollateralRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"message","type":"string"}],"name":"declareInvalid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"collateralType","type":"address"},{"internalType":"address","name":"lostAddress","type":"address"}],"name":"declareLost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lostAddress","type":"address"}],"name":"deleteClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getClaimDeleter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"lostAddress","type":"address"}],"name":"getClaimant","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"lostAddress","type":"address"}],"name":"getCollateral","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collateralType","type":"address"}],"name":"getCollateralRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"lostAddress","type":"address"}],"name":"getCollateralType","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"lostAddress","type":"address"}],"name":"getTimeStamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"invalidTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"isRecoveryEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"shareholder","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"shareholder","type":"address"},{"internalType":"address","name":"callee","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintAndCall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"shareholder","type":"address"},{"internalType":"uint256","name":"firstShareNumber","type":"uint256"},{"internalType":"uint256","name":"lastShareNumber","type":"uint256"}],"name":"mintNumbered","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"shareholder","type":"address"},{"internalType":"address","name":"callee","type":"address"},{"internalType":"uint256","name":"firstShareNumber","type":"uint256"},{"internalType":"uint256","name":"lastShareNumber","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintNumberedAndCall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"recognizeSubRegister","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lostAddress","type":"address"}],"name":"recover","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"recoveryDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"removeSubRegister","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimPeriodInDays","type":"uint256"}],"name":"setClaimPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"collateral","type":"address"},{"internalType":"uint256","name":"rate","type":"uint256"}],"name":"setCustomClaimCollateral","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_name","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setRecoverable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_terms","type":"string"}],"name":"setTerms","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTotalShares","type":"uint256"}],"name":"setTotalShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"subregisters","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"terms","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalValidSupply","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405262ed4e006004556000600d556000600e553480156200002257600080fd5b506040516200309338038062003093833981016040819052620000459162000346565b6003805460ff19169055600980546001600160a01b0319163317908190556040516001600160a01b0391909116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3620000a78484620000d2565b620000b28162000192565b8151620000c790600c90602085019062000217565b505050505062000589565b6009546001600160a01b03163314620001085760405162461bcd60e51b8152600401620000ff90620004bc565b60405180910390fd5b81516200011d90600b90602085019062000217565b5080516200013390600a90602084019062000217565b507f07ce702fc13ca0620c174dab22996a6d5fd9e7accb663555a4e85323692706ba81836040516020016200016a929190620003db565b60408051601f1981840301815290829052620001869162000440565b60405180910390a15050565b6009546001600160a01b03163314620001bf5760405162461bcd60e51b8152600401620000ff90620004bc565b620001c9620001f0565b811015620001eb5760405162461bcd60e51b8152600401620000ff9062000475565b600d55565b600e546000906200020062000211565b6200020c9190620004df565b905090565b60025490565b828054620002259062000536565b90600052602060002090601f01602090048101928262000249576000855562000294565b82601f106200026457805160ff191683800117855562000294565b8280016001018555821562000294579182015b828111156200029457825182559160200191906001019062000277565b50620002a2929150620002a6565b5090565b5b80821115620002a25760008155600101620002a7565b600082601f830112620002ce578081fd5b81516001600160401b0380821115620002eb57620002eb62000573565b604051601f8301601f19168101602001828111828210171562000312576200031262000573565b6040528281528483016020018610156200032a578384fd5b6200033d83602083016020880162000503565b95945050505050565b600080600080608085870312156200035c578384fd5b84516001600160401b038082111562000373578586fd5b6200038188838901620002bd565b9550602087015191508082111562000397578485fd5b620003a588838901620002bd565b94506040870151915080821115620003bb578384fd5b50620003ca87828801620002bd565b606096909601519497939650505050565b60006902732bb903730b6b29d160b51b825283516200040281600a85016020880162000503565b61040560f31b600a9184019182015283516200042681600c84016020880162000503565b602960f81b600c9290910191820152600d01949350505050565b60006020825282518060208401526200046181604085016020870162000503565b601f01601f19169190910160400192915050565b60208082526027908201527f54686572652063616e277420626520666577657220746f6b656e73207468616e6040820152662073686172657360c81b606082015260800190565b6020808252600990820152683737ba1037bbb732b960b91b604082015260600190565b600082821015620004fe57634e487b7160e01b81526011600452602481fd5b500390565b60005b838110156200052057818101518382015260200162000506565b8381111562000530576000848401525b50505050565b6002810460018216806200054b57607f821691505b602082108114156200056d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612afa80620005996000396000f3fe608060405234801561001057600080fd5b506004361061030c5760003560e01c80636427ed971161019d578063a457c2d7116100e9578063cc51e143116100a2578063dd62ed3e1161007c578063dd62ed3e14610658578063eb470ebf1461066b578063f2fde38b1461067e578063f54fc060146106915761030c565b8063cc51e1431461062a578063d2c04f431461063d578063d5025625146106505761030c565b8063a457c2d7146105b3578063a77384c1146105c6578063a9059cbb146105d9578063b0d04c7a146105ec578063b40e80d1146105f4578063c6788bdd146106075761030c565b806378f86afc1161015657806395d89b411161013057806395d89b41146105725780639b56d6c91461057a578063a26cf59f1461058d578063a3ec1883146105a05761030c565b806378f86afc1461054f5780637dc2cd98146105625780638da5cb5b1461056a5761030c565b80636427ed97146104f357806369f721e2146105065780636b03ed5f146105195780636e3baaf51461052157806370a082311461052957806377e071ad1461053c5761030c565b806337a8129c1161025c57806340c10f1911610215578063551ad632116101ef578063551ad632146104b25780635c707f07146104c55780635d6624b7146104d857806360918117146104eb5761030c565b806340c10f191461047957806342966c681461048c5780634ae5e6301461049f5761030c565b806337a8129c1461041d57806339509351146104255780633a1cdf32146104385780633a98ef391461044b5780633bcc45ba146104535780634000aea0146104665761030c565b80631e3b9de5116102c957806326773ddd116102a357806326773ddd146103da5780632a0a4ed5146103ed578063313ce567146103f557806332a7ae951461040a5761030c565b80631e3b9de5146103a15780631f0f06aa146103b457806323b872dd146103c75761030c565b806306fdde0314610311578063095ea7b31461032f5780630c6f0e5d1461034f5780630cd865ec1461036457806318160ddd146103795780631993982d1461038e575b600080fd5b6103196106a4565b604051610326919061254e565b60405180910390f35b61034261033d3660046121cc565b610732565b604051610326919061252f565b610357610748565b6040516103269190612481565b61037761037236600461205b565b610757565b005b610381610968565b6040516103269190612977565b61037761039c36600461205b565b61096e565b6103576103af36600461205b565b610b37565b6103776103c23660046122b7565b610b58565b6103426103d53660046120ae565b610bbf565b6103776103e836600461207c565b610c11565b610357610e2f565b6103fd610e3e565b60405161032691906129a8565b61037761041836600461205b565b610e47565b610381611022565b6103426104333660046121cc565b611028565b6103776104463660046121cc565b61105f565b610381611093565b61035761046136600461205b565b611099565b6103426104743660046121f5565b6110ba565b6103776104873660046121cc565b61113d565b61037761049a366004612393565b611171565b6103576104ad366004612393565b6111b1565b6103776104c0366004612156565b6111db565b6103776104d3366004612332565b611266565b6103776104e63660046121f5565b611306565b6103816113af565b61037761050136600461227f565b6113b5565b61037761051436600461224d565b6113d4565b610377611464565b6103816115a0565b61038161053736600461205b565b6115a6565b61038161054a36600461205b565b6115c1565b61037761055d3660046122f7565b611603565b610381611698565b61035761169e565b6103196116ad565b61038161058836600461205b565b6116ba565b61038161059b36600461205b565b6116d8565b6103426105ae36600461205b565b6117c9565b6103426105c13660046121cc565b6117e8565b6103776105d4366004612393565b61181f565b6103426105e73660046121cc565b611875565b6103816118a5565b61034261060236600461205b565b6118c1565b61061a61061536600461205b565b6118d6565b6040516103269493929190612504565b61037761063836600461205b565b611908565b61037761064b366004612393565b6119d3565b610319611a06565b61038161066636600461207c565b611a13565b61038161067936600461205b565b611a3e565b61037761068c36600461205b565b611a5c565b61037761069f3660046120e9565b611ae2565b600a80546106b190612a34565b80601f01602080910402602001604051908101604052809291908181526020018280546106dd90612a34565b801561072a5780601f106106ff5761010080835404028352916020019161072a565b820191906000526020600020905b81548152906001019060200180831161070d57829003601f168201915b505050505081565b600061073f338484611b57565b50600192915050565b6007546001600160a01b031681565b6001600160a01b03808216600090815260056020908152604091829020825160808101845281548516815260018201549281018390526002820154938101939093526003015490921660608201819052909190816107d05760405162461bcd60e51b81526004016107c790612648565b60405180910390fd5b82516001600160a01b031633146107f95760405162461bcd60e51b81526004016107c790612581565b42600454846040015161080c91906129b6565b111561082a5760405162461bcd60e51b81526004016107c7906125b8565b82516001600160a01b0380861660009081526005602052604080822080546001600160a01b0319908116825560018201849055600282019390935560030180549092169091555163a9059cbb60e01b81529083169063a9059cbb9061089590849087906004016124b9565b602060405180830381600087803b1580156108af57600080fd5b505af11580156108c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e7919061229b565b6109035760405162461bcd60e51b81526004016107c7906126b7565b6109168582610911886115a6565b611bb2565b806001600160a01b0316856001600160a01b03167f52a5c2b28bc6eb9712d0ced43463103b486b13ccc9cda499fd3b2d7b6a74a8ee856040516109599190612977565b60405180910390a35050505050565b60025490565b6009546001600160a01b031633146109985760405162461bcd60e51b81526004016107c79061291d565b6109a1816115a6565b156109be5760405162461bcd60e51b81526004016107c79061275a565b60005b600f54811015610b3357816001600160a01b0316600f82815481106109f657634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610b2157600f8054610a21906001906129ed565b81548110610a3f57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600f80546001600160a01b039092169183908110610a7957634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600f805480610ac657634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190556040517fc3f6f866f10921ec4857ee8fe667183cd1751e53ed509c992689bece36ca189890610b18908490612481565b60405180910390a15b80610b2b81612a6f565b9150506109c1565b5050565b6001600160a01b03808216600090815260056020526040902054165b919050565b6009546001600160a01b03163314610b825760405162461bcd60e51b81526004016107c79061291d565b7f07ce702fc13ca0620c174dab22996a6d5fd9e7accb663555a4e85323692706ba8282604051610bb392919061253a565b60405180910390a15050565b6000610bcc848484611bb2565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610c07918691610c029086906129ed565b611b57565b5060019392505050565b610c1a816117c9565b610c365760405162461bcd60e51b81526004016107c7906126ee565b6000610c41836115c1565b905060008111610c635760405162461bcd60e51b81526004016107c790612618565b336000610c6f846115a6565b90506000610c7d84836129ce565b90508582610c9d5760405162461bcd60e51b81526004016107c7906127d8565b6001600160a01b03861660009081526005602052604090206001015415610cd65760405162461bcd60e51b81526004016107c7906127a1565b6040516323b872dd60e01b81526001600160a01b038216906323b872dd90610d0690879030908790600401612495565b602060405180830381600087803b158015610d2057600080fd5b505af1158015610d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d58919061229b565b610d745760405162461bcd60e51b81526004016107c7906126b7565b604080516080810182526001600160a01b038087168083526020808401878152428587019081528d8516606087019081528d86166000818152600590955293889020965187549087166001600160a01b0319918216178855925160018801559051600287015551600390950180549590941694169390931790915591517f1982ca8958fc8a8176cb52be509260f4bc5af7ce04e1533711793f1c56dd535990610e1e908790612977565b60405180910390a350505050505050565b6009546001600160a01b031690565b60035460ff1681565b610e4f610e2f565b6001600160a01b0316336001600160a01b031614610e7f5760405162461bcd60e51b81526004016107c790612940565b6001600160a01b038082166000908152600560209081526040918290208251608081018452815485168152600182015492810183905260028201549381019390935260030154909216606082018190529091610eed5760405162461bcd60e51b81526004016107c790612648565b6001600160a01b03808416600090815260056020908152604080832080546001600160a01b031990811682556001820185905560028201949094556003018054909316909255845190850151915163a9059cbb60e01b81529284169263a9059cbb92610f5c92916004016124b9565b602060405180830381600087803b158015610f7657600080fd5b505af1158015610f8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fae919061229b565b610fca5760405162461bcd60e51b81526004016107c7906126b7565b81600001516001600160a01b0316836001600160a01b03167fbb036e629a9f4c0897ee5d48440dfdb36f7e772117723a2ed603a6514244c2d584602001516040516110159190612977565b60405180910390a3505050565b600e5481565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161073f918590610c029086906129b6565b6009546001600160a01b031633146110895760405162461bcd60e51b81526004016107c79061291d565b610b338282611c6f565b600d5481565b6001600160a01b039081166000908152600560205260409020600301541690565b6000806110c78686611875565b9050801561113457604051635260769b60e11b81526001600160a01b0387169063a4c0ed36906111019033908990899089906004016124d2565b600060405180830381600087803b15801561111b57600080fd5b505af115801561112f573d6000803e3d6000fd5b505050505b95945050505050565b6009546001600160a01b031633146111675760405162461bcd60e51b81526004016107c79061291d565b610b338282611cf6565b61117a336115a6565b8111156111995760405162461bcd60e51b81526004016107c79061280f565b6111a4333083611bb2565b6111ae3082611d34565b50565b600f81815481106111c157600080fd5b6000918252602090912001546001600160a01b0316905081565b6111e68685856113d4565b6001600160a01b03851663a4c0ed368761120087876129ed565b61120b9060016129b6565b85856040518563ffffffff1660e01b815260040161122c94939291906124d2565b600060405180830381600087803b15801561124657600080fd5b505af115801561125a573d6000803e3d6000fd5b50505050505050505050565b6009546001600160a01b031633146112905760405162461bcd60e51b81526004016107c79061291d565b81516112a390600b906020850190611ee3565b5080516112b790600a906020840190611ee3565b507f07ce702fc13ca0620c174dab22996a6d5fd9e7accb663555a4e85323692706ba81836040516020016112ec9291906123ed565b60408051601f1981840301815290829052610bb39161254e565b6009546001600160a01b031633146113305760405162461bcd60e51b81526004016107c79061291d565b600061133b856115a6565b90508084111561134a57600080fd5b83600e600082825461135c91906129b6565b92505081905550846001600160a01b03167f0a605cd1294f60fa3b73548ac68428f33300a051f225afcdcc75e56083c96ee78585856040516113a093929190612980565b60405180910390a25050505050565b60085481565b336000908152600660205260409020805460ff19169115919091179055565b6009546001600160a01b031633146113fe5760405162461bcd60e51b81526004016107c79061291d565b826001600160a01b03167f7b37b2b4bba7b5ea40a69f93db727c289fbbaa632be8186cfa85e0297e001319838360405161143992919061299a565b60405180910390a261145f8361144f84846129ed565b61145a9060016129b6565b611cf6565b505050565b336000908152600560205260409020600101541561159e573360008181526005602052604080822060018101805460038301805484546001600160a01b0319908116865593879055600290940195909555908216909355905163a9059cbb60e01b815291926001600160a01b0390911691829163a9059cbb916114ec919086906004016124b9565b602060405180830381600087803b15801561150657600080fd5b505af115801561151a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061153e919061229b565b61155a5760405162461bcd60e51b81526004016107c7906126b7565b336001600160a01b03167f203627483d943880619f4b7e0cca21dbefd6204b4d85b124eb99540e17ba86dd836040516115939190612977565b60405180910390a250505b565b600f5490565b6001600160a01b031660009081526020819052604090205490565b60006001600160a01b0382163014156115dc57506001610b53565b6007546001600160a01b03838116911614156115fb5750600854610b53565b506000610b53565b6009546001600160a01b0316331461162d5760405162461bcd60e51b81526004016107c79061291d565b805161164090600c906020840190611ee3565b507f07ce702fc13ca0620c174dab22996a6d5fd9e7accb663555a4e85323692706ba81604051602001611673919061244e565b60408051601f198184030181529082905261168d9161254e565b60405180910390a150565b60045481565b6009546001600160a01b031681565b600b80546106b190612a34565b6001600160a01b031660009081526005602052604090206001015490565b6000806116e4836115a6565b905060005b600f548110156117c2576000600f828154811061171657634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546040516370a0823160e01b81526001600160a01b03909116915081906370a0823190611752908890600401612481565b60206040518083038186803b15801561176a57600080fd5b505afa15801561177e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117a291906123ab565b6117ac90846129b6565b92505080806117ba90612a6f565b9150506116e9565b5092915050565b6001600160a01b031660009081526006602052604090205460ff161590565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161073f918590610c029086906129ed565b6009546001600160a01b031633146118495760405162461bcd60e51b81526004016107c79061291d565b6118516118a5565b8110156118705760405162461bcd60e51b81526004016107c790612670565b600d55565b60006118818383611dce565b61189d5760405162461bcd60e51b81526004016107c7906125ef565b61073f611464565b6000600e546118b2610968565b6118bc91906129ed565b905090565b60066020526000908152604090205460ff1681565b60056020526000908152604090208054600182015460028301546003909301546001600160a01b039283169391921684565b6009546001600160a01b031633146119325760405162461bcd60e51b81526004016107c79061291d565b61193b816115a6565b156119585760405162461bcd60e51b81526004016107c790612846565b600f80546001810182556000919091527f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319166001600160a01b0383161790556040517f7417b75095e577f15d994b058af7a3a71f67be4ae2f288725d1b922f6bb67a679061168d908390612481565b6009546001600160a01b031633146119fd5760405162461bcd60e51b81526004016107c79061291d565b6111ae81611ddb565b600c80546106b190612a34565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b031660009081526005602052604090206002015490565b6009546001600160a01b03163314611a865760405162461bcd60e51b81526004016107c79061291d565b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b611aec848461113d565b604051635260769b60e11b81526001600160a01b0385169063a4c0ed3690611b1e9088908790879087906004016124d2565b600060405180830381600087803b158015611b3857600080fd5b505af1158015611b4c573d6000803e3d6000fd5b505050505050505050565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611015908590612977565b6001600160a01b038216611bc557600080fd5b611bd083838361145f565b6001600160a01b03831660009081526020819052604081208054839290611bf89084906129ed565b90915550506001600160a01b03821660009081526020819052604081208054839290611c259084906129b6565b92505081905550816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110159190612977565b600780546001600160a01b0319166001600160a01b03848116919091179182905516611c9f576000600855611cc5565b60008111611cbf5760405162461bcd60e51b81526004016107c790612723565b60088190555b7f94238858463adf0fecc0e064844831a54bccf8467c86f0b93d2a9508e05968538282604051610bb39291906124b9565b600d5481611d026118a5565b611d0c91906129b6565b1115611d2a5760405162461bcd60e51b81526004016107c7906128d0565b610b338282611e42565b611d408260008361145f565b8060026000828254611d5291906129ed565b90915550506001600160a01b03821660009081526020819052604081208054839290611d7f9084906129ed565b90915550506040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611dc2908590612977565b60405180910390a35050565b600061073f338484611bb2565b605a8111611dfb5760405162461bcd60e51b81526004016107c79061288b565b6000611e0a82620151806129ce565b60048190556040519091507ffde5ae686f4fb7b301820b66139fa5cbed90c4b91428ce2fe961558fcac47ba690610bb3908390612977565b6001600160a01b038216611e5557600080fd5b611e616000838361145f565b8060026000828254611e7391906129b6565b90915550506001600160a01b03821660009081526020819052604081208054839290611ea09084906129b6565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611dc2908590612977565b828054611eef90612a34565b90600052602060002090601f016020900481019282611f115760008555611f57565b82601f10611f2a57805160ff1916838001178555611f57565b82800160010185558215611f57579182015b82811115611f57578251825591602001919060010190611f3c565b50611f63929150611f67565b5090565b5b80821115611f635760008155600101611f68565b80356001600160a01b0381168114610b5357600080fd5b60008083601f840112611fa4578182fd5b50813567ffffffffffffffff811115611fbb578182fd5b602083019150836020828501011115611fd357600080fd5b9250929050565b600082601f830112611fea578081fd5b813567ffffffffffffffff8082111561200557612005612aa0565b604051601f8301601f19168101602001828111828210171561202957612029612aa0565b604052828152848301602001861015612040578384fd5b82602086016020830137918201602001929092529392505050565b60006020828403121561206c578081fd5b61207582611f7c565b9392505050565b6000806040838503121561208e578081fd5b61209783611f7c565b91506120a560208401611f7c565b90509250929050565b6000806000606084860312156120c2578081fd5b6120cb84611f7c565b92506120d960208501611f7c565b9150604084013590509250925092565b600080600080600060808688031215612100578081fd5b61210986611f7c565b945061211760208701611f7c565b935060408601359250606086013567ffffffffffffffff811115612139578182fd5b61214588828901611f93565b969995985093965092949392505050565b60008060008060008060a0878903121561216e578081fd5b61217787611f7c565b955061218560208801611f7c565b94506040870135935060608701359250608087013567ffffffffffffffff8111156121ae578182fd5b6121ba89828a01611f93565b979a9699509497509295939492505050565b600080604083850312156121de578182fd5b6121e783611f7c565b946020939093013593505050565b6000806000806060858703121561220a578384fd5b61221385611f7c565b935060208501359250604085013567ffffffffffffffff811115612235578283fd5b61224187828801611f93565b95989497509550505050565b600080600060608486031215612261578283fd5b61226a84611f7c565b95602085013595506040909401359392505050565b600060208284031215612290578081fd5b813561207581612ab6565b6000602082840312156122ac578081fd5b815161207581612ab6565b600080602083850312156122c9578182fd5b823567ffffffffffffffff8111156122df578283fd5b6122eb85828601611f93565b90969095509350505050565b600060208284031215612308578081fd5b813567ffffffffffffffff81111561231e578182fd5b61232a84828501611fda565b949350505050565b60008060408385031215612344578182fd5b823567ffffffffffffffff8082111561235b578384fd5b61236786838701611fda565b9350602085013591508082111561237c578283fd5b5061238985828601611fda565b9150509250929050565b6000602082840312156123a4578081fd5b5035919050565b6000602082840312156123bc578081fd5b5051919050565b60008284528282602086013780602084860101526020601f19601f85011685010190509392505050565b60006902732bb903730b6b29d160b51b8252835161241281600a850160208801612a04565b61040560f31b600a91840191820152835161243481600c840160208801612a04565b602960f81b600c9290910191820152600d01949350505050565b60006a02732bb903a32b936b99d160ad1b8252825161247481600b850160208701612a04565b91909101600b0192915050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b600060018060a01b0386168252846020830152606060408301526124fa6060830184866123c3565b9695505050505050565b6001600160a01b03948516815260208101939093526040830191909152909116606082015260800190565b901515815260200190565b60006020825261232a6020830184866123c3565b600060208252825180602084015261256d816040850160208701612a04565b601f01601f19169190910160400192915050565b6020808252601f908201527f4f6e6c7920636c61696d616e742063616e207265736f6c766520636c61696d00604082015260600190565b60208082526019908201527f436c61696d20706572696f64206e6f74206f7665722079657400000000000000604082015260600190565b6020808252600f908201526e151c985b9cd9995c8819985a5b1959608a1b604082015260600190565b602080825260169082015275155b9cdd5c1c1bdc9d19590818dbdb1b185d195c985b60521b604082015260600190565b6020808252600e908201526d139bc818db185a5b48199bdd5b9960921b604082015260600190565b60208082526027908201527f54686572652063616e277420626520666577657220746f6b656e73207468616e6040820152662073686172657360c81b606082015260800190565b6020808252601a908201527f436f6c6c61746572616c207472616e73666572206661696c6564000000000000604082015260600190565b6020808252818101527f436c61696d732064697361626c656420666f7220746869732061646472657373604082015260600190565b6020808252601d908201527f436f6c6c61746572616c20726174652063616e2774206265207a65726f000000604082015260600190565b60208082526027908201527f537562726567697374657273206d75737420626520656d707479207768656e206040820152661c995b5bdd995960ca1b606082015260800190565b60208082526017908201527f4164647265737320616c726561647920636c61696d6564000000000000000000604082015260600190565b6020808252601f908201527f436c61696d6564206164647265737320686f6c6473206e6f2073686172657300604082015260600190565b6020808252601b908201527f4e6f7420656e6f7567682073686172657320617661696c61626c650000000000604082015260600190565b60208082526025908201527f537562726567697374657273206d75737420626520656d707479207768656e20604082015264185919195960da1b606082015260800190565b60208082526025908201527f436c61696d20706572696f64206d757374206265206174206c65617374203930604082015264206461797360d81b606082015260800190565b6020808252602d908201527f54686572652063616e277420626520666577657220736861726573207468616e60408201526c2076616c696420746f6b656e7360981b606082015260800190565b6020808252600990820152683737ba1037bbb732b960b91b604082015260600190565b60208082526018908201527f596f752063616e6e6f742064656c65746520636c61696d730000000000000000604082015260600190565b90815260200190565b6000848252604060208301526111346040830184866123c3565b918252602082015260400190565b60ff91909116815260200190565b600082198211156129c9576129c9612a8a565b500190565b60008160001904831182151516156129e8576129e8612a8a565b500290565b6000828210156129ff576129ff612a8a565b500390565b60005b83811015612a1f578181015183820152602001612a07565b83811115612a2e576000848401525b50505050565b600281046001821680612a4857607f821691505b60208210811415612a6957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a8357612a83612a8a565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146111ae57600080fdfea26469706673582212206bea04743b6d6739bb10e2f1c3d14ffae367b249ce35290ea9b5eb97cdc788e764736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000030ccd00000000000000000000000000000000000000000000000000000000000000035454530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e54657374696e6754696d65204147000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001974657374696e6774696d652e636f6d2f696e766573746f727300000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061030c5760003560e01c80636427ed971161019d578063a457c2d7116100e9578063cc51e143116100a2578063dd62ed3e1161007c578063dd62ed3e14610658578063eb470ebf1461066b578063f2fde38b1461067e578063f54fc060146106915761030c565b8063cc51e1431461062a578063d2c04f431461063d578063d5025625146106505761030c565b8063a457c2d7146105b3578063a77384c1146105c6578063a9059cbb146105d9578063b0d04c7a146105ec578063b40e80d1146105f4578063c6788bdd146106075761030c565b806378f86afc1161015657806395d89b411161013057806395d89b41146105725780639b56d6c91461057a578063a26cf59f1461058d578063a3ec1883146105a05761030c565b806378f86afc1461054f5780637dc2cd98146105625780638da5cb5b1461056a5761030c565b80636427ed97146104f357806369f721e2146105065780636b03ed5f146105195780636e3baaf51461052157806370a082311461052957806377e071ad1461053c5761030c565b806337a8129c1161025c57806340c10f1911610215578063551ad632116101ef578063551ad632146104b25780635c707f07146104c55780635d6624b7146104d857806360918117146104eb5761030c565b806340c10f191461047957806342966c681461048c5780634ae5e6301461049f5761030c565b806337a8129c1461041d57806339509351146104255780633a1cdf32146104385780633a98ef391461044b5780633bcc45ba146104535780634000aea0146104665761030c565b80631e3b9de5116102c957806326773ddd116102a357806326773ddd146103da5780632a0a4ed5146103ed578063313ce567146103f557806332a7ae951461040a5761030c565b80631e3b9de5146103a15780631f0f06aa146103b457806323b872dd146103c75761030c565b806306fdde0314610311578063095ea7b31461032f5780630c6f0e5d1461034f5780630cd865ec1461036457806318160ddd146103795780631993982d1461038e575b600080fd5b6103196106a4565b604051610326919061254e565b60405180910390f35b61034261033d3660046121cc565b610732565b604051610326919061252f565b610357610748565b6040516103269190612481565b61037761037236600461205b565b610757565b005b610381610968565b6040516103269190612977565b61037761039c36600461205b565b61096e565b6103576103af36600461205b565b610b37565b6103776103c23660046122b7565b610b58565b6103426103d53660046120ae565b610bbf565b6103776103e836600461207c565b610c11565b610357610e2f565b6103fd610e3e565b60405161032691906129a8565b61037761041836600461205b565b610e47565b610381611022565b6103426104333660046121cc565b611028565b6103776104463660046121cc565b61105f565b610381611093565b61035761046136600461205b565b611099565b6103426104743660046121f5565b6110ba565b6103776104873660046121cc565b61113d565b61037761049a366004612393565b611171565b6103576104ad366004612393565b6111b1565b6103776104c0366004612156565b6111db565b6103776104d3366004612332565b611266565b6103776104e63660046121f5565b611306565b6103816113af565b61037761050136600461227f565b6113b5565b61037761051436600461224d565b6113d4565b610377611464565b6103816115a0565b61038161053736600461205b565b6115a6565b61038161054a36600461205b565b6115c1565b61037761055d3660046122f7565b611603565b610381611698565b61035761169e565b6103196116ad565b61038161058836600461205b565b6116ba565b61038161059b36600461205b565b6116d8565b6103426105ae36600461205b565b6117c9565b6103426105c13660046121cc565b6117e8565b6103776105d4366004612393565b61181f565b6103426105e73660046121cc565b611875565b6103816118a5565b61034261060236600461205b565b6118c1565b61061a61061536600461205b565b6118d6565b6040516103269493929190612504565b61037761063836600461205b565b611908565b61037761064b366004612393565b6119d3565b610319611a06565b61038161066636600461207c565b611a13565b61038161067936600461205b565b611a3e565b61037761068c36600461205b565b611a5c565b61037761069f3660046120e9565b611ae2565b600a80546106b190612a34565b80601f01602080910402602001604051908101604052809291908181526020018280546106dd90612a34565b801561072a5780601f106106ff5761010080835404028352916020019161072a565b820191906000526020600020905b81548152906001019060200180831161070d57829003601f168201915b505050505081565b600061073f338484611b57565b50600192915050565b6007546001600160a01b031681565b6001600160a01b03808216600090815260056020908152604091829020825160808101845281548516815260018201549281018390526002820154938101939093526003015490921660608201819052909190816107d05760405162461bcd60e51b81526004016107c790612648565b60405180910390fd5b82516001600160a01b031633146107f95760405162461bcd60e51b81526004016107c790612581565b42600454846040015161080c91906129b6565b111561082a5760405162461bcd60e51b81526004016107c7906125b8565b82516001600160a01b0380861660009081526005602052604080822080546001600160a01b0319908116825560018201849055600282019390935560030180549092169091555163a9059cbb60e01b81529083169063a9059cbb9061089590849087906004016124b9565b602060405180830381600087803b1580156108af57600080fd5b505af11580156108c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e7919061229b565b6109035760405162461bcd60e51b81526004016107c7906126b7565b6109168582610911886115a6565b611bb2565b806001600160a01b0316856001600160a01b03167f52a5c2b28bc6eb9712d0ced43463103b486b13ccc9cda499fd3b2d7b6a74a8ee856040516109599190612977565b60405180910390a35050505050565b60025490565b6009546001600160a01b031633146109985760405162461bcd60e51b81526004016107c79061291d565b6109a1816115a6565b156109be5760405162461bcd60e51b81526004016107c79061275a565b60005b600f54811015610b3357816001600160a01b0316600f82815481106109f657634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610b2157600f8054610a21906001906129ed565b81548110610a3f57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600f80546001600160a01b039092169183908110610a7957634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600f805480610ac657634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190556040517fc3f6f866f10921ec4857ee8fe667183cd1751e53ed509c992689bece36ca189890610b18908490612481565b60405180910390a15b80610b2b81612a6f565b9150506109c1565b5050565b6001600160a01b03808216600090815260056020526040902054165b919050565b6009546001600160a01b03163314610b825760405162461bcd60e51b81526004016107c79061291d565b7f07ce702fc13ca0620c174dab22996a6d5fd9e7accb663555a4e85323692706ba8282604051610bb392919061253a565b60405180910390a15050565b6000610bcc848484611bb2565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610c07918691610c029086906129ed565b611b57565b5060019392505050565b610c1a816117c9565b610c365760405162461bcd60e51b81526004016107c7906126ee565b6000610c41836115c1565b905060008111610c635760405162461bcd60e51b81526004016107c790612618565b336000610c6f846115a6565b90506000610c7d84836129ce565b90508582610c9d5760405162461bcd60e51b81526004016107c7906127d8565b6001600160a01b03861660009081526005602052604090206001015415610cd65760405162461bcd60e51b81526004016107c7906127a1565b6040516323b872dd60e01b81526001600160a01b038216906323b872dd90610d0690879030908790600401612495565b602060405180830381600087803b158015610d2057600080fd5b505af1158015610d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d58919061229b565b610d745760405162461bcd60e51b81526004016107c7906126b7565b604080516080810182526001600160a01b038087168083526020808401878152428587019081528d8516606087019081528d86166000818152600590955293889020965187549087166001600160a01b0319918216178855925160018801559051600287015551600390950180549590941694169390931790915591517f1982ca8958fc8a8176cb52be509260f4bc5af7ce04e1533711793f1c56dd535990610e1e908790612977565b60405180910390a350505050505050565b6009546001600160a01b031690565b60035460ff1681565b610e4f610e2f565b6001600160a01b0316336001600160a01b031614610e7f5760405162461bcd60e51b81526004016107c790612940565b6001600160a01b038082166000908152600560209081526040918290208251608081018452815485168152600182015492810183905260028201549381019390935260030154909216606082018190529091610eed5760405162461bcd60e51b81526004016107c790612648565b6001600160a01b03808416600090815260056020908152604080832080546001600160a01b031990811682556001820185905560028201949094556003018054909316909255845190850151915163a9059cbb60e01b81529284169263a9059cbb92610f5c92916004016124b9565b602060405180830381600087803b158015610f7657600080fd5b505af1158015610f8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fae919061229b565b610fca5760405162461bcd60e51b81526004016107c7906126b7565b81600001516001600160a01b0316836001600160a01b03167fbb036e629a9f4c0897ee5d48440dfdb36f7e772117723a2ed603a6514244c2d584602001516040516110159190612977565b60405180910390a3505050565b600e5481565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161073f918590610c029086906129b6565b6009546001600160a01b031633146110895760405162461bcd60e51b81526004016107c79061291d565b610b338282611c6f565b600d5481565b6001600160a01b039081166000908152600560205260409020600301541690565b6000806110c78686611875565b9050801561113457604051635260769b60e11b81526001600160a01b0387169063a4c0ed36906111019033908990899089906004016124d2565b600060405180830381600087803b15801561111b57600080fd5b505af115801561112f573d6000803e3d6000fd5b505050505b95945050505050565b6009546001600160a01b031633146111675760405162461bcd60e51b81526004016107c79061291d565b610b338282611cf6565b61117a336115a6565b8111156111995760405162461bcd60e51b81526004016107c79061280f565b6111a4333083611bb2565b6111ae3082611d34565b50565b600f81815481106111c157600080fd5b6000918252602090912001546001600160a01b0316905081565b6111e68685856113d4565b6001600160a01b03851663a4c0ed368761120087876129ed565b61120b9060016129b6565b85856040518563ffffffff1660e01b815260040161122c94939291906124d2565b600060405180830381600087803b15801561124657600080fd5b505af115801561125a573d6000803e3d6000fd5b50505050505050505050565b6009546001600160a01b031633146112905760405162461bcd60e51b81526004016107c79061291d565b81516112a390600b906020850190611ee3565b5080516112b790600a906020840190611ee3565b507f07ce702fc13ca0620c174dab22996a6d5fd9e7accb663555a4e85323692706ba81836040516020016112ec9291906123ed565b60408051601f1981840301815290829052610bb39161254e565b6009546001600160a01b031633146113305760405162461bcd60e51b81526004016107c79061291d565b600061133b856115a6565b90508084111561134a57600080fd5b83600e600082825461135c91906129b6565b92505081905550846001600160a01b03167f0a605cd1294f60fa3b73548ac68428f33300a051f225afcdcc75e56083c96ee78585856040516113a093929190612980565b60405180910390a25050505050565b60085481565b336000908152600660205260409020805460ff19169115919091179055565b6009546001600160a01b031633146113fe5760405162461bcd60e51b81526004016107c79061291d565b826001600160a01b03167f7b37b2b4bba7b5ea40a69f93db727c289fbbaa632be8186cfa85e0297e001319838360405161143992919061299a565b60405180910390a261145f8361144f84846129ed565b61145a9060016129b6565b611cf6565b505050565b336000908152600560205260409020600101541561159e573360008181526005602052604080822060018101805460038301805484546001600160a01b0319908116865593879055600290940195909555908216909355905163a9059cbb60e01b815291926001600160a01b0390911691829163a9059cbb916114ec919086906004016124b9565b602060405180830381600087803b15801561150657600080fd5b505af115801561151a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061153e919061229b565b61155a5760405162461bcd60e51b81526004016107c7906126b7565b336001600160a01b03167f203627483d943880619f4b7e0cca21dbefd6204b4d85b124eb99540e17ba86dd836040516115939190612977565b60405180910390a250505b565b600f5490565b6001600160a01b031660009081526020819052604090205490565b60006001600160a01b0382163014156115dc57506001610b53565b6007546001600160a01b03838116911614156115fb5750600854610b53565b506000610b53565b6009546001600160a01b0316331461162d5760405162461bcd60e51b81526004016107c79061291d565b805161164090600c906020840190611ee3565b507f07ce702fc13ca0620c174dab22996a6d5fd9e7accb663555a4e85323692706ba81604051602001611673919061244e565b60408051601f198184030181529082905261168d9161254e565b60405180910390a150565b60045481565b6009546001600160a01b031681565b600b80546106b190612a34565b6001600160a01b031660009081526005602052604090206001015490565b6000806116e4836115a6565b905060005b600f548110156117c2576000600f828154811061171657634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546040516370a0823160e01b81526001600160a01b03909116915081906370a0823190611752908890600401612481565b60206040518083038186803b15801561176a57600080fd5b505afa15801561177e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117a291906123ab565b6117ac90846129b6565b92505080806117ba90612a6f565b9150506116e9565b5092915050565b6001600160a01b031660009081526006602052604090205460ff161590565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161073f918590610c029086906129ed565b6009546001600160a01b031633146118495760405162461bcd60e51b81526004016107c79061291d565b6118516118a5565b8110156118705760405162461bcd60e51b81526004016107c790612670565b600d55565b60006118818383611dce565b61189d5760405162461bcd60e51b81526004016107c7906125ef565b61073f611464565b6000600e546118b2610968565b6118bc91906129ed565b905090565b60066020526000908152604090205460ff1681565b60056020526000908152604090208054600182015460028301546003909301546001600160a01b039283169391921684565b6009546001600160a01b031633146119325760405162461bcd60e51b81526004016107c79061291d565b61193b816115a6565b156119585760405162461bcd60e51b81526004016107c790612846565b600f80546001810182556000919091527f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319166001600160a01b0383161790556040517f7417b75095e577f15d994b058af7a3a71f67be4ae2f288725d1b922f6bb67a679061168d908390612481565b6009546001600160a01b031633146119fd5760405162461bcd60e51b81526004016107c79061291d565b6111ae81611ddb565b600c80546106b190612a34565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b031660009081526005602052604090206002015490565b6009546001600160a01b03163314611a865760405162461bcd60e51b81526004016107c79061291d565b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b611aec848461113d565b604051635260769b60e11b81526001600160a01b0385169063a4c0ed3690611b1e9088908790879087906004016124d2565b600060405180830381600087803b158015611b3857600080fd5b505af1158015611b4c573d6000803e3d6000fd5b505050505050505050565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611015908590612977565b6001600160a01b038216611bc557600080fd5b611bd083838361145f565b6001600160a01b03831660009081526020819052604081208054839290611bf89084906129ed565b90915550506001600160a01b03821660009081526020819052604081208054839290611c259084906129b6565b92505081905550816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110159190612977565b600780546001600160a01b0319166001600160a01b03848116919091179182905516611c9f576000600855611cc5565b60008111611cbf5760405162461bcd60e51b81526004016107c790612723565b60088190555b7f94238858463adf0fecc0e064844831a54bccf8467c86f0b93d2a9508e05968538282604051610bb39291906124b9565b600d5481611d026118a5565b611d0c91906129b6565b1115611d2a5760405162461bcd60e51b81526004016107c7906128d0565b610b338282611e42565b611d408260008361145f565b8060026000828254611d5291906129ed565b90915550506001600160a01b03821660009081526020819052604081208054839290611d7f9084906129ed565b90915550506040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611dc2908590612977565b60405180910390a35050565b600061073f338484611bb2565b605a8111611dfb5760405162461bcd60e51b81526004016107c79061288b565b6000611e0a82620151806129ce565b60048190556040519091507ffde5ae686f4fb7b301820b66139fa5cbed90c4b91428ce2fe961558fcac47ba690610bb3908390612977565b6001600160a01b038216611e5557600080fd5b611e616000838361145f565b8060026000828254611e7391906129b6565b90915550506001600160a01b03821660009081526020819052604081208054839290611ea09084906129b6565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611dc2908590612977565b828054611eef90612a34565b90600052602060002090601f016020900481019282611f115760008555611f57565b82601f10611f2a57805160ff1916838001178555611f57565b82800160010185558215611f57579182015b82811115611f57578251825591602001919060010190611f3c565b50611f63929150611f67565b5090565b5b80821115611f635760008155600101611f68565b80356001600160a01b0381168114610b5357600080fd5b60008083601f840112611fa4578182fd5b50813567ffffffffffffffff811115611fbb578182fd5b602083019150836020828501011115611fd357600080fd5b9250929050565b600082601f830112611fea578081fd5b813567ffffffffffffffff8082111561200557612005612aa0565b604051601f8301601f19168101602001828111828210171561202957612029612aa0565b604052828152848301602001861015612040578384fd5b82602086016020830137918201602001929092529392505050565b60006020828403121561206c578081fd5b61207582611f7c565b9392505050565b6000806040838503121561208e578081fd5b61209783611f7c565b91506120a560208401611f7c565b90509250929050565b6000806000606084860312156120c2578081fd5b6120cb84611f7c565b92506120d960208501611f7c565b9150604084013590509250925092565b600080600080600060808688031215612100578081fd5b61210986611f7c565b945061211760208701611f7c565b935060408601359250606086013567ffffffffffffffff811115612139578182fd5b61214588828901611f93565b969995985093965092949392505050565b60008060008060008060a0878903121561216e578081fd5b61217787611f7c565b955061218560208801611f7c565b94506040870135935060608701359250608087013567ffffffffffffffff8111156121ae578182fd5b6121ba89828a01611f93565b979a9699509497509295939492505050565b600080604083850312156121de578182fd5b6121e783611f7c565b946020939093013593505050565b6000806000806060858703121561220a578384fd5b61221385611f7c565b935060208501359250604085013567ffffffffffffffff811115612235578283fd5b61224187828801611f93565b95989497509550505050565b600080600060608486031215612261578283fd5b61226a84611f7c565b95602085013595506040909401359392505050565b600060208284031215612290578081fd5b813561207581612ab6565b6000602082840312156122ac578081fd5b815161207581612ab6565b600080602083850312156122c9578182fd5b823567ffffffffffffffff8111156122df578283fd5b6122eb85828601611f93565b90969095509350505050565b600060208284031215612308578081fd5b813567ffffffffffffffff81111561231e578182fd5b61232a84828501611fda565b949350505050565b60008060408385031215612344578182fd5b823567ffffffffffffffff8082111561235b578384fd5b61236786838701611fda565b9350602085013591508082111561237c578283fd5b5061238985828601611fda565b9150509250929050565b6000602082840312156123a4578081fd5b5035919050565b6000602082840312156123bc578081fd5b5051919050565b60008284528282602086013780602084860101526020601f19601f85011685010190509392505050565b60006902732bb903730b6b29d160b51b8252835161241281600a850160208801612a04565b61040560f31b600a91840191820152835161243481600c840160208801612a04565b602960f81b600c9290910191820152600d01949350505050565b60006a02732bb903a32b936b99d160ad1b8252825161247481600b850160208701612a04565b91909101600b0192915050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b600060018060a01b0386168252846020830152606060408301526124fa6060830184866123c3565b9695505050505050565b6001600160a01b03948516815260208101939093526040830191909152909116606082015260800190565b901515815260200190565b60006020825261232a6020830184866123c3565b600060208252825180602084015261256d816040850160208701612a04565b601f01601f19169190910160400192915050565b6020808252601f908201527f4f6e6c7920636c61696d616e742063616e207265736f6c766520636c61696d00604082015260600190565b60208082526019908201527f436c61696d20706572696f64206e6f74206f7665722079657400000000000000604082015260600190565b6020808252600f908201526e151c985b9cd9995c8819985a5b1959608a1b604082015260600190565b602080825260169082015275155b9cdd5c1c1bdc9d19590818dbdb1b185d195c985b60521b604082015260600190565b6020808252600e908201526d139bc818db185a5b48199bdd5b9960921b604082015260600190565b60208082526027908201527f54686572652063616e277420626520666577657220746f6b656e73207468616e6040820152662073686172657360c81b606082015260800190565b6020808252601a908201527f436f6c6c61746572616c207472616e73666572206661696c6564000000000000604082015260600190565b6020808252818101527f436c61696d732064697361626c656420666f7220746869732061646472657373604082015260600190565b6020808252601d908201527f436f6c6c61746572616c20726174652063616e2774206265207a65726f000000604082015260600190565b60208082526027908201527f537562726567697374657273206d75737420626520656d707479207768656e206040820152661c995b5bdd995960ca1b606082015260800190565b60208082526017908201527f4164647265737320616c726561647920636c61696d6564000000000000000000604082015260600190565b6020808252601f908201527f436c61696d6564206164647265737320686f6c6473206e6f2073686172657300604082015260600190565b6020808252601b908201527f4e6f7420656e6f7567682073686172657320617661696c61626c650000000000604082015260600190565b60208082526025908201527f537562726567697374657273206d75737420626520656d707479207768656e20604082015264185919195960da1b606082015260800190565b60208082526025908201527f436c61696d20706572696f64206d757374206265206174206c65617374203930604082015264206461797360d81b606082015260800190565b6020808252602d908201527f54686572652063616e277420626520666577657220736861726573207468616e60408201526c2076616c696420746f6b656e7360981b606082015260800190565b6020808252600990820152683737ba1037bbb732b960b91b604082015260600190565b60208082526018908201527f596f752063616e6e6f742064656c65746520636c61696d730000000000000000604082015260600190565b90815260200190565b6000848252604060208301526111346040830184866123c3565b918252602082015260400190565b60ff91909116815260200190565b600082198211156129c9576129c9612a8a565b500190565b60008160001904831182151516156129e8576129e8612a8a565b500290565b6000828210156129ff576129ff612a8a565b500390565b60005b83811015612a1f578181015183820152602001612a07565b83811115612a2e576000848401525b50505050565b600281046001821680612a4857607f821691505b60208210811415612a6957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a8357612a83612a8a565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146111ae57600080fdfea26469706673582212206bea04743b6d6739bb10e2f1c3d14ffae367b249ce35290ea9b5eb97cdc788e764736f6c63430008000033

Deployed Bytecode Sourcemap

2925:9148:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2979:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3010:157:0;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3388:38:1:-;;;:::i;:::-;;;;;;;:::i;10711:741::-;;;;;;:::i;:::-;;:::i;:::-;;1989:100:0;;;:::i;:::-;;;;;;;:::i;6072:483:5:-;;;;;;:::i;:::-;;:::i;9091:126:1:-;;;;;;:::i;:::-;;:::i;7134:113:5:-;;;;;;:::i;:::-;;:::i;3638:262:0:-;;;;;;:::i;:::-;;:::i;8063:1020:1:-;;;;;;:::i;:::-;;:::i;7628:97:5:-;;;:::i;1817:30:0:-;;;:::i;:::-;;;;;;;:::i;11593:514:1:-;;;;;;:::i;:::-;;:::i;3165:32:5:-;;;:::i;4309:203:0:-;;;;;;:::i;:::-;;:::i;7465:155:5:-;;;;;;:::i;:::-;;:::i;3077:30::-;;;:::i;9363:136:1:-;;;;;;:::i;:::-;;:::i;6134:303:0:-;;;;;;:::i;:::-;;:::i;9055:117:5:-;;;;;;:::i;:::-;;:::i;11737:225::-;;;;;;:::i;:::-;;:::i;3206:29::-;;;;;;:::i;:::-;;:::i;10415:333::-;;;;;;:::i;:::-;;:::i;3813:231::-;;;;;;:::i;:::-;;:::i;8194:301::-;;;;;;:::i;:::-;;:::i;3433:35:1:-;;;:::i;5559:103::-;;;;;;:::i;:::-;;:::i;10093:314:5:-;;;;;;:::i;:::-;;:::i;10098:427:1:-;;;:::i;4816:103:5:-;;;:::i;2152:119:0:-;;;;;;:::i;:::-;;:::i;3806:327:1:-;;;;;;:::i;:::-;;:::i;4052:167:5:-;;;;;;:::i;:::-;;:::i;3012:37:1:-;;;:::i;796:20:4:-;;;:::i;3013:29:5:-;;;:::i;9225:130:1:-;;;;;;:::i;:::-;;:::i;6695:322:5:-;;;;;;:::i;:::-;;:::i;5844:121:1:-;;;;;;:::i;:::-;;:::i;5015:213:0:-;;;;;;:::i;:::-;;:::i;4592:216:5:-;;;;;;:::i;:::-;;:::i;9643:217:1:-;;;;;;:::i;:::-;;:::i;8743:113:5:-;;;:::i;3207:48:1:-;;;;;;:::i;:::-;;:::i;3082:39::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;5795:269:5:-;;;;;;:::i;:::-;;:::i;7255:129::-;;;;;;:::i;:::-;;:::i;3049:19::-;;;:::i;2720:143:0:-;;;;;;:::i;:::-;;:::i;9507:128:1:-;;;;;;:::i;:::-;;:::i;1464:150:4:-;;;;;;:::i;:::-;;:::i;9180:218:5:-;;;;;;:::i;:::-;;:::i;2979:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3010:157:0:-;3084:4;3101:36;3110:10;3122:7;3131:5;3101:8;:36::i;:::-;-1:-1:-1;3155:4:0;3010:157;;;;:::o;3388:38:1:-;;;-1:-1:-1;;;;;3388:38:1;;:::o;10711:741::-;-1:-1:-1;;;;;10788:19:1;;;10767:18;10788:19;;;:6;:19;;;;;;;;;10767:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10929:15;10921:42;;;;-1:-1:-1;;;10921:42:1;;;;;;;:::i;:::-;;;;;;;;;10982:14;;-1:-1:-1;;;;;10982:28:1;11000:10;10982:28;10974:72;;;;-1:-1:-1;;;10974:72:1;;;;;;;:::i;:::-;11098:15;11083:11;;11065:5;:15;;;:29;;;;:::i;:::-;:48;;11057:86;;;;-1:-1:-1;;;11057:86:1;;;;;;;:::i;:::-;11173:14;;-1:-1:-1;;;;;11205:19:1;;;11154:16;11205:19;;;:6;:19;;;;;;11198:26;;-1:-1:-1;;;;;;11198:26:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;11243:39;-1:-1:-1;;;11243:39:1;;:17;;;;;;:39;;11173:14;;11271:10;;11243:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11235:78;;;;-1:-1:-1;;;11235:78:1;;;;;;;:::i;:::-;11324:56;11334:11;11347:8;11357:22;11367:11;11357:9;:22::i;:::-;11324:9;:56::i;:::-;11423:8;-1:-1:-1;;;;;11396:48:1;11410:11;-1:-1:-1;;;;;11396:48:1;;11433:10;11396:48;;;;;;:::i;:::-;;;;;;;;10711:741;;;;;:::o;1989:100:0:-;2069:12;;1989:100;:::o;6072:483:5:-;1256:5:4;;-1:-1:-1;;;;;1256:5:4;1265:10;1256:19;1248:41;;;;-1:-1:-1;;;1248:41:4;;;;;;;:::i;:::-;6162:26:5::1;6172:15;6162:9;:26::i;:::-;:31:::0;6154:83:::1;;;;-1:-1:-1::0;;;6154:83:5::1;;;;;;;:::i;:::-;6253:9;6248:300;6270:12;:19:::0;6268:21;::::1;6248:300;;;6334:15;-1:-1:-1::0;;;;;6315:34:5::1;:12;6328:1;6315:15;;;;;;-1:-1:-1::0;;;6315:15:5::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;6315:15:5::1;:34;6311:226;;;6388:12;6401:19:::0;;:23:::1;::::0;6423:1:::1;::::0;6401:23:::1;:::i;:::-;6388:37;;;;;;-1:-1:-1::0;;;6388:37:5::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;6370:12:::1;:15:::0;;-1:-1:-1;;;;;6388:37:5;;::::1;::::0;6383:1;;6370:15;::::1;;;-1:-1:-1::0;;;6370:15:5::1;;;;;;;;;;;;;;;;;:55;;;;;-1:-1:-1::0;;;;;6370:55:5::1;;;;;-1:-1:-1::0;;;;;6370:55:5::1;;;;;;6444:12;:18;;;;;-1:-1:-1::0;;;6444:18:5::1;;;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;6444:18:5;;;;;-1:-1:-1;;;;;;6444:18:5::1;::::0;;;;;6486:35:::1;::::0;::::1;::::0;::::1;::::0;6505:15;;6486:35:::1;:::i;:::-;;;;;;;;6311:226;6291:3:::0;::::1;::::0;::::1;:::i;:::-;;;;6248:300;;;;6072:483:::0;:::o;9091:126:1:-;-1:-1:-1;;;;;9181:19:1;;;9154:7;9181:19;;;:6;:19;;;;;:28;;9091:126;;;;:::o;7134:113:5:-;1256:5:4;;-1:-1:-1;;;;;1256:5:4;1265:10;1256:19;1248:41;;;;-1:-1:-1;;;1248:41:4;;;;;;;:::i;:::-;7218:21:5::1;7231:7;;7218:21;;;;;;;:::i;:::-;;;;;;;;7134:113:::0;;:::o;3638:262:0:-;3736:4;3753:36;3763:6;3771:9;3782:6;3753:9;:36::i;:::-;-1:-1:-1;;;;;3829:19:0;;;;;;:11;:19;;;;;;;;3817:10;3829:31;;;;;;;;;3800:70;;3809:6;;3829:40;;3863:6;;3829:40;:::i;:::-;3800:8;:70::i;:::-;-1:-1:-1;3888:4:0;3638:262;;;;;:::o;8063:1020:1:-;8155:30;8173:11;8155:17;:30::i;:::-;8147:75;;;;-1:-1:-1;;;8147:75:1;;;;;;;:::i;:::-;8233:22;8258:33;8276:14;8258:17;:33::i;:::-;8233:58;;8327:1;8310:14;:18;8302:53;;;;-1:-1:-1;;;8302:53:1;;;;;;;:::i;:::-;8385:10;8366:16;8424:22;8434:11;8424:9;:22::i;:::-;8406:40;-1:-1:-1;8457:18:1;8478:24;8488:14;8406:40;8478:24;:::i;:::-;8457:45;-1:-1:-1;8538:14:1;8572:11;8564:55;;;;-1:-1:-1;;;8564:55:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;8638:19:1;;;;;;:6;:19;;;;;:30;;;:35;8630:71;;;;-1:-1:-1;;;8630:71:1;;;;;;;:::i;:::-;8720:58;;-1:-1:-1;;;8720:58:1;;-1:-1:-1;;;;;8720:21:1;;;;;:58;;8742:8;;8760:4;;8767:10;;8720:58;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8712:97;;;;-1:-1:-1;;;8712:97:1;;;;;;;:::i;:::-;8844:172;;;;;;;;-1:-1:-1;;;;;8844:172:1;;;;;;;;;;;;;8946:15;8844:172;;;;;;;;;;;;;;;8822:19;;;-1:-1:-1;8822:19:1;;;:6;:19;;;;;;;:194;;;;;;;-1:-1:-1;;;;;;8822:194:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9034:41;;;;;;9067:7;;9034:41;:::i;:::-;;;;;;;;8063:1020;;;;;;;:::o;7628:97:5:-;7712:5;;-1:-1:-1;;;;;7712:5:5;7628:97;:::o;1817:30:0:-;;;;;;:::o;11593:514:1:-;11675:17;:15;:17::i;:::-;-1:-1:-1;;;;;11661:31:1;:10;-1:-1:-1;;;;;11661:31:1;;11653:68;;;;-1:-1:-1;;;11653:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;11753:19:1;;;11732:18;11753:19;;;:6;:19;;;;;;;;;11732:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11838:48;;;;-1:-1:-1;;;11838:48:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;11904:19:1;;;;;;;:6;:19;;;;;;;;11897:26;;-1:-1:-1;;;;;;11897:26:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;11960:14;;11976:16;;;;11942:51;;-1:-1:-1;;;11942:51:1;;:17;;;;;;:51;;11960:14;11942:51;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11934:90;;;;-1:-1:-1;;;11934:90:1;;;;;;;:::i;:::-;12066:5;:14;;;-1:-1:-1;;;;;12040:59:1;12053:11;-1:-1:-1;;;;;12040:59:1;;12082:5;:16;;;12040:59;;;;;;:::i;:::-;;;;;;;;11593:514;;;:::o;3165:32:5:-;;;;:::o;4309:203:0:-;4415:10;4389:4;4436:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;4436:32:0;;;;;;;;;;4389:4;;4406:76;;4427:7;;4436:45;;4471:10;;4436:45;:::i;7465:155:5:-;1256:5:4;;-1:-1:-1;;;;;1256:5:4;1265:10;1256:19;1248:41;;;;-1:-1:-1;;;1248:41:4;;;;;;;:::i;:::-;7563:49:5::1;7595:10;7607:4;7563:31;:49::i;3077:30::-:0;;;;:::o;9363:136:1:-;-1:-1:-1;;;;;9459:19:1;;;9432:7;9459:19;;;:6;:19;;;;;:32;;;;;9363:136::o;6134:303:0:-;6228:4;6245:12;6260:27;6269:9;6280:6;6260:8;:27::i;:::-;6245:42;;6302:7;6298:107;;;6325:68;;-1:-1:-1;;;6325:68:0;;-1:-1:-1;;;;;6325:42:0;;;;;:68;;6368:10;;6380:6;;6388:4;;;;6325:68;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6298:107;6422:7;6134:303;-1:-1:-1;;;;;6134:303:0:o;9055:117:5:-;1256:5:4;;-1:-1:-1;;;;;1256:5:4;1265:10;1256:19;1248:41;;;;-1:-1:-1;;;1248:41:4;;;;;;;:::i;:::-;9137:27:5::1;9143:11;9156:7;9137:5;:27::i;11737:225::-:0;11805:21;11815:10;11805:9;:21::i;:::-;11794:7;:32;;11786:72;;;;-1:-1:-1;;;11786:72:5;;;;;;;:::i;:::-;11869:45;11879:10;11899:4;11906:7;11869:9;:45::i;:::-;11925:29;11939:4;11946:7;11925:5;:29::i;:::-;11737:225;:::o;3206:29::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3206:29:5;;-1:-1:-1;3206:29:5;:::o;10415:333::-;10571:60;10584:11;10597:16;10615:15;10571:12;:60::i;:::-;-1:-1:-1;;;;;10642:39:5;;;10682:11;10695:34;10713:16;10695:15;:34;:::i;:::-;:38;;10732:1;10695:38;:::i;:::-;10735:4;;10642:98;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10415:333;;;;;;:::o;3813:231::-;1256:5:4;;-1:-1:-1;;;;;1256:5:4;1265:10;1256:19;1248:41;;;;-1:-1:-1;;;1248:41:4;;;;;;;:::i;:::-;3902:16:5;;::::1;::::0;:6:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;3929:12:5;;::::1;::::0;:4:::1;::::0;:12:::1;::::0;::::1;::::0;::::1;:::i;:::-;;3957:79;4008:5;4021:7;3977:57;;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;3977:57:5;;::::1;::::0;;;;;;;3957:79:::1;::::0;::::1;:::i;8194:301::-:0;1256:5:4;;-1:-1:-1;;;;;1256:5:4;1265:10;1256:19;1248:41;;;;-1:-1:-1;;;1248:41:4;;;;;;;:::i;:::-;8307:21:5::1;8331:17;8341:6;8331:9;:17::i;:::-;8307:41;;8377:13;8367:6;:23;;8359:32;;;::::0;::::1;;8419:6;8402:13;;:23;;;;;;;:::i;:::-;;;;;;;;8463:6;-1:-1:-1::0;;;;;8441:46:5::1;;8471:6;8479:7;;8441:46;;;;;;;;:::i;:::-;;;;;;;;1300:1:4;8194:301:5::0;;;;:::o;3433:35:1:-;;;;:::o;5559:103::-;5632:10;5615:28;;;;:16;:28;;;;;:39;;-1:-1:-1;;5615:39:1;5646:8;;5615:39;;;;;;5559:103::o;10093:314:5:-;1256:5:4;;-1:-1:-1;;;;;1256:5:4;1265:10;1256:19;1248:41;;;;-1:-1:-1;;;1248:41:4;;;;;;;:::i;:::-;10242:11:5::1;-1:-1:-1::0;;;;;10222:67:5::1;;10255:16;10273:15;10222:67;;;;;;;:::i;:::-;;;;;;;;10341:58;10347:11:::0;10360:34:::1;10378:16:::0;10360:15;:34:::1;:::i;:::-;:38;::::0;10397:1:::1;10360:38;:::i;:::-;10341:5;:58::i;:::-;10093:314:::0;;;:::o;10098:427:1:-;10149:10;10142:18;;;;:6;:18;;;;;:29;;;:34;10138:380;;10221:10;10193:18;10214;;;:6;:18;;;;;;:29;;;;;10283:31;;;;;10330:25;;-1:-1:-1;;;;;;10330:25:1;;;;;;;;;-1:-1:-1;10330:25:1;;;;;;;;;;;;;10378:41;;-1:-1:-1;;;10378:41:1;;10214:29;;-1:-1:-1;;;;;10283:31:1;;;;;;10378:17;;:41;;10221:10;10214:29;;10378:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10370:80;;;;-1:-1:-1;;;10370:80:1;;;;;;;:::i;:::-;10483:10;-1:-1:-1;;;;;10470:36:1;;10495:10;10470:36;;;;;;:::i;:::-;;;;;;;;10138:380;;;10098:427::o;4816:103:5:-;4892:12;:19;4816:103;:::o;2152:119:0:-;-1:-1:-1;;;;;2245:18:0;2218:7;2245:18;;;;;;;;;;;;2152:119::o;3806:327:1:-;3886:7;-1:-1:-1;;;;;3910:31:1;;3936:4;3910:31;3906:220;;;-1:-1:-1;3965:1:1;3958:8;;3906:220;4006:23;;-1:-1:-1;;;;;3988:41:1;;;4006:23;;3988:41;3984:142;;;-1:-1:-1;4053:20:1;;4046:27;;3984:142;-1:-1:-1;4113:1:1;4106:8;;4052:167:5;1256:5:4;;-1:-1:-1;;;;;1256:5:4;1265:10;1256:19;1248:41;;;;-1:-1:-1;;;1248:41:4;;;;;;;:::i;:::-;4120:14:5;;::::1;::::0;:5:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;4150:61;4202:6;4170:39;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;4170:39:5;;::::1;::::0;;;;;;;4150:61:::1;::::0;::::1;:::i;:::-;;;;;;;;4052:167:::0;:::o;3012:37:1:-;;;;:::o;796:20:4:-;;;-1:-1:-1;;;;;796:20:4;;:::o;3013:29:5:-;;;;;;;:::i;9225:130:1:-;-1:-1:-1;;;;;9317:19:1;9290:7;9317:19;;;:6;:19;;;;;:30;;;;9225:130::o;6695:322:5:-;6755:7;6775:15;6793:17;6803:6;6793:9;:17::i;:::-;6775:35;;6826:9;6821:164;6843:12;:19;6841:21;;6821:164;;;6884:13;6907:12;6920:1;6907:15;;;;;;-1:-1:-1;;;6907:15:5;;;;;;;;;;;;;;;;;;;6949:24;;-1:-1:-1;;;6949:24:5;;-1:-1:-1;;;;;6907:15:5;;;;-1:-1:-1;6907:15:5;;6949:16;;:24;;6966:6;;6949:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6938:35;;;;:::i;:::-;;;6821:164;6864:3;;;;;:::i;:::-;;;;6821:164;;;-1:-1:-1;7002:7:5;6695:322;-1:-1:-1;;6695:322:5:o;5844:121:1:-;-1:-1:-1;;;;;5933:24:1;5908:4;5933:24;;;:16;:24;;;;;;;;5932:25;;5844:121::o;5015:213:0:-;5126:10;5100:4;5147:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;5147:32:0;;;;;;;;;;5100:4;;5117:81;;5138:7;;5147:50;;5182:15;;5147:50;:::i;4592:216:5:-;1256:5:4;;-1:-1:-1;;;;;1256:5:4;1265:10;1256:19;1248:41;;;;-1:-1:-1;;;1248:41:4;;;;;;;:::i;:::-;4698:18:5::1;:16;:18::i;:::-;4679:15;:37;;4671:89;;;;-1:-1:-1::0;;;4671:89:5::1;;;;;;;:::i;:::-;4771:11;:29:::0;4592:216::o;9643:217:1:-;9729:4;9754:33;9769:9;9780:6;9754:14;:33::i;:::-;9746:61;;;;-1:-1:-1;;;9746:61:1;;;;;;;:::i;:::-;9818:12;:10;:12::i;8743:113:5:-;8792:7;8835:13;;8819;:11;:13::i;:::-;:29;;;;:::i;:::-;8812:36;;8743:113;:::o;3207:48:1:-;;;;;;;;;;;;;;;:::o;3082:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3082:39:1;;;;;;;;:::o;5795:269:5:-;1256:5:4;;-1:-1:-1;;;;;1256:5:4;1265:10;1256:19;1248:41;;;;-1:-1:-1;;;1248:41:4;;;;;;;:::i;:::-;5889:26:5::1;5899:15;5889:9;:26::i;:::-;:31:::0;5881:81:::1;;;;-1:-1:-1::0;;;5881:81:5::1;;;;;;;:::i;:::-;5973:12;:34:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;5973:34:5;;;;;::::1;::::0;;-1:-1:-1;;;;;;5973:34:5::1;-1:-1:-1::0;;;;;5973:34:5;::::1;;::::0;;6023:33:::1;::::0;::::1;::::0;::::1;::::0;5973:34;;6023:33:::1;:::i;7255:129::-:0;1256:5:4;;-1:-1:-1;;;;;1256:5:4;1265:10;1256:19;1248:41;;;;-1:-1:-1;;;1248:41:4;;;;;;;:::i;:::-;7336:40:5::1;7358:17;7336:21;:40::i;3049:19::-:0;;;;;;;:::i;2720:143:0:-;-1:-1:-1;;;;;2828:18:0;;;2801:7;2828:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;2720:143::o;9507:128:1:-;-1:-1:-1;;;;;9598:19:1;9571:7;9598:19;;;:6;:19;;;;;:29;;;;9507:128::o;1464:150:4:-;1256:5;;-1:-1:-1;;;;;1256:5:4;1265:10;1256:19;1248:41;;;;-1:-1:-1;;;1248:41:4;;;;;;;:::i;:::-;1563:5:::1;::::0;1542:37:::1;::::0;-1:-1:-1;;;;;1542:37:4;;::::1;::::0;1563:5:::1;::::0;1542:37:::1;::::0;1563:5:::1;::::0;1542:37:::1;1590:5;:16:::0;;-1:-1:-1;;;;;;1590:16:4::1;-1:-1:-1::0;;;;;1590:16:4;;;::::1;::::0;;;::::1;::::0;;1464:150::o;9180:218:5:-;9293:20;9298:6;9306;9293:4;:20::i;:::-;9324:66;;-1:-1:-1;;;9324:66:5;;-1:-1:-1;;;;;9324:39:5;;;;;:66;;9364:11;;9377:6;;9385:4;;;;9324:66;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9180:218;;;;;:::o;8064:175:0:-;-1:-1:-1;;;;;8149:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:35;;;8200:31;;;;;8179:5;;8200:31;:::i;5718:330::-;-1:-1:-1;;;;;5824:23:0;;5816:32;;;;;;5861:47;5882:6;5890:9;5901:6;5861:20;:47::i;:::-;-1:-1:-1;;;;;5921:17:0;;:9;:17;;;;;;;;;;:27;;5942:6;;5921:9;:27;;5942:6;;5921:27;:::i;:::-;;;;-1:-1:-1;;;;;;;5959:20:0;;:9;:20;;;;;;;;;;:30;;5983:6;;5959:9;:30;;5983:6;;5959:30;:::i;:::-;;;;;;;;6022:9;-1:-1:-1;;;;;6005:35:0;6014:6;-1:-1:-1;;;;;6005:35:0;;6033:6;6005:35;;;;;;:::i;4589:436:1:-;4678:23;:36;;-1:-1:-1;;;;;;4678:36:1;-1:-1:-1;;;;;4678:36:1;;;;;;;;;;;4729:23;4725:231;;4806:1;4783:20;:24;4725:231;;;4867:1;4860:4;:8;4852:50;;;;-1:-1:-1;;;4852:50:1;;;;;;;:::i;:::-;4917:20;:27;;;4725:231;4971:46;5000:10;5012:4;4971:46;;;;;;;:::i;10756:224:5:-;10872:11;;10862:6;10841:18;:16;:18::i;:::-;:27;;;;:::i;:::-;:42;;10833:100;;;;-1:-1:-1;;;10833:100:5;;;;;;;:::i;:::-;10944:28;10956:7;10965:6;10944:11;:28::i;7364:260:0:-;7440:49;7461:7;7478:1;7482:6;7440:20;:49::i;:::-;7518:6;7502:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;7535:18:0;;:9;:18;;;;;;;;;;:28;;7557:6;;7535:9;:28;;7557:6;;7535:28;:::i;:::-;;;;-1:-1:-1;;7579:37:0;;7605:1;;-1:-1:-1;;;;;7579:37:0;;;;;;;7609:6;;7579:37;:::i;:::-;;;;;;;;7364:260;;:::o;2484:173::-;2570:4;2587:40;2597:10;2609:9;2620:6;2587:9;:40::i;5209:342:1:-;5309:2;5289:17;:22;5281:72;;;;-1:-1:-1;;;5281:72:1;;;;;;;:::i;:::-;5392:28;5423;:17;5444:6;5423:28;:::i;:::-;5462:11;:34;;;5512:31;;5392:59;;-1:-1:-1;5512:31:1;;;;5392:59;;5512:31;:::i;6718:313:0:-;-1:-1:-1;;;;;6804:23:0;;6796:32;;;;;;6841:51;6870:1;6874:9;6885:6;6841:20;:51::i;:::-;6921:6;6905:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;6938:20:0;;:9;:20;;;;;;;;;;:30;;6962:6;;6938:9;:30;;6962:6;;6938:30;:::i;:::-;;;;-1:-1:-1;;6984:39:0;;-1:-1:-1;;;;;6984:39:0;;;7001:1;;6984:39;;;;7016:6;;6984:39;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:175:6;84:20;;-1:-1:-1;;;;;133:31:6;;123:42;;113:2;;179:1;176;169:12;194:377;;;311:3;304:4;296:6;292:17;288:27;278:2;;336:8;326;319:26;278:2;-1:-1:-1;366:20:6;;409:18;398:30;;395:2;;;448:8;438;431:26;395:2;492:4;484:6;480:17;468:29;;544:3;537:4;528:6;520;516:19;512:30;509:39;506:2;;;561:1;558;551:12;506:2;268:303;;;;;:::o;576:713::-;;674:3;667:4;659:6;655:17;651:27;641:2;;696:5;689;682:20;641:2;736:6;723:20;762:18;799:2;795;792:10;789:2;;;805:18;;:::i;:::-;854:2;848:9;923:2;904:13;;-1:-1:-1;;900:27:6;888:40;;930:4;884:51;950:18;;;970:22;;;947:46;944:2;;;996:18;;:::i;:::-;1032:2;1025:22;1056:18;;;1093:15;;;1110:4;1089:26;1086:35;-1:-1:-1;1083:2:6;;;1138:5;1131;1124:20;1083:2;1206;1199:4;1191:6;1187:17;1180:4;1172:6;1168:17;1155:54;1229:15;;;1246:4;1225:26;1218:41;;;;1233:6;631:658;-1:-1:-1;;;631:658:6:o;1294:198::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;1455:31;1476:9;1455:31;:::i;:::-;1445:41;1364:128;-1:-1:-1;;;1364:128:6:o;1497:274::-;;;1626:2;1614:9;1605:7;1601:23;1597:32;1594:2;;;1647:6;1639;1632:22;1594:2;1675:31;1696:9;1675:31;:::i;:::-;1665:41;;1725:40;1761:2;1750:9;1746:18;1725:40;:::i;:::-;1715:50;;1584:187;;;;;:::o;1776:342::-;;;;1922:2;1910:9;1901:7;1897:23;1893:32;1890:2;;;1943:6;1935;1928:22;1890:2;1971:31;1992:9;1971:31;:::i;:::-;1961:41;;2021:40;2057:2;2046:9;2042:18;2021:40;:::i;:::-;2011:50;;2108:2;2097:9;2093:18;2080:32;2070:42;;1880:238;;;;;:::o;2123:652::-;;;;;;2305:3;2293:9;2284:7;2280:23;2276:33;2273:2;;;2327:6;2319;2312:22;2273:2;2355:31;2376:9;2355:31;:::i;:::-;2345:41;;2405:40;2441:2;2430:9;2426:18;2405:40;:::i;:::-;2395:50;;2492:2;2481:9;2477:18;2464:32;2454:42;;2547:2;2536:9;2532:18;2519:32;2574:18;2566:6;2563:30;2560:2;;;2611:6;2603;2596:22;2560:2;2655:60;2707:7;2698:6;2687:9;2683:22;2655:60;:::i;:::-;2263:512;;;;-1:-1:-1;2263:512:6;;-1:-1:-1;2734:8:6;;2629:86;2263:512;-1:-1:-1;;;2263:512:6:o;2780:721::-;;;;;;;2979:3;2967:9;2958:7;2954:23;2950:33;2947:2;;;3001:6;2993;2986:22;2947:2;3029:31;3050:9;3029:31;:::i;:::-;3019:41;;3079:40;3115:2;3104:9;3100:18;3079:40;:::i;:::-;3069:50;;3166:2;3155:9;3151:18;3138:32;3128:42;;3217:2;3206:9;3202:18;3189:32;3179:42;;3272:3;3261:9;3257:19;3244:33;3300:18;3292:6;3289:30;3286:2;;;3337:6;3329;3322:22;3286:2;3381:60;3433:7;3424:6;3413:9;3409:22;3381:60;:::i;:::-;2937:564;;;;-1:-1:-1;2937:564:6;;-1:-1:-1;2937:564:6;;3460:8;;2937:564;-1:-1:-1;;;2937:564:6:o;3506:266::-;;;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3684:31;3705:9;3684:31;:::i;:::-;3674:41;3762:2;3747:18;;;;3734:32;;-1:-1:-1;;;3593:179:6:o;3777:575::-;;;;;3942:2;3930:9;3921:7;3917:23;3913:32;3910:2;;;3963:6;3955;3948:22;3910:2;3991:31;4012:9;3991:31;:::i;:::-;3981:41;;4069:2;4058:9;4054:18;4041:32;4031:42;;4124:2;4113:9;4109:18;4096:32;4151:18;4143:6;4140:30;4137:2;;;4188:6;4180;4173:22;4137:2;4232:60;4284:7;4275:6;4264:9;4260:22;4232:60;:::i;:::-;3900:452;;;;-1:-1:-1;4311:8:6;-1:-1:-1;;;;3900:452:6:o;4938:334::-;;;;5084:2;5072:9;5063:7;5059:23;5055:32;5052:2;;;5105:6;5097;5090:22;5052:2;5133:31;5154:9;5133:31;:::i;:::-;5123:41;5211:2;5196:18;;5183:32;;-1:-1:-1;5262:2:6;5247:18;;;5234:32;;5042:230;-1:-1:-1;;;5042:230:6:o;5277:253::-;;5386:2;5374:9;5365:7;5361:23;5357:32;5354:2;;;5407:6;5399;5392:22;5354:2;5451:9;5438:23;5470:30;5494:5;5470:30;:::i;5535:257::-;;5655:2;5643:9;5634:7;5630:23;5626:32;5623:2;;;5676:6;5668;5661:22;5623:2;5713:9;5707:16;5732:30;5756:5;5732:30;:::i;5797:432::-;;;5929:2;5917:9;5908:7;5904:23;5900:32;5897:2;;;5950:6;5942;5935:22;5897:2;5995:9;5982:23;6028:18;6020:6;6017:30;6014:2;;;6065:6;6057;6050:22;6014:2;6109:60;6161:7;6152:6;6141:9;6137:22;6109:60;:::i;:::-;6188:8;;6083:86;;-1:-1:-1;5887:342:6;-1:-1:-1;;;;5887:342:6:o;6234:344::-;;6356:2;6344:9;6335:7;6331:23;6327:32;6324:2;;;6377:6;6369;6362:22;6324:2;6422:9;6409:23;6455:18;6447:6;6444:30;6441:2;;;6492:6;6484;6477:22;6441:2;6520:52;6564:7;6555:6;6544:9;6540:22;6520:52;:::i;:::-;6510:62;6314:264;-1:-1:-1;;;;6314:264:6:o;6583:577::-;;;6732:2;6720:9;6711:7;6707:23;6703:32;6700:2;;;6753:6;6745;6738:22;6700:2;6798:9;6785:23;6827:18;6868:2;6860:6;6857:14;6854:2;;;6889:6;6881;6874:22;6854:2;6917:52;6961:7;6952:6;6941:9;6937:22;6917:52;:::i;:::-;6907:62;;7022:2;7011:9;7007:18;6994:32;6978:48;;7051:2;7041:8;7038:16;7035:2;;;7072:6;7064;7057:22;7035:2;;7100:54;7146:7;7135:8;7124:9;7120:24;7100:54;:::i;:::-;7090:64;;;6690:470;;;;;:::o;7165:190::-;;7277:2;7265:9;7256:7;7252:23;7248:32;7245:2;;;7298:6;7290;7283:22;7245:2;-1:-1:-1;7326:23:6;;7235:120;-1:-1:-1;7235:120:6:o;7360:194::-;;7483:2;7471:9;7462:7;7458:23;7454:32;7451:2;;;7504:6;7496;7489:22;7451:2;-1:-1:-1;7532:16:6;;7441:113;-1:-1:-1;7441:113:6:o;7559:270::-;;7649:6;7644:3;7637:19;7701:6;7694:5;7687:4;7682:3;7678:14;7665:43;7753:3;7746:4;7737:6;7732:3;7728:16;7724:27;7717:40;7818:4;7811:2;7807:7;7802:2;7794:6;7790:15;7786:29;7781:3;7777:39;7773:50;7766:57;;7627:202;;;;;:::o;7834:913::-;;-1:-1:-1;;;8341:3:6;8334:25;8388:6;8382:13;8404:62;8459:6;8454:2;8449:3;8445:12;8438:4;8430:6;8426:17;8404:62;:::i;:::-;-1:-1:-1;;;8525:2:6;8485:16;;;8517:11;;;8510:25;8560:13;;8582:63;8560:13;8631:2;8623:11;;8616:4;8604:17;;8582:63;:::i;:::-;-1:-1:-1;;;8705:2:6;8664:17;;;;8697:11;;;8690:24;8738:2;8730:11;;8324:423;-1:-1:-1;;;;8324:423:6:o;8752:430::-;;-1:-1:-1;;;9009:3:6;9002:26;9057:6;9051:13;9073:62;9128:6;9123:2;9118:3;9114:12;9107:4;9099:6;9095:17;9073:62;:::i;:::-;9155:16;;;;9173:2;9151:25;;8992:190;-1:-1:-1;;8992:190:6:o;9187:203::-;-1:-1:-1;;;;;9351:32:6;;;;9333:51;;9321:2;9306:18;;9288:102::o;9395:375::-;-1:-1:-1;;;;;9653:15:6;;;9635:34;;9705:15;;;;9700:2;9685:18;;9678:43;9752:2;9737:18;;9730:34;;;;9585:2;9570:18;;9552:218::o;9775:274::-;-1:-1:-1;;;;;9967:32:6;;;;9949:51;;10031:2;10016:18;;10009:34;9937:2;9922:18;;9904:145::o;10054:414::-;;10296:1;10292;10287:3;10283:11;10279:19;10271:6;10267:32;10256:9;10249:51;10336:6;10331:2;10320:9;10316:18;10309:34;10379:2;10374;10363:9;10359:18;10352:30;10399:63;10458:2;10447:9;10443:18;10435:6;10427;10399:63;:::i;:::-;10391:71;10239:229;-1:-1:-1;;;;;;10239:229:6:o;10473:447::-;-1:-1:-1;;;;;10760:15:6;;;10742:34;;10807:2;10792:18;;10785:34;;;;10850:2;10835:18;;10828:34;;;;10898:15;;;10893:2;10878:18;;10871:43;10691:3;10676:19;;10658:262::o;10925:187::-;11090:14;;11083:22;11065:41;;11053:2;11038:18;;11020:92::o;11117:248::-;;11276:2;11265:9;11258:21;11296:63;11355:2;11344:9;11340:18;11332:6;11324;11296:63;:::i;11370:383::-;;11519:2;11508:9;11501:21;11551:6;11545:13;11594:6;11589:2;11578:9;11574:18;11567:34;11610:66;11669:6;11664:2;11653:9;11649:18;11644:2;11636:6;11632:15;11610:66;:::i;:::-;11737:2;11716:15;-1:-1:-1;;11712:29:6;11697:45;;;;11744:2;11693:54;;11491:262;-1:-1:-1;;11491:262:6:o;11758:355::-;11960:2;11942:21;;;11999:2;11979:18;;;11972:30;12038:33;12033:2;12018:18;;12011:61;12104:2;12089:18;;11932:181::o;12118:349::-;12320:2;12302:21;;;12359:2;12339:18;;;12332:30;12398:27;12393:2;12378:18;;12371:55;12458:2;12443:18;;12292:175::o;12472:339::-;12674:2;12656:21;;;12713:2;12693:18;;;12686:30;-1:-1:-1;;;12747:2:6;12732:18;;12725:45;12802:2;12787:18;;12646:165::o;12816:346::-;13018:2;13000:21;;;13057:2;13037:18;;;13030:30;-1:-1:-1;;;13091:2:6;13076:18;;13069:52;13153:2;13138:18;;12990:172::o;13167:338::-;13369:2;13351:21;;;13408:2;13388:18;;;13381:30;-1:-1:-1;;;13442:2:6;13427:18;;13420:44;13496:2;13481:18;;13341:164::o;13510:403::-;13712:2;13694:21;;;13751:2;13731:18;;;13724:30;13790:34;13785:2;13770:18;;13763:62;-1:-1:-1;;;13856:2:6;13841:18;;13834:37;13903:3;13888:19;;13684:229::o;13918:350::-;14120:2;14102:21;;;14159:2;14139:18;;;14132:30;14198:28;14193:2;14178:18;;14171:56;14259:2;14244:18;;14092:176::o;14273:356::-;14475:2;14457:21;;;14494:18;;;14487:30;14553:34;14548:2;14533:18;;14526:62;14620:2;14605:18;;14447:182::o;14634:353::-;14836:2;14818:21;;;14875:2;14855:18;;;14848:30;14914:31;14909:2;14894:18;;14887:59;14978:2;14963:18;;14808:179::o;14992:403::-;15194:2;15176:21;;;15233:2;15213:18;;;15206:30;15272:34;15267:2;15252:18;;15245:62;-1:-1:-1;;;15338:2:6;15323:18;;15316:37;15385:3;15370:19;;15166:229::o;15400:347::-;15602:2;15584:21;;;15641:2;15621:18;;;15614:30;15680:25;15675:2;15660:18;;15653:53;15738:2;15723:18;;15574:173::o;15752:355::-;15954:2;15936:21;;;15993:2;15973:18;;;15966:30;16032:33;16027:2;16012:18;;16005:61;16098:2;16083:18;;15926:181::o;16112:351::-;16314:2;16296:21;;;16353:2;16333:18;;;16326:30;16392:29;16387:2;16372:18;;16365:57;16454:2;16439:18;;16286:177::o;16468:401::-;16670:2;16652:21;;;16709:2;16689:18;;;16682:30;16748:34;16743:2;16728:18;;16721:62;-1:-1:-1;;;16814:2:6;16799:18;;16792:35;16859:3;16844:19;;16642:227::o;16874:401::-;17076:2;17058:21;;;17115:2;17095:18;;;17088:30;17154:34;17149:2;17134:18;;17127:62;-1:-1:-1;;;17220:2:6;17205:18;;17198:35;17265:3;17250:19;;17048:227::o;17280:409::-;17482:2;17464:21;;;17521:2;17501:18;;;17494:30;17560:34;17555:2;17540:18;;17533:62;-1:-1:-1;;;17626:2:6;17611:18;;17604:43;17679:3;17664:19;;17454:235::o;17694:332::-;17896:2;17878:21;;;17935:1;17915:18;;;17908:29;-1:-1:-1;;;17968:2:6;17953:18;;17946:39;18017:2;18002:18;;17868:158::o;18031:348::-;18233:2;18215:21;;;18272:2;18252:18;;;18245:30;18311:26;18306:2;18291:18;;18284:54;18370:2;18355:18;;18205:174::o;18384:177::-;18530:25;;;18518:2;18503:18;;18485:76::o;18566:319::-;;18753:6;18742:9;18735:25;18796:2;18791;18780:9;18776:18;18769:30;18816:63;18875:2;18864:9;18860:18;18852:6;18844;18816:63;:::i;18890:248::-;19064:25;;;19120:2;19105:18;;19098:34;19052:2;19037:18;;19019:119::o;19143:184::-;19315:4;19303:17;;;;19285:36;;19273:2;19258:18;;19240:87::o;19332:128::-;;19403:1;19399:6;19396:1;19393:13;19390:2;;;19409:18;;:::i;:::-;-1:-1:-1;19445:9:6;;19380:80::o;19465:168::-;;19571:1;19567;19563:6;19559:14;19556:1;19553:21;19548:1;19541:9;19534:17;19530:45;19527:2;;;19578:18;;:::i;:::-;-1:-1:-1;19618:9:6;;19517:116::o;19638:125::-;;19706:1;19703;19700:8;19697:2;;;19711:18;;:::i;:::-;-1:-1:-1;19748:9:6;;19687:76::o;19768:258::-;19840:1;19850:113;19864:6;19861:1;19858:13;19850:113;;;19940:11;;;19934:18;19921:11;;;19914:39;19886:2;19879:10;19850:113;;;19981:6;19978:1;19975:13;19972:2;;;20016:1;20007:6;20002:3;19998:16;19991:27;19972:2;;19821:205;;;:::o;20031:380::-;20116:1;20106:12;;20163:1;20153:12;;;20174:2;;20228:4;20220:6;20216:17;20206:27;;20174:2;20281;20273:6;20270:14;20250:18;20247:38;20244:2;;;20327:10;20322:3;20318:20;20315:1;20308:31;20362:4;20359:1;20352:15;20390:4;20387:1;20380:15;20244:2;;20086:325;;;:::o;20416:135::-;;-1:-1:-1;;20476:17:6;;20473:2;;;20496:18;;:::i;:::-;-1:-1:-1;20543:1:6;20532:13;;20463:88::o;20556:127::-;20617:10;20612:3;20608:20;20605:1;20598:31;20648:4;20645:1;20638:15;20672:4;20669:1;20662:15;20688:127;20749:10;20744:3;20740:20;20737:1;20730:31;20780:4;20777:1;20770:15;20804:4;20801:1;20794:15;20820:120;20908:5;20901:13;20894:21;20887:5;20884:32;20874:2;;20930:1;20927;20920:12

Swarm Source

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