ETH Price: $3,483.86 (+2.82%)
Gas: 2 Gwei

Token

Hashrunes (RUNE)
 

Overview

Max Total Supply

1,000 RUNE

Holders

469

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
djfathead.eth
Balance
1 RUNE
0x5e130cb7f8cdcfb5a15018ee5846769703ec4478
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

**On-chain art, summoned by you.** Hashrunes are the **first on-chain named** pieces of generative art. The **name, design, and colors** of each Hashrune all live **completely on the blockchain**. Each **NFT** (non-fungible token) is born from the **unique name** given by its creator. No two Hashrunes are alike. Once a name is claimed, its Hashrune **can't** be minted again. Hashrunes are **very scarce** due to an increasing minting fee. There are two editions: **Genesis Hashrunes** are the original Hashrunes with a pure design. **First Edition Hashrunes** have a corner design that distinguishes them from Genesis Hashrunes. They have a maximum supply. Genesis owners can mint their First Edition versions for free (other people can't mint them). To mint, visit **[Hashrunes.com](https://www.hashrunes.com)**.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FirstEditionHashrunes

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**
 *
 * ██╗  ██╗ █████╗ ███████╗██╗  ██╗██████╗ ██╗   ██╗███╗   ██╗███████╗███████╗
 * ██║  ██║██╔══██╗██╔════╝██║  ██║██╔══██╗██║   ██║████╗  ██║██╔════╝██╔════╝
 * ███████║███████║███████╗███████║██████╔╝██║   ██║██╔██╗ ██║█████╗  ███████╗
 * ██╔══██║██╔══██║╚════██║██╔══██║██╔══██╗██║   ██║██║╚██╗██║██╔══╝  ╚════██║
 * ██║  ██║██║  ██║███████║██║  ██║██║  ██║╚██████╔╝██║ ╚████║███████╗███████║
 * ╚═╝  ╚═╝╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝╚═╝  ╚═╝ ╚═════╝ ╚═╝  ╚═══╝╚══════╝╚══════╝
 * First Edition
 *
 * personalized generative art on the blockchain                  by Joshua Wu
 *
 *
 * Hashrunes are on-chain generative art created by you.
 * A Hashrune's design is based on its unique name. Anyone can mint a Hashrune by naming it and paying a fee.
 *
 * This is the First Edition, made for those in the community who wanted but missed out on summoning a Genesis Hashrune.
 * The design of the First Edition Hashrunes have corner markings to distinguish them from Genesis Hashrunes.
 *
 * The price to mint a First Edition Hashrune starts at 0.05 ETH. For each Hashrune minted, the price will increase by at least 0.0002 ETH.
 * If you own the Genesis version of a Hashrune, you can mint the First Edition version for free. (The price does not increase in this case.)
 *
 * There is a max supply of 10,000 First Edition Hashrunes. Additionally, we are able to decrease the max supply (but not increase it).
 * We are also able to increase the price increment (but not decrease it).
 *
 * Functions specific to Hashrunes:
 *   `mint(string name)`: Mint a Hashrune.
 *   `getName(uint256 tokenId) -> string`: Look up the name corresponding to a token id.
 *   `getTokenId(string name) -> uint256`: Look up the token id corresponding to a name.
 *   `getRune(string name) -> string`: Get the design of a Hashrune.
 *   `getCharacters(string name) -> string`: Get the list of characters used for a Hashrune.
 *   `getColors(string name) -> uint256[]`: Get a Hashrune's RGB24 colors. Each color corresponds to each character in `getCharacters(name)`,
 *                                          with an extra color for the background at the end of the list.
 *
 */




// File: openzeppelin-solidity/contracts/GSN/Context.sol

pragma solidity ^0.5.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

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

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

// File: openzeppelin-solidity/contracts/introspection/IERC165.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721.sol

pragma solidity ^0.5.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
contract IERC721 is IERC165 {
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of NFTs in `owner`'s account.
     */
    function balanceOf(address owner) public view returns (uint256 balance);

    /**
     * @dev Returns the owner of the NFT specified by `tokenId`.
     */
    function ownerOf(uint256 tokenId) public view returns (address owner);

    /**
     * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to
     * another (`to`).
     *
     *
     *
     * Requirements:
     * - `from`, `to` cannot be zero.
     * - `tokenId` must be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this
     * NFT by either {approve} or {setApprovalForAll}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public;
    /**
     * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to
     * another (`to`).
     *
     * Requirements:
     * - If the caller is not `from`, it must be approved to move this NFT by
     * either {approve} or {setApprovalForAll}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public;
    function approve(address to, uint256 tokenId) public;
    function getApproved(uint256 tokenId) public view returns (address operator);

    function setApprovalForAll(address operator, bool _approved) public;
    function isApprovedForAll(address owner, address operator) public view returns (bool);


    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public;
}

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721Receiver.sol

pragma solidity ^0.5.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
contract IERC721Receiver {
    /**
     * @notice Handle the receipt of an NFT
     * @dev The ERC721 smart contract calls this function on the recipient
     * after a {IERC721-safeTransferFrom}. This function MUST return the function selector,
     * otherwise the caller will revert the transaction. The selector to be
     * returned can be obtained as `this.onERC721Received.selector`. This
     * function MAY throw to revert and reject the transfer.
     * Note: the ERC721 contract address is always the message sender.
     * @param operator The address which called `safeTransferFrom` function
     * @param from The address which previously owned the token
     * @param tokenId The NFT identifier which is being transferred
     * @param data Additional data with no specified format
     * @return bytes4 `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes memory data)
    public returns (bytes4);
}

// File: openzeppelin-solidity/contracts/math/SafeMath.sol

pragma solidity ^0.5.0;

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

// File: openzeppelin-solidity/contracts/utils/Address.sol

pragma solidity ^0.5.5;

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

    /**
     * @dev Converts an `address` into `address payable`. Note that this is
     * simply a type cast: the actual underlying value is not changed.
     *
     * _Available since v2.4.0._
     */
    function toPayable(address account) internal pure returns (address payable) {
        return address(uint160(account));
    }

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

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

// File: openzeppelin-solidity/contracts/drafts/Counters.sol

pragma solidity ^0.5.0;


/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath}
 * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never
 * directly accessed.
 */
library Counters {
    using SafeMath for uint256;

    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        // The {SafeMath} overflow check can be skipped here, see the comment at the top
        counter._value += 1;
    }

    function decrement(Counter storage counter) internal {
        counter._value = counter._value.sub(1);
    }
}

// File: openzeppelin-solidity/contracts/introspection/ERC165.sol

pragma solidity ^0.5.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721.sol

pragma solidity ^0.5.0;








/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721 {
    using SafeMath for uint256;
    using Address for address;
    using Counters for Counters.Counter;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from token ID to owner
    mapping (uint256 => address) private _tokenOwner;

    // Mapping from token ID to approved address
    mapping (uint256 => address) private _tokenApprovals;

    // Mapping from owner to number of owned token
    mapping (address => Counters.Counter) private _ownedTokensCount;

    // Mapping from owner to operator approvals
    mapping (address => mapping (address => bool)) private _operatorApprovals;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    constructor () public {
        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param owner address to query the balance of
     * @return uint256 representing the amount owned by the passed address
     */
    function balanceOf(address owner) public view returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");

        return _ownedTokensCount[owner].current();
    }

    /**
     * @dev Gets the owner of the specified token ID.
     * @param tokenId uint256 ID of the token to query the owner of
     * @return address currently marked as the owner of the given token ID
     */
    function ownerOf(uint256 tokenId) public view returns (address) {
        address owner = _tokenOwner[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");

        return owner;
    }

    /**
     * @dev Approves another address to transfer the given token ID
     * The zero address indicates there is no approved address.
     * There can only be one approved address per token at a given time.
     * Can only be called by the token owner or an approved operator.
     * @param to address to be approved for the given token ID
     * @param tokenId uint256 ID of the token to be approved
     */
    function approve(address to, uint256 tokenId) public {
        address owner = ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Gets the approved address for a token ID, or zero if no address set
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to query the approval of
     * @return address currently approved for the given token ID
     */
    function getApproved(uint256 tokenId) public view returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Sets or unsets the approval of a given operator
     * An operator is allowed to transfer all tokens of the sender on their behalf.
     * @param to operator address to set the approval
     * @param approved representing the status of the approval to be set
     */
    function setApprovalForAll(address to, bool approved) public {
        require(to != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][to] = approved;
        emit ApprovalForAll(_msgSender(), to, approved);
    }

    /**
     * @dev Tells whether an operator is approved by a given owner.
     * @param owner owner address which you want to query the approval of
     * @param operator operator address which you want to query the approval of
     * @return bool whether the given operator is approved by the given owner
     */
    function isApprovedForAll(address owner, address operator) public view returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev Transfers the ownership of a given token ID to another address.
     * Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     * Requires the msg.sender to be the owner, approved, or operator.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function transferFrom(address from, address to, uint256 tokenId) public {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transferFrom(from, to, tokenId);
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received},
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the msg.sender to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received},
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the _msgSender() to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes data to send along with a safe transfer check
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransferFrom(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the msg.sender to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes data to send along with a safe transfer check
     */
    function _safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) internal {
        _transferFrom(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether the specified token exists.
     * @param tokenId uint256 ID of the token to query the existence of
     * @return bool whether the token exists
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        address owner = _tokenOwner[tokenId];
        return owner != address(0);
    }

    /**
     * @dev Returns whether the given spender can transfer a given token ID.
     * @param spender address of the spender to query
     * @param tokenId uint256 ID of the token to be transferred
     * @return bool whether the msg.sender is approved for the given token ID,
     * is an operator of the owner, or is the owner of the token
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Internal function to safely mint a new token.
     * Reverts if the given token ID already exists.
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * @param to The address that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _safeMint(address to, uint256 tokenId) internal {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Internal function to safely mint a new token.
     * Reverts if the given token ID already exists.
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * @param to The address that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     * @param _data bytes data to send along with a safe transfer check
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Internal function to mint a new token.
     * Reverts if the given token ID already exists.
     * @param to The address that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _mint(address to, uint256 tokenId) internal {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _tokenOwner[tokenId] = to;
        _ownedTokensCount[to].increment();

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use {_burn} instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(address owner, uint256 tokenId) internal {
        require(ownerOf(tokenId) == owner, "ERC721: burn of token that is not own");

        _clearApproval(tokenId);

        _ownedTokensCount[owner].decrement();
        _tokenOwner[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(uint256 tokenId) internal {
        _burn(ownerOf(tokenId), tokenId);
    }

    /**
     * @dev Internal function to transfer ownership of a given token ID to another address.
     * As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _transferFrom(address from, address to, uint256 tokenId) internal {
        require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _clearApproval(tokenId);

        _ownedTokensCount[from].decrement();
        _ownedTokensCount[to].increment();

        _tokenOwner[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * This is an internal detail of the `ERC721` contract and its use is deprecated.
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        internal returns (bool)
    {
        if (!to.isContract()) {
            return true;
        }
        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = to.call(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ));
        if (!success) {
            if (returndata.length > 0) {
                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert("ERC721: transfer to non ERC721Receiver implementer");
            }
        } else {
            bytes4 retval = abi.decode(returndata, (bytes4));
            return (retval == _ERC721_RECEIVED);
        }
    }

    /**
     * @dev Private function to clear current approval of a given token ID.
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _clearApproval(uint256 tokenId) private {
        if (_tokenApprovals[tokenId] != address(0)) {
            _tokenApprovals[tokenId] = address(0);
        }
    }
}

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721Enumerable.sol

pragma solidity ^0.5.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract IERC721Enumerable is IERC721 {
    function totalSupply() public view returns (uint256);
    function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256 tokenId);

    function tokenByIndex(uint256 index) public view returns (uint256);
}

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721Enumerable.sol

pragma solidity ^0.5.0;





/**
 * @title ERC-721 Non-Fungible Token with optional enumeration extension logic
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721Enumerable is Context, ERC165, ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => uint256[]) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

    /**
     * @dev Constructor function.
     */
    constructor () public {
        // register the supported interface to conform to ERC721Enumerable via ERC165
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @dev Gets the token ID at a given index of the tokens list of the requested owner.
     * @param owner address owning the tokens list to be accessed
     * @param index uint256 representing the index to be accessed of the requested tokens list
     * @return uint256 token ID at the given index of the tokens list owned by the requested address
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256) {
        require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev Gets the total amount of tokens stored by the contract.
     * @return uint256 representing the total amount of tokens
     */
    function totalSupply() public view returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev Gets the token ID at a given index of all the tokens in this contract
     * Reverts if the index is greater or equal to the total number of tokens.
     * @param index uint256 representing the index to be accessed of the tokens list
     * @return uint256 token ID at the given index of the tokens list
     */
    function tokenByIndex(uint256 index) public view returns (uint256) {
        require(index < totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Internal function to transfer ownership of a given token ID to another address.
     * As opposed to transferFrom, this imposes no restrictions on msg.sender.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _transferFrom(address from, address to, uint256 tokenId) internal {
        super._transferFrom(from, to, tokenId);

        _removeTokenFromOwnerEnumeration(from, tokenId);

        _addTokenToOwnerEnumeration(to, tokenId);
    }

    /**
     * @dev Internal function to mint a new token.
     * Reverts if the given token ID already exists.
     * @param to address the beneficiary that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _mint(address to, uint256 tokenId) internal {
        super._mint(to, tokenId);

        _addTokenToOwnerEnumeration(to, tokenId);

        _addTokenToAllTokensEnumeration(tokenId);
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use {ERC721-_burn} instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(address owner, uint256 tokenId) internal {
        super._burn(owner, tokenId);

        _removeTokenFromOwnerEnumeration(owner, tokenId);
        // Since tokenId will be deleted, we can clear its slot in _ownedTokensIndex to trigger a gas refund
        _ownedTokensIndex[tokenId] = 0;

        _removeTokenFromAllTokensEnumeration(tokenId);
    }

    /**
     * @dev Gets the list of token IDs of the requested owner.
     * @param owner address owning the tokens
     * @return uint256[] List of token IDs owned by the requested address
     */
    function _tokensOfOwner(address owner) internal view returns (uint256[] storage) {
        return _ownedTokens[owner];
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        _ownedTokensIndex[tokenId] = _ownedTokens[to].length;
        _ownedTokens[to].push(tokenId);
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _ownedTokens[from].length.sub(1);
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        _ownedTokens[from].length--;

        // Note that _ownedTokensIndex[tokenId] hasn't been cleared: it still points to the old slot (now occupied by
        // lastTokenId, or just over the end of the array if the token was the last one).
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length.sub(1);
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        _allTokens.length--;
        _allTokensIndex[tokenId] = 0;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721Metadata.sol

pragma solidity ^0.5.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract IERC721Metadata is IERC721 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721Metadata.sol

pragma solidity ^0.5.0;





contract ERC721Metadata is Context, ERC165, ERC721, IERC721Metadata {
    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Base URI
    string private _baseURI;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /**
     * @dev Constructor function
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
    }

    /**
     * @dev Gets the token name.
     * @return string representing the token name
     */
    function name() external view returns (string memory) {
        return _name;
    }

    /**
     * @dev Gets the token symbol.
     * @return string representing the token symbol
     */
    function symbol() external view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the URI for a given token ID. May return an empty string.
     *
     * If the token's URI is non-empty and a base URI was set (via
     * {_setBaseURI}), it will be added to the token ID's URI as a prefix.
     *
     * Reverts if the token ID does not exist.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];

        // Even if there is a base URI, it is only appended to non-empty token-specific URIs
        if (bytes(_tokenURI).length == 0) {
            return "";
        } else {
            // abi.encodePacked is being used to concatenate strings
            return string(abi.encodePacked(_baseURI, _tokenURI));
        }
    }

    /**
     * @dev Internal function to set the token URI for a given token.
     *
     * Reverts if the token ID does not exist.
     *
     * TIP: if all token IDs share a prefix (e.g. if your URIs look like
     * `http://api.myproject.com/token/<id>`), use {_setBaseURI} to store
     * it and save gas.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI}.
     *
     * _Available since v2.5.0._
     */
    function _setBaseURI(string memory baseURI) internal {
        _baseURI = baseURI;
    }

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a preffix in {tokenURI} to each token's URI, when
    * they are non-empty.
    *
    * _Available since v2.5.0._
    */
    function baseURI() external view returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use _burn(uint256) instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned by the msg.sender
     */
    function _burn(address owner, uint256 tokenId) internal {
        super._burn(owner, tokenId);

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721Full.sol

pragma solidity ^0.5.0;




/**
 * @title Full ERC721 Token
 * @dev This implementation includes all the required and some optional functionality of the ERC721 standard
 * Moreover, it includes approve all functionality using operator terminology.
 *
 * See https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721Full is ERC721, ERC721Enumerable, ERC721Metadata {
    constructor (string memory name, string memory symbol) public ERC721Metadata(name, symbol) {
        // solhint-disable-previous-line no-empty-blocks
    }
}

// File: openzeppelin-solidity/contracts/ownership/Ownable.sol

pragma solidity ^0.5.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _owner;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

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

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

// File: contracts/String.sol

pragma solidity ^0.5.2;

library String {
    function concat(string memory _a, string memory _b)
        internal
        pure
        returns (string memory)
    {
        bytes memory _aBytes = bytes(_a);
        bytes memory _bBytes = bytes(_b);
        bytes memory _result = new bytes(_aBytes.length + _bBytes.length);
        uint256 _k = 0;
        for (uint256 _i = 0; _i < _aBytes.length; _i++)
            _result[_k++] = _aBytes[_i];
        for (uint256 _i = 0; _i < _bBytes.length; _i++)
            _result[_k++] = _bBytes[_i];
        return string(_result);
    }

    function fromUint(uint256 _n) internal pure returns (string memory) {
        if (_n == 0) {
            return "0";
        }
        uint256 _len;
        for (uint256 _i = _n; _i != 0; _i /= 10) _len++;
        bytes memory _result = new bytes(_len);
        uint256 _k = _len - 1;
        while (_n != 0) {
            _result[_k--] = bytes1(uint8(48 + (_n % 10)));
            _n /= 10;
        }
        return string(_result);
    }

    function hash(string memory str) internal pure returns (uint256) {
        return uint256(keccak256(bytes(str)));
    }
}

// File: contracts/ERC721Tradable.sol

pragma solidity ^0.5.2;




contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title ERC721Tradable
 * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
contract ERC721Tradable is ERC721Full, Ownable {
    using String for string;

    address private proxyRegistryAddress;

    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress
    ) public ERC721Full(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
    }

    function baseTokenURI() public pure returns (string memory) {
        return "";
    }

    function tokenURI(uint256 _tokenId) external view returns (string memory) {
        return String.concat(baseTokenURI(), String.fromUint(_tokenId));
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address _owner, address _operator)
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry _proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(_proxyRegistry.proxies(_owner)) == _operator) {
            return true;
        }
        return super.isApprovedForAll(_owner, _operator);
    }
}

// File: contracts/FirstEditionHashrunes.sol

pragma solidity ^0.5.2;



/**
 *
 * ██╗  ██╗ █████╗ ███████╗██╗  ██╗██████╗ ██╗   ██╗███╗   ██╗███████╗███████╗
 * ██║  ██║██╔══██╗██╔════╝██║  ██║██╔══██╗██║   ██║████╗  ██║██╔════╝██╔════╝
 * ███████║███████║███████╗███████║██████╔╝██║   ██║██╔██╗ ██║█████╗  ███████╗
 * ██╔══██║██╔══██║╚════██║██╔══██║██╔══██╗██║   ██║██║╚██╗██║██╔══╝  ╚════██║
 * ██║  ██║██║  ██║███████║██║  ██║██║  ██║╚██████╔╝██║ ╚████║███████╗███████║
 * ╚═╝  ╚═╝╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝╚═╝  ╚═╝ ╚═════╝ ╚═╝  ╚═══╝╚══════╝╚══════╝
 * First Edition
 *
 * personalized generative art on the blockchain                  by Joshua Wu
 *
 *
 * Hashrunes are on-chain generative art created by you.
 * A Hashrune's design is based on its unique name. Anyone can mint a Hashrune by naming it and paying a fee.
 *
 * This is the First Edition, made for those in the community who wanted but missed out on summoning a Genesis Hashrune.
 * The design of the First Edition Hashrunes have corner markings to distinguish them from Genesis Hashrunes.
 *
 * The price to mint a First Edition Hashrune starts at 0.05 ETH. For each Hashrune minted, the price will increase by at least 0.0002 ETH.
 * If you own the Genesis version of a Hashrune, you can mint the First Edition version for free. (The price does not increase in this case.)
 *
 * There is a max supply of 10,000 First Edition Hashrunes. Additionally, we are able to decrease the max supply (but not increase it).
 * We are also able to increase the price increment (but not decrease it).
 *
 * Functions specific to Hashrunes:
 *   `mint(string name)`: Mint a Hashrune.
 *   `getName(uint256 tokenId) -> string`: Look up the name corresponding to a token id.
 *   `getTokenId(string name) -> uint256`: Look up the token id corresponding to a name.
 *   `getRune(string name) -> string`: Get the design of a Hashrune.
 *   `getCharacters(string name) -> string`: Get the list of characters used for a Hashrune.
 *   `getColors(string name) -> uint256[]`: Get a Hashrune's RGB24 colors. Each color corresponds to each character in `getCharacters(name)`,
 *                                          with an extra color for the background at the end of the list.
 *
 */
contract GenesisHashrunes {
    function getTokenId(string memory _name) public view returns (uint256) {}

    function ownerOf(uint256 tokenId) public view returns (address) {}
}

contract FirstEditionHashrunes is ERC721Tradable {
    uint256 internal constant COLOR_SIZE = 24;
    uint256 internal constant ENTROPY_A =
        0x24eb1994b22999a9428330e650231f69ba716f811bef7dde3f7a73b0c1548151;
    uint256 internal constant ENTROPY_B =
        0xbace2a3d7089d722f901582121989045c3584e9093a44faebf23dd37040fe689;
    uint256 internal constant SIDE_LENGTH = 64;
    uint256 internal constant HALF_SIDE_LENGTH = SIDE_LENGTH / 2;
    uint256 internal constant RUNE_SIZE = SIDE_LENGTH * (3 * SIDE_LENGTH + 1);
    uint256 internal constant CORNER_THRESHOLD = 4 * SIDE_LENGTH - 17;
    uint256 internal constant VALUE_SHIFT = 16;

    GenesisHashrunes genesisHashrunes;
    uint256 public priceIncrement = 0.0002 ether;
    uint256 public maxSupply = 10000;
    uint256 public price = 0.05 ether;
    mapping(string => uint256) private tokenIds;
    mapping(uint256 => string) private names;
    uint256 private supply = 0;

    constructor(address _proxyRegistryAddress, address _genesisContractAddress)
        public
        ERC721Tradable("Hashrunes", "RUNE", _proxyRegistryAddress)
    {
        genesisHashrunes = GenesisHashrunes(_genesisContractAddress);
    }

    function mint(string memory _name) public payable {
        require(tokenIds[_name] == 0, "Name is already taken.");
        require(bytes(_name).length > 0, "Name cannot be empty.");
        require(
            supply < maxSupply,
            "Tokens at max supply; cannot mint any more."
        );
        uint256 genesisTokenId = genesisHashrunes.getTokenId(_name);
        uint256 _currentPrice;
        if (genesisTokenId > 0) {
            require(
                _msgSender() == genesisHashrunes.ownerOf(genesisTokenId),
                "The Genesis Hashrune exists for this name. Only its owner can mint this First Edition."
            );
            _currentPrice = 0;
        } else {
            _currentPrice = price;
            price += priceIncrement;
            require(price > _currentPrice);
            require(
                msg.value >= _currentPrice,
                "Price is greater than amount sent."
            );
            address payable _wallet = address(uint160(owner()));
            _wallet.transfer(_currentPrice);
        }
        _mint(_msgSender(), ++supply);
        tokenIds[_name] = supply;
        names[supply] = _name;
        if (msg.value > _currentPrice) {
            msg.sender.transfer(msg.value - _currentPrice);
        }
    }

    function getName(uint256 _tokenId) public view returns (string memory) {
        return names[_tokenId];
    }

    function getTokenId(string memory _name) public view returns (uint256) {
        return tokenIds[_name];
    }

    function _getCharacters(uint256 _seed)
        internal
        pure
        returns (string memory)
    {
        uint256 _themeSeed = _seed % 5;
        if (_themeSeed == 0) return "■▬▮▰▲▶▼◀◆●◖◗◢◣◤◥";
        if (_themeSeed == 1) return "■▬▮▰";
        if (_themeSeed == 2) return "▲▶▼◀";
        if (_themeSeed == 3) return "◆●◖◗";
        return "◢◣◤◥";
    }

    function getCharacters(string memory _name)
        public
        pure
        returns (string memory)
    {
        return _getCharacters(String.hash(_name));
    }

    function getColors(string memory _name)
        public
        pure
        returns (uint256[] memory)
    {
        uint256 _seed = String.hash(_name);
        bytes memory _characters = bytes(_getCharacters(_seed));
        uint256 _oddSeed = 2 * _seed + 1;
        uint256 _resultSize = _characters.length / 3 + 1;
        uint256[] memory _result = new uint256[](_resultSize);
        uint256 _i = 0;
        uint256 _colorSeed = (_oddSeed * ENTROPY_A) >> 1;
        if (_resultSize > 8) {
            while (_i < 8) {
                _result[_i++] = _colorSeed & 0xffffff;
                _colorSeed >>= COLOR_SIZE;
            }
            _colorSeed = (_oddSeed * ENTROPY_B) >> 1;
        }
        while (_i < _result.length) {
            _result[_i++] = _colorSeed & 0xffffff;
            _colorSeed >>= COLOR_SIZE;
        }
        return _result;
    }

    function getRune(string memory _name) public pure returns (string memory) {
        uint256 _seed = String.hash(_name);
        bytes memory _characters = bytes(_getCharacters(_seed));
        uint256 _charactersLength = _characters.length / 3;
        bytes memory _result = new bytes(RUNE_SIZE);
        uint256 _oddSeed = 2 * _seed + 1;
        uint256 _modulus =
            (_seed % (_charactersLength * ((_seed % 3) + 1))) +
                _charactersLength;
        uint256 _index = 0;
        for (uint256 _y = 0; _y < SIDE_LENGTH; ++_y) {
            uint256 _b =
                _y < HALF_SIDE_LENGTH ? 2 * (SIDE_LENGTH - _y) - 1 : 2 * _y + 1;
            for (uint256 _x = 0; _x < SIDE_LENGTH; ++_x) {
                uint256 _a =
                    _x < HALF_SIDE_LENGTH
                        ? 2 * (SIDE_LENGTH - _x) - 1
                        : 2 * _x + 1;
                uint256 _residue =
                    _a + _b > CORNER_THRESHOLD
                        ? _seed % _charactersLength
                        : ((_a * _b * (_a + _b + 1) * _oddSeed * ENTROPY_A) >>
                            VALUE_SHIFT) % _modulus;
                if (_residue < _charactersLength) {
                    _residue *= 3;
                    _result[_index++] = _characters[_residue];
                    _result[_index++] = _characters[_residue + 1];
                    _result[_index++] = _characters[_residue + 2];
                } else {
                    _result[_index++] = " ";
                }
            }
            _result[_index++] = "\n";
        }
        --_index;
        assembly {
            mstore(_result, _index)
        }
        return string(_result);
    }

    function contractURI() public pure returns (string memory) {
        return "https://api.hashrunes.com/v1/contract/1";
    }

    function baseTokenURI() public pure returns (string memory) {
        return "https://api.hashrunes.com/v1/runes/1/";
    }

    function decreaseMaxSupply(uint256 _amount) public onlyOwner() {
        uint256 _newMaxSupply = maxSupply - _amount;
        require(_newMaxSupply < maxSupply);
        if (_newMaxSupply > supply) {
            maxSupply = _newMaxSupply;
        } else if (maxSupply > supply) {
            maxSupply = supply;
        }
    }

    function increasePriceIncrement(uint256 _amount) public onlyOwner() {
        uint256 _newPriceIncrement = priceIncrement + _amount;
        require(_newPriceIncrement > priceIncrement);
        priceIncrement = _newPriceIncrement;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"address","name":"_genesisContractAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"decreaseMaxSupply","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"getCharacters","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"getColors","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getName","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"getRune","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"getTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"increasePriceIncrement","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"mint","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"priceIncrement","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

608060405265b5e620f4800060105561271060115566b1a2bc2ec5000060125560006015553480156200003157600080fd5b506040516200327b3803806200327b833981810160405260408110156200005757600080fd5b50805160209182015160408051808201825260098152684861736872756e657360b81b818601528151808301909252600482526352554e4560e01b94820194909452919290918382828181620000bd6301ffc9a760e01b6001600160e01b03620001d816565b620000d86380ac58cd60e01b6001600160e01b03620001d816565b620000f363780e9d6360e01b6001600160e01b03620001d816565b81516200010890600990602085019062000262565b5080516200011e90600a90602084019062000262565b506200013a635b5e139f60e01b6001600160e01b03620001d816565b505050506000620001506200025d60201b60201c565b600d80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600e80546001600160a01b039283166001600160a01b031991821617909155600f8054959092169416939093179092555062000304915050565b6001600160e01b0319808216141562000238576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b335b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002a557805160ff1916838001178555620002d5565b82800160010185558215620002d5579182015b82811115620002d5578251825591602001919060010190620002b8565b50620002e3929150620002e7565b5090565b6200025f91905b80821115620002e35760008155600101620002ee565b612f6780620003146000396000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063b4523423116100a0578063d5abeb011161006f578063d5abeb0114610a38578063d85d3d2714610a4d578063e8a3d48514610af3578063e985e9c514610b08578063f2fde38b14610b43576101f9565b8063b452342314610873578063b88d4fde14610926578063c87b56dd146109f9578063d547cfb714610a23576101f9565b806395d89b41116100dc57806395d89b411461075b5780639fe6f5f014610770578063a035b1fe14610823578063a22cb46514610838576101f9565b8063715018a6146106f25780638da5cb5b146107075780638f32d59b1461071c57806391ff4a7314610731576101f9565b80632f745c59116101905780634f6ccce71161015f5780634f6ccce71461062c5780636352211e146106565780636b8ff574146106805780636c0360eb146106aa57806370a08231146106bf576101f9565b80632f745c5914610483578063334904f7146104bc57806342842e0e146105bf5780634293451814610602576101f9565b806318160ddd116101cc57806318160ddd146103515780631e7663bc1461037857806323b872dd1461042b578063280d62ac1461046e576101f9565b806301ffc9a7146101fe57806306fdde0314610246578063081812fc146102d0578063095ea7b314610316575b600080fd5b34801561020a57600080fd5b506102326004803603602081101561022157600080fd5b50356001600160e01b031916610b76565b604080519115158252519081900360200190f35b34801561025257600080fd5b5061025b610b99565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561029557818101518382015260200161027d565b50505050905090810190601f1680156102c25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102dc57600080fd5b506102fa600480360360208110156102f357600080fd5b5035610c30565b604080516001600160a01b039092168252519081900360200190f35b34801561032257600080fd5b5061034f6004803603604081101561033957600080fd5b506001600160a01b038135169060200135610c92565b005b34801561035d57600080fd5b50610366610dba565b60408051918252519081900360200190f35b34801561038457600080fd5b506103666004803603602081101561039b57600080fd5b8101906020810181356401000000008111156103b657600080fd5b8201836020820111156103c857600080fd5b803590602001918460018302840111640100000000831117156103ea57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610dc0945050505050565b34801561043757600080fd5b5061034f6004803603606081101561044e57600080fd5b506001600160a01b03813581169160208101359091169060400135610e28565b34801561047a57600080fd5b50610366610e84565b34801561048f57600080fd5b50610366600480360360408110156104a657600080fd5b506001600160a01b038135169060200135610e8a565b3480156104c857600080fd5b5061056f600480360360208110156104df57600080fd5b8101906020810181356401000000008111156104fa57600080fd5b82018360208201111561050c57600080fd5b8035906020019184600183028401116401000000008311171561052e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610f0a945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156105ab578181015183820152602001610593565b505050509050019250505060405180910390f35b3480156105cb57600080fd5b5061034f600480360360608110156105e257600080fd5b506001600160a01b03813581169160208101359091169060400135611042565b34801561060e57600080fd5b5061034f6004803603602081101561062557600080fd5b503561105d565b34801561063857600080fd5b506103666004803603602081101561064f57600080fd5b50356110ce565b34801561066257600080fd5b506102fa6004803603602081101561067957600080fd5b5035611134565b34801561068c57600080fd5b5061025b600480360360208110156106a357600080fd5b5035611188565b3480156106b657600080fd5b5061025b611229565b3480156106cb57600080fd5b50610366600480360360208110156106e257600080fd5b50356001600160a01b031661128a565b3480156106fe57600080fd5b5061034f6112f2565b34801561071357600080fd5b506102fa611395565b34801561072857600080fd5b506102326113a4565b34801561073d57600080fd5b5061034f6004803603602081101561075457600080fd5b50356113ca565b34801561076757600080fd5b5061025b611460565b34801561077c57600080fd5b5061025b6004803603602081101561079357600080fd5b8101906020810181356401000000008111156107ae57600080fd5b8201836020820111156107c057600080fd5b803590602001918460018302840111640100000000831117156107e257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506114c1945050505050565b34801561082f57600080fd5b50610366611748565b34801561084457600080fd5b5061034f6004803603604081101561085b57600080fd5b506001600160a01b038135169060200135151561174e565b34801561087f57600080fd5b5061025b6004803603602081101561089657600080fd5b8101906020810181356401000000008111156108b157600080fd5b8201836020820111156108c357600080fd5b803590602001918460018302840111640100000000831117156108e557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611853945050505050565b34801561093257600080fd5b5061034f6004803603608081101561094957600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561098457600080fd5b82018360208201111561099657600080fd5b803590602001918460018302840111640100000000831117156109b857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611866945050505050565b348015610a0557600080fd5b5061025b60048036036020811015610a1c57600080fd5b50356118c4565b348015610a2f57600080fd5b5061025b6118df565b348015610a4457600080fd5b506103666118ff565b61034f60048036036020811015610a6357600080fd5b810190602081018135640100000000811115610a7e57600080fd5b820183602082011115610a9057600080fd5b80359060200191846001830284011164010000000083111715610ab257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611905945050505050565b348015610aff57600080fd5b5061025b611d7a565b348015610b1457600080fd5b5061023260048036036040811015610b2b57600080fd5b506001600160a01b0381358116916020013516611d9a565b348015610b4f57600080fd5b5061034f60048036036020811015610b6657600080fd5b50356001600160a01b0316611e45565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60098054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c255780601f10610bfa57610100808354040283529160200191610c25565b820191906000526020600020905b815481529060010190602001808311610c0857829003601f168201915b505050505090505b90565b6000610c3b82611eaa565b610c765760405162461bcd60e51b815260040180806020018281038252602c815260200180612de0602c913960400191505060405180910390fd5b506000908152600260205260409020546001600160a01b031690565b6000610c9d82611134565b9050806001600160a01b0316836001600160a01b03161415610cf05760405162461bcd60e51b8152600401808060200182810382526021815260200180612e656021913960400191505060405180910390fd5b806001600160a01b0316610d02611ec7565b6001600160a01b03161480610d235750610d2381610d1e611ec7565b611d9a565b610d5e5760405162461bcd60e51b8152600401808060200182810382526038815260200180612cff6038913960400191505060405180910390fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60075490565b60006013826040518082805190602001908083835b60208310610df45780518252601f199092019160209182019101610dd5565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922054949350505050565b610e39610e33611ec7565b82611ecb565b610e745760405162461bcd60e51b8152600401808060200182810382526031815260200180612e866031913960400191505060405180910390fd5b610e7f838383611f67565b505050565b60105481565b6000610e958361128a565b8210610ed25760405162461bcd60e51b815260040180806020018281038252602b815260200180612c2c602b913960400191505060405180910390fd5b6001600160a01b0383166000908152600560205260409020805483908110610ef657fe5b906000526020600020015490505b92915050565b60606000610f1783611f86565b90506060610f2482611f91565b9050600082600202600101905060006003835181610f3e57fe5b046001019050606081604051908082528060200260200182016040528015610f70578160200160208202803883390190505b50905060007f24eb1994b22999a9428330e650231f69ba716f811bef7dde3f7a73b0c1548151840260011c6008841115611001575b6008821015610fd9578062ffffff16838380600101945081518110610fc657fe5b602090810291909101015260181c610fa5565b507fbace2a3d7089d722f901582121989045c3584e9093a44faebf23dd37040fe689840260011c5b8251821015611035578062ffffff1683838060010194508151811061102257fe5b602090810291909101015260181c611001565b5090979650505050505050565b610e7f83838360405180602001604052806000815250611866565b6110656113a4565b6110b6576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6010548082019081116110c857600080fd5b60105550565b60006110d8610dba565b82106111155760405162461bcd60e51b815260040180806020018281038252602c815260200180612ee2602c913960400191505060405180910390fd5b6007828154811061112257fe5b90600052602060002001549050919050565b6000818152600160205260408120546001600160a01b031680610f045760405162461bcd60e51b8152600401808060200182810382526029815260200180612d616029913960400191505060405180910390fd5b60008181526014602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084526060939283018282801561121d5780601f106111f25761010080835404028352916020019161121d565b820191906000526020600020905b81548152906001019060200180831161120057829003601f168201915b50505050509050919050565b600b8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c255780601f10610bfa57610100808354040283529160200191610c25565b60006001600160a01b0382166112d15760405162461bcd60e51b815260040180806020018281038252602a815260200180612d37602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600360205260409020610f0490612080565b6112fa6113a4565b61134b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600d546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600d80546001600160a01b0319169055565b600d546001600160a01b031690565b600d546000906001600160a01b03166113bb611ec7565b6001600160a01b031614905090565b6113d26113a4565b611423576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60115481810390811061143557600080fd5b60155481111561144957601181905561145c565b601554601154111561145c576015546011555b5050565b600a8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c255780601f10610bfa57610100808354040283529160200191610c25565b606060006114ce83611f86565b905060606114db82611f91565b9050600060038251816114ea57fe5b6040805161304080825261306082019092529290910492506060919060208201818038833901905050905060016002850201600083600387066001018502878161153057fe5b060190506000805b6040811015611735576000602082106115575781600202600101611562565b600182604003600202035b905060005b60408110156116fd576000602082106115865781600202600101611591565b600182604003600202035b9050600060ef848301116115de57868285026001848701010289027f24eb1994b22999a9428330e650231f69ba716f811bef7dde3f7a73b0c15481510260101c816115d857fe5b066115e9565b898c816115e757fe5b065b9050898110156116c4576003810290508a818151811061160557fe5b602001015160f81c60f81b89878060010198508151811061162257fe5b60200101906001600160f81b031916908160001a9053508a816001018151811061164857fe5b602001015160f81c60f81b89878060010198508151811061166557fe5b60200101906001600160f81b031916908160001a9053508a816002018151811061168b57fe5b602001015160f81c60f81b8987806001019850815181106116a857fe5b60200101906001600160f81b031916908160001a9053506116f3565b600160fd1b8987806001019850815181106116db57fe5b60200101906001600160f81b031916908160001a9053505b5050600101611567565b50600560f91b86848060010195508151811061171557fe5b60200101906001600160f81b031916908160001a90535050600101611538565b5060001901835250909695505050505050565b60125481565b611756611ec7565b6001600160a01b0316826001600160a01b031614156117bc576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b80600460006117c9611ec7565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561180d611ec7565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b6060610f0461186183611f86565b611f91565b611877611871611ec7565b83611ecb565b6118b25760405162461bcd60e51b8152600401808060200182810382526031815260200180612e866031913960400191505060405180910390fd5b6118be84848484612084565b50505050565b6060610f046118d16118df565b6118da846120d6565b612199565b6060604051806060016040528060258152602001612f0e60259139905090565b60115481565b6013816040518082805190602001908083835b602083106119375780518252601f199092019160209182019101611918565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220541591506119b99050576040805162461bcd60e51b815260206004820152601660248201527f4e616d6520697320616c72656164792074616b656e2e00000000000000000000604482015290519081900360640190fd5b6000815111611a0f576040805162461bcd60e51b815260206004820152601560248201527f4e616d652063616e6e6f7420626520656d7074792e0000000000000000000000604482015290519081900360640190fd5b60115460155410611a515760405162461bcd60e51b815260040180806020018281038252602b815260200180612eb7602b913960400191505060405180910390fd5b600f5460405163079d98ef60e21b81526020600482018181528451602484015284516000946001600160a01b031693631e7663bc938793928392604401918501908083838b5b83811015611aaf578181015183820152602001611a97565b50505050905090810190601f168015611adc5780820380516001836020036101000a031916815260200191505b509250505060206040518083038186803b158015611af957600080fd5b505afa158015611b0d573d6000803e3d6000fd5b505050506040513d6020811015611b2357600080fd5b5051905060008115611c0557600f54604080516331a9108f60e11b81526004810185905290516001600160a01b0390921691636352211e91602480820192602092909190829003018186803b158015611b7b57600080fd5b505afa158015611b8f573d6000803e3d6000fd5b505050506040513d6020811015611ba557600080fd5b50516001600160a01b0316611bb8611ec7565b6001600160a01b031614611bfd5760405162461bcd60e51b8152600401808060200182810382526056815260200180612d8a6056913960600191505060405180910390fd5b506000611ca4565b5060128054601054810191829055908110611c1f57600080fd5b80341015611c5e5760405162461bcd60e51b8152600401808060200182810382526022815260200180612c0a6022913960400191505060405180910390fd5b6000611c68611395565b6040519091506001600160a01b0382169083156108fc029084906000818181858888f19350505050158015611ca1573d6000803e3d6000fd5b50505b611cbf611caf611ec7565b601580546001019081905561228e565b6015546013846040518082805190602001908083835b60208310611cf45780518252601f199092019160209182019101611cd5565b51815160209384036101000a600019018019909216911617905292019485525060408051948590038201909420949094555050601554600090815260148352208451611d4292860190612b2a565b5080341115610e7f5760405133903483900380156108fc02916000818181858888f193505050501580156118be573d6000803e3d6000fd5b6060604051806060016040528060278152602001612be360279139905090565b600e546040805163c455279160e01b81526001600160a01b0385811660048301529151600093831692851691839163c455279191602480820192602092909190829003018186803b158015611dee57600080fd5b505afa158015611e02573d6000803e3d6000fd5b505050506040513d6020811015611e1857600080fd5b50516001600160a01b03161415611e33576001915050610f04565b611e3d84846122ab565b949350505050565b611e4d6113a4565b611e9e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b611ea7816122d9565b50565b6000908152600160205260409020546001600160a01b0316151590565b3390565b6000611ed682611eaa565b611f115760405162461bcd60e51b815260040180806020018281038252602c815260200180612cd3602c913960400191505060405180910390fd5b6000611f1c83611134565b9050806001600160a01b0316846001600160a01b03161480611f575750836001600160a01b0316611f4c84610c30565b6001600160a01b0316145b80611e3d5750611e3d8185611d9a565b611f7283838361237a565b611f7c83826124be565b610e7f82826125b3565b805160209091012090565b60606005820680611fbd57604051806060016040528060308152602001612e3560309139915050610b94565b8060011415611ff057505060408051808201909152600c81526b0e296a0e296ace296aee296b60a41b6020820152610b94565b806002141561202357505060408051808201909152600c81526b01c52d65c52d6dc52d79c52f60a71b6020820152610b94565b806003141561205657505060408051808201909152600c81526be29786e2978fe29796e2979760a01b6020820152610b94565b505060408051808201909152600c81526be297a2e297a3e297a4e297a560a01b6020820152919050565b5490565b61208f848484611f67565b61209b848484846125f1565b6118be5760405162461bcd60e51b8152600401808060200182810382526032815260200180612c576032913960400191505060405180910390fd5b6060816120fb57506040805180820190915260018152600360fc1b6020820152610b94565b6000825b80156121155760019190910190600a90046120ff565b506060816040519080825280601f01601f191660200182016040528015612143576020820181803883390190505b50905060001982015b841561219157600a850660300160f81b8282806001900393508151811061216f57fe5b60200101906001600160f81b031916908160001a905350600a8504945061214c565b509392505050565b6060808390506060839050606081518351016040519080825280601f01601f1916602001820160405280156121d5576020820181803883390190505b5090506000805b845181101561222d578481815181106121f157fe5b602001015160f81c60f81b83838060010194508151811061220e57fe5b60200101906001600160f81b031916908160001a9053506001016121dc565b5060005b83518110156122825783818151811061224657fe5b602001015160f81c60f81b83838060010194508151811061226357fe5b60200101906001600160f81b031916908160001a905350600101612231565b50909695505050505050565b6122988282612841565b6122a282826125b3565b61145c81612972565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6001600160a01b03811661231e5760405162461bcd60e51b8152600401808060200182810382526026815260200180612c896026913960400191505060405180910390fd5b600d546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b826001600160a01b031661238d82611134565b6001600160a01b0316146123d25760405162461bcd60e51b8152600401808060200182810382526029815260200180612e0c6029913960400191505060405180910390fd5b6001600160a01b0382166124175760405162461bcd60e51b8152600401808060200182810382526024815260200180612caf6024913960400191505060405180910390fd5b612420816129b6565b6001600160a01b0383166000908152600360205260409020612441906129f1565b6001600160a01b038216600090815260036020526040902061246290612a08565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166000908152600560205260408120546124e890600163ffffffff612a1116565b600083815260066020526040902054909150808214612583576001600160a01b038416600090815260056020526040812080548490811061252557fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b03168152602001908152602001600020838154811061256357fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b03841660009081526005602052604090208054906125ac906000198301612ba8565b5050505050565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b6000612605846001600160a01b0316612a5a565b61261157506001611e3d565b600060606001600160a01b038616630a85bd0160e11b61262f611ec7565b89888860405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156126a8578181015183820152602001612690565b50505050905090810190601f1680156126d55780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b0319909a16999099178952518151919890975087965094509250829150849050835b602083106127525780518252601f199092019160209182019101612733565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146127b4576040519150601f19603f3d011682016040523d82523d6000602084013e6127b9565b606091505b50915091508161280a578051156127d35780518082602001fd5b60405162461bcd60e51b8152600401808060200182810382526032815260200180612c576032913960400191505060405180910390fd5b600081806020019051602081101561282157600080fd5b50516001600160e01b031916630a85bd0160e11b149350611e3d92505050565b6001600160a01b03821661289c576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6128a581611eaa565b156128f7576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b03871690811790915583526003909152902061293690612a08565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b6000818152600260205260409020546001600160a01b031615611ea757600090815260026020526040902080546001600160a01b0319169055565b8054612a0490600163ffffffff612a1116565b9055565b80546001019055565b6000612a5383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612a93565b9392505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611e3d575050151592915050565b60008184841115612b225760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612ae7578181015183820152602001612acf565b50505050905090810190601f168015612b145780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612b6b57805160ff1916838001178555612b98565b82800160010185558215612b98579182015b82811115612b98578251825591602001919060010190612b7d565b50612ba4929150612bc8565b5090565b815481835581811115610e7f57600083815260209020610e7f9181019083015b610c2d91905b80821115612ba45760008155600101612bce56fe68747470733a2f2f6170692e6861736872756e65732e636f6d2f76312f636f6e74726163742f3150726963652069732067726561746572207468616e20616d6f756e742073656e742e455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e5468652047656e65736973204861736872756e652065786973747320666f722074686973206e616d652e204f6e6c7920697473206f776e65722063616e206d696e7420746869732046697273742045646974696f6e2e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776ee296a0e296ace296aee296b0e296b2e296b6e296bce29780e29786e2978fe29796e29797e297a2e297a3e297a4e297a54552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564546f6b656e73206174206d617820737570706c793b2063616e6e6f74206d696e7420616e79206d6f72652e455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e647368747470733a2f2f6170692e6861736872756e65732e636f6d2f76312f72756e65732f312fa265627a7a7231582048798befbff2ea0bbd0860c312f2f5f177e973adb179cac7e7c3e08cd02eed8564736f6c63430005110032000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000047dd5f6335ffecbe77e982d8a449263d1e501301

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063b4523423116100a0578063d5abeb011161006f578063d5abeb0114610a38578063d85d3d2714610a4d578063e8a3d48514610af3578063e985e9c514610b08578063f2fde38b14610b43576101f9565b8063b452342314610873578063b88d4fde14610926578063c87b56dd146109f9578063d547cfb714610a23576101f9565b806395d89b41116100dc57806395d89b411461075b5780639fe6f5f014610770578063a035b1fe14610823578063a22cb46514610838576101f9565b8063715018a6146106f25780638da5cb5b146107075780638f32d59b1461071c57806391ff4a7314610731576101f9565b80632f745c59116101905780634f6ccce71161015f5780634f6ccce71461062c5780636352211e146106565780636b8ff574146106805780636c0360eb146106aa57806370a08231146106bf576101f9565b80632f745c5914610483578063334904f7146104bc57806342842e0e146105bf5780634293451814610602576101f9565b806318160ddd116101cc57806318160ddd146103515780631e7663bc1461037857806323b872dd1461042b578063280d62ac1461046e576101f9565b806301ffc9a7146101fe57806306fdde0314610246578063081812fc146102d0578063095ea7b314610316575b600080fd5b34801561020a57600080fd5b506102326004803603602081101561022157600080fd5b50356001600160e01b031916610b76565b604080519115158252519081900360200190f35b34801561025257600080fd5b5061025b610b99565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561029557818101518382015260200161027d565b50505050905090810190601f1680156102c25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102dc57600080fd5b506102fa600480360360208110156102f357600080fd5b5035610c30565b604080516001600160a01b039092168252519081900360200190f35b34801561032257600080fd5b5061034f6004803603604081101561033957600080fd5b506001600160a01b038135169060200135610c92565b005b34801561035d57600080fd5b50610366610dba565b60408051918252519081900360200190f35b34801561038457600080fd5b506103666004803603602081101561039b57600080fd5b8101906020810181356401000000008111156103b657600080fd5b8201836020820111156103c857600080fd5b803590602001918460018302840111640100000000831117156103ea57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610dc0945050505050565b34801561043757600080fd5b5061034f6004803603606081101561044e57600080fd5b506001600160a01b03813581169160208101359091169060400135610e28565b34801561047a57600080fd5b50610366610e84565b34801561048f57600080fd5b50610366600480360360408110156104a657600080fd5b506001600160a01b038135169060200135610e8a565b3480156104c857600080fd5b5061056f600480360360208110156104df57600080fd5b8101906020810181356401000000008111156104fa57600080fd5b82018360208201111561050c57600080fd5b8035906020019184600183028401116401000000008311171561052e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610f0a945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156105ab578181015183820152602001610593565b505050509050019250505060405180910390f35b3480156105cb57600080fd5b5061034f600480360360608110156105e257600080fd5b506001600160a01b03813581169160208101359091169060400135611042565b34801561060e57600080fd5b5061034f6004803603602081101561062557600080fd5b503561105d565b34801561063857600080fd5b506103666004803603602081101561064f57600080fd5b50356110ce565b34801561066257600080fd5b506102fa6004803603602081101561067957600080fd5b5035611134565b34801561068c57600080fd5b5061025b600480360360208110156106a357600080fd5b5035611188565b3480156106b657600080fd5b5061025b611229565b3480156106cb57600080fd5b50610366600480360360208110156106e257600080fd5b50356001600160a01b031661128a565b3480156106fe57600080fd5b5061034f6112f2565b34801561071357600080fd5b506102fa611395565b34801561072857600080fd5b506102326113a4565b34801561073d57600080fd5b5061034f6004803603602081101561075457600080fd5b50356113ca565b34801561076757600080fd5b5061025b611460565b34801561077c57600080fd5b5061025b6004803603602081101561079357600080fd5b8101906020810181356401000000008111156107ae57600080fd5b8201836020820111156107c057600080fd5b803590602001918460018302840111640100000000831117156107e257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506114c1945050505050565b34801561082f57600080fd5b50610366611748565b34801561084457600080fd5b5061034f6004803603604081101561085b57600080fd5b506001600160a01b038135169060200135151561174e565b34801561087f57600080fd5b5061025b6004803603602081101561089657600080fd5b8101906020810181356401000000008111156108b157600080fd5b8201836020820111156108c357600080fd5b803590602001918460018302840111640100000000831117156108e557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611853945050505050565b34801561093257600080fd5b5061034f6004803603608081101561094957600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561098457600080fd5b82018360208201111561099657600080fd5b803590602001918460018302840111640100000000831117156109b857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611866945050505050565b348015610a0557600080fd5b5061025b60048036036020811015610a1c57600080fd5b50356118c4565b348015610a2f57600080fd5b5061025b6118df565b348015610a4457600080fd5b506103666118ff565b61034f60048036036020811015610a6357600080fd5b810190602081018135640100000000811115610a7e57600080fd5b820183602082011115610a9057600080fd5b80359060200191846001830284011164010000000083111715610ab257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611905945050505050565b348015610aff57600080fd5b5061025b611d7a565b348015610b1457600080fd5b5061023260048036036040811015610b2b57600080fd5b506001600160a01b0381358116916020013516611d9a565b348015610b4f57600080fd5b5061034f60048036036020811015610b6657600080fd5b50356001600160a01b0316611e45565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60098054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c255780601f10610bfa57610100808354040283529160200191610c25565b820191906000526020600020905b815481529060010190602001808311610c0857829003601f168201915b505050505090505b90565b6000610c3b82611eaa565b610c765760405162461bcd60e51b815260040180806020018281038252602c815260200180612de0602c913960400191505060405180910390fd5b506000908152600260205260409020546001600160a01b031690565b6000610c9d82611134565b9050806001600160a01b0316836001600160a01b03161415610cf05760405162461bcd60e51b8152600401808060200182810382526021815260200180612e656021913960400191505060405180910390fd5b806001600160a01b0316610d02611ec7565b6001600160a01b03161480610d235750610d2381610d1e611ec7565b611d9a565b610d5e5760405162461bcd60e51b8152600401808060200182810382526038815260200180612cff6038913960400191505060405180910390fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60075490565b60006013826040518082805190602001908083835b60208310610df45780518252601f199092019160209182019101610dd5565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922054949350505050565b610e39610e33611ec7565b82611ecb565b610e745760405162461bcd60e51b8152600401808060200182810382526031815260200180612e866031913960400191505060405180910390fd5b610e7f838383611f67565b505050565b60105481565b6000610e958361128a565b8210610ed25760405162461bcd60e51b815260040180806020018281038252602b815260200180612c2c602b913960400191505060405180910390fd5b6001600160a01b0383166000908152600560205260409020805483908110610ef657fe5b906000526020600020015490505b92915050565b60606000610f1783611f86565b90506060610f2482611f91565b9050600082600202600101905060006003835181610f3e57fe5b046001019050606081604051908082528060200260200182016040528015610f70578160200160208202803883390190505b50905060007f24eb1994b22999a9428330e650231f69ba716f811bef7dde3f7a73b0c1548151840260011c6008841115611001575b6008821015610fd9578062ffffff16838380600101945081518110610fc657fe5b602090810291909101015260181c610fa5565b507fbace2a3d7089d722f901582121989045c3584e9093a44faebf23dd37040fe689840260011c5b8251821015611035578062ffffff1683838060010194508151811061102257fe5b602090810291909101015260181c611001565b5090979650505050505050565b610e7f83838360405180602001604052806000815250611866565b6110656113a4565b6110b6576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6010548082019081116110c857600080fd5b60105550565b60006110d8610dba565b82106111155760405162461bcd60e51b815260040180806020018281038252602c815260200180612ee2602c913960400191505060405180910390fd5b6007828154811061112257fe5b90600052602060002001549050919050565b6000818152600160205260408120546001600160a01b031680610f045760405162461bcd60e51b8152600401808060200182810382526029815260200180612d616029913960400191505060405180910390fd5b60008181526014602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084526060939283018282801561121d5780601f106111f25761010080835404028352916020019161121d565b820191906000526020600020905b81548152906001019060200180831161120057829003601f168201915b50505050509050919050565b600b8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c255780601f10610bfa57610100808354040283529160200191610c25565b60006001600160a01b0382166112d15760405162461bcd60e51b815260040180806020018281038252602a815260200180612d37602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600360205260409020610f0490612080565b6112fa6113a4565b61134b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600d546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600d80546001600160a01b0319169055565b600d546001600160a01b031690565b600d546000906001600160a01b03166113bb611ec7565b6001600160a01b031614905090565b6113d26113a4565b611423576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60115481810390811061143557600080fd5b60155481111561144957601181905561145c565b601554601154111561145c576015546011555b5050565b600a8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c255780601f10610bfa57610100808354040283529160200191610c25565b606060006114ce83611f86565b905060606114db82611f91565b9050600060038251816114ea57fe5b6040805161304080825261306082019092529290910492506060919060208201818038833901905050905060016002850201600083600387066001018502878161153057fe5b060190506000805b6040811015611735576000602082106115575781600202600101611562565b600182604003600202035b905060005b60408110156116fd576000602082106115865781600202600101611591565b600182604003600202035b9050600060ef848301116115de57868285026001848701010289027f24eb1994b22999a9428330e650231f69ba716f811bef7dde3f7a73b0c15481510260101c816115d857fe5b066115e9565b898c816115e757fe5b065b9050898110156116c4576003810290508a818151811061160557fe5b602001015160f81c60f81b89878060010198508151811061162257fe5b60200101906001600160f81b031916908160001a9053508a816001018151811061164857fe5b602001015160f81c60f81b89878060010198508151811061166557fe5b60200101906001600160f81b031916908160001a9053508a816002018151811061168b57fe5b602001015160f81c60f81b8987806001019850815181106116a857fe5b60200101906001600160f81b031916908160001a9053506116f3565b600160fd1b8987806001019850815181106116db57fe5b60200101906001600160f81b031916908160001a9053505b5050600101611567565b50600560f91b86848060010195508151811061171557fe5b60200101906001600160f81b031916908160001a90535050600101611538565b5060001901835250909695505050505050565b60125481565b611756611ec7565b6001600160a01b0316826001600160a01b031614156117bc576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b80600460006117c9611ec7565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561180d611ec7565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b6060610f0461186183611f86565b611f91565b611877611871611ec7565b83611ecb565b6118b25760405162461bcd60e51b8152600401808060200182810382526031815260200180612e866031913960400191505060405180910390fd5b6118be84848484612084565b50505050565b6060610f046118d16118df565b6118da846120d6565b612199565b6060604051806060016040528060258152602001612f0e60259139905090565b60115481565b6013816040518082805190602001908083835b602083106119375780518252601f199092019160209182019101611918565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220541591506119b99050576040805162461bcd60e51b815260206004820152601660248201527f4e616d6520697320616c72656164792074616b656e2e00000000000000000000604482015290519081900360640190fd5b6000815111611a0f576040805162461bcd60e51b815260206004820152601560248201527f4e616d652063616e6e6f7420626520656d7074792e0000000000000000000000604482015290519081900360640190fd5b60115460155410611a515760405162461bcd60e51b815260040180806020018281038252602b815260200180612eb7602b913960400191505060405180910390fd5b600f5460405163079d98ef60e21b81526020600482018181528451602484015284516000946001600160a01b031693631e7663bc938793928392604401918501908083838b5b83811015611aaf578181015183820152602001611a97565b50505050905090810190601f168015611adc5780820380516001836020036101000a031916815260200191505b509250505060206040518083038186803b158015611af957600080fd5b505afa158015611b0d573d6000803e3d6000fd5b505050506040513d6020811015611b2357600080fd5b5051905060008115611c0557600f54604080516331a9108f60e11b81526004810185905290516001600160a01b0390921691636352211e91602480820192602092909190829003018186803b158015611b7b57600080fd5b505afa158015611b8f573d6000803e3d6000fd5b505050506040513d6020811015611ba557600080fd5b50516001600160a01b0316611bb8611ec7565b6001600160a01b031614611bfd5760405162461bcd60e51b8152600401808060200182810382526056815260200180612d8a6056913960600191505060405180910390fd5b506000611ca4565b5060128054601054810191829055908110611c1f57600080fd5b80341015611c5e5760405162461bcd60e51b8152600401808060200182810382526022815260200180612c0a6022913960400191505060405180910390fd5b6000611c68611395565b6040519091506001600160a01b0382169083156108fc029084906000818181858888f19350505050158015611ca1573d6000803e3d6000fd5b50505b611cbf611caf611ec7565b601580546001019081905561228e565b6015546013846040518082805190602001908083835b60208310611cf45780518252601f199092019160209182019101611cd5565b51815160209384036101000a600019018019909216911617905292019485525060408051948590038201909420949094555050601554600090815260148352208451611d4292860190612b2a565b5080341115610e7f5760405133903483900380156108fc02916000818181858888f193505050501580156118be573d6000803e3d6000fd5b6060604051806060016040528060278152602001612be360279139905090565b600e546040805163c455279160e01b81526001600160a01b0385811660048301529151600093831692851691839163c455279191602480820192602092909190829003018186803b158015611dee57600080fd5b505afa158015611e02573d6000803e3d6000fd5b505050506040513d6020811015611e1857600080fd5b50516001600160a01b03161415611e33576001915050610f04565b611e3d84846122ab565b949350505050565b611e4d6113a4565b611e9e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b611ea7816122d9565b50565b6000908152600160205260409020546001600160a01b0316151590565b3390565b6000611ed682611eaa565b611f115760405162461bcd60e51b815260040180806020018281038252602c815260200180612cd3602c913960400191505060405180910390fd5b6000611f1c83611134565b9050806001600160a01b0316846001600160a01b03161480611f575750836001600160a01b0316611f4c84610c30565b6001600160a01b0316145b80611e3d5750611e3d8185611d9a565b611f7283838361237a565b611f7c83826124be565b610e7f82826125b3565b805160209091012090565b60606005820680611fbd57604051806060016040528060308152602001612e3560309139915050610b94565b8060011415611ff057505060408051808201909152600c81526b0e296a0e296ace296aee296b60a41b6020820152610b94565b806002141561202357505060408051808201909152600c81526b01c52d65c52d6dc52d79c52f60a71b6020820152610b94565b806003141561205657505060408051808201909152600c81526be29786e2978fe29796e2979760a01b6020820152610b94565b505060408051808201909152600c81526be297a2e297a3e297a4e297a560a01b6020820152919050565b5490565b61208f848484611f67565b61209b848484846125f1565b6118be5760405162461bcd60e51b8152600401808060200182810382526032815260200180612c576032913960400191505060405180910390fd5b6060816120fb57506040805180820190915260018152600360fc1b6020820152610b94565b6000825b80156121155760019190910190600a90046120ff565b506060816040519080825280601f01601f191660200182016040528015612143576020820181803883390190505b50905060001982015b841561219157600a850660300160f81b8282806001900393508151811061216f57fe5b60200101906001600160f81b031916908160001a905350600a8504945061214c565b509392505050565b6060808390506060839050606081518351016040519080825280601f01601f1916602001820160405280156121d5576020820181803883390190505b5090506000805b845181101561222d578481815181106121f157fe5b602001015160f81c60f81b83838060010194508151811061220e57fe5b60200101906001600160f81b031916908160001a9053506001016121dc565b5060005b83518110156122825783818151811061224657fe5b602001015160f81c60f81b83838060010194508151811061226357fe5b60200101906001600160f81b031916908160001a905350600101612231565b50909695505050505050565b6122988282612841565b6122a282826125b3565b61145c81612972565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6001600160a01b03811661231e5760405162461bcd60e51b8152600401808060200182810382526026815260200180612c896026913960400191505060405180910390fd5b600d546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b826001600160a01b031661238d82611134565b6001600160a01b0316146123d25760405162461bcd60e51b8152600401808060200182810382526029815260200180612e0c6029913960400191505060405180910390fd5b6001600160a01b0382166124175760405162461bcd60e51b8152600401808060200182810382526024815260200180612caf6024913960400191505060405180910390fd5b612420816129b6565b6001600160a01b0383166000908152600360205260409020612441906129f1565b6001600160a01b038216600090815260036020526040902061246290612a08565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166000908152600560205260408120546124e890600163ffffffff612a1116565b600083815260066020526040902054909150808214612583576001600160a01b038416600090815260056020526040812080548490811061252557fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b03168152602001908152602001600020838154811061256357fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b03841660009081526005602052604090208054906125ac906000198301612ba8565b5050505050565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b6000612605846001600160a01b0316612a5a565b61261157506001611e3d565b600060606001600160a01b038616630a85bd0160e11b61262f611ec7565b89888860405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156126a8578181015183820152602001612690565b50505050905090810190601f1680156126d55780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b0319909a16999099178952518151919890975087965094509250829150849050835b602083106127525780518252601f199092019160209182019101612733565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146127b4576040519150601f19603f3d011682016040523d82523d6000602084013e6127b9565b606091505b50915091508161280a578051156127d35780518082602001fd5b60405162461bcd60e51b8152600401808060200182810382526032815260200180612c576032913960400191505060405180910390fd5b600081806020019051602081101561282157600080fd5b50516001600160e01b031916630a85bd0160e11b149350611e3d92505050565b6001600160a01b03821661289c576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6128a581611eaa565b156128f7576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b03871690811790915583526003909152902061293690612a08565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b6000818152600260205260409020546001600160a01b031615611ea757600090815260026020526040902080546001600160a01b0319169055565b8054612a0490600163ffffffff612a1116565b9055565b80546001019055565b6000612a5383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612a93565b9392505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611e3d575050151592915050565b60008184841115612b225760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612ae7578181015183820152602001612acf565b50505050905090810190601f168015612b145780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612b6b57805160ff1916838001178555612b98565b82800160010185558215612b98579182015b82811115612b98578251825591602001919060010190612b7d565b50612ba4929150612bc8565b5090565b815481835581811115610e7f57600083815260209020610e7f9181019083015b610c2d91905b80821115612ba45760008155600101612bce56fe68747470733a2f2f6170692e6861736872756e65732e636f6d2f76312f636f6e74726163742f3150726963652069732067726561746572207468616e20616d6f756e742073656e742e455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e5468652047656e65736973204861736872756e652065786973747320666f722074686973206e616d652e204f6e6c7920697473206f776e65722063616e206d696e7420746869732046697273742045646974696f6e2e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776ee296a0e296ace296aee296b0e296b2e296b6e296bce29780e29786e2978fe29796e29797e297a2e297a3e297a4e297a54552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564546f6b656e73206174206d617820737570706c793b2063616e6e6f74206d696e7420616e79206d6f72652e455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e647368747470733a2f2f6170692e6861736872756e65732e636f6d2f76312f72756e65732f312fa265627a7a7231582048798befbff2ea0bbd0860c312f2f5f177e973adb179cac7e7c3e08cd02eed8564736f6c63430005110032

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000047dd5f6335ffecbe77e982d8a449263d1e501301

-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [1] : _genesisContractAddress (address): 0x47dD5F6335FfEcBE77E982d8a449263d1e501301

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [1] : 00000000000000000000000047dd5f6335ffecbe77e982d8a449263d1e501301


Deployed Bytecode Sourcemap

59435:6906:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19551:135;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19551:135:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19551:135:0;-1:-1:-1;;;;;;19551:135:0;;:::i;:::-;;;;;;;;;;;;;;;;;;47388:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47388:85:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;47388:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24521:204;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24521:204:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24521:204:0;;:::i;:::-;;;;-1:-1:-1;;;;;24521:204:0;;;;;;;;;;;;;;23803:425;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23803:425:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23803:425:0;;;;;;;;:::i;:::-;;38964:96;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38964:96:0;;;:::i;:::-;;;;;;;;;;;;;;;;62100:112;;8:9:-1;5:2;;;30:1;27;20:12;5:2;62100:112:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;62100:112:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;62100:112:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;62100:112:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;62100:112:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;62100:112:0;;-1:-1:-1;62100:112:0;;-1:-1:-1;;;;;62100:112:0:i;26204:292::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26204:292:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26204:292:0;;;;;;;;;;;;;;;;;:::i;60138:44::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;60138:44:0;;;:::i;38573:232::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38573:232:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;38573:232:0;;;;;;;;:::i;62846:890::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;62846:890:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;62846:890:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;62846:890:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;62846:890:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;62846:890:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;62846:890:0;;-1:-1:-1;62846:890:0;;-1:-1:-1;;;;;62846:890:0:i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;62846:890:0;;;;;;;;;;;;;;;;;27158:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27158:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27158:134:0;;;;;;;;;;;;;;;;;:::i;66097:241::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;66097:241:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;66097:241:0;;:::i;39406:199::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39406:199:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39406:199:0;;:::i;23144:228::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23144:228:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23144:228:0;;:::i;61980:112::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;61980:112:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;61980:112:0;;:::i;49641:91::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49641:91:0;;;:::i;22707:211::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22707:211:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22707:211:0;-1:-1:-1;;;;;22707:211:0;;:::i;52683:140::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52683:140:0;;;:::i;51872:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51872:79:0;;;:::i;52238:94::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52238:94:0;;;:::i;65754:335::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;65754:335:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;65754:335:0;;:::i;47588:89::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47588:89:0;;;:::i;63744:1735::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;63744:1735:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;63744:1735:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;63744:1735:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;63744:1735:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;63744:1735:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;63744:1735:0;;-1:-1:-1;63744:1735:0;;-1:-1:-1;;;;;63744:1735:0:i;60228:33::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;60228:33:0;;;:::i;25026:254::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25026:254:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;25026:254:0;;;;;;;;;;:::i;62666:172::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;62666:172:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;62666:172:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;62666:172:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;62666:172:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;62666:172:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;62666:172:0;;-1:-1:-1;62666:172:0;;-1:-1:-1;;;;;62666:172:0:i;28029:272::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28029:272:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;28029:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;28029:272:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;28029:272:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;28029:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;28029:272:0;;-1:-1:-1;28029:272:0;;-1:-1:-1;;;;;28029:272:0:i;55450:156::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55450:156:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;55450:156:0;;:::i;65621:125::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;65621:125:0;;;:::i;60189:32::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;60189:32:0;;;:::i;60652:1320::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;60652:1320:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;60652:1320:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;60652:1320:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;60652:1320:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;60652:1320:0;;-1:-1:-1;60652:1320:0;;-1:-1:-1;;;;;60652:1320:0:i;65487:126::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;65487:126:0;;;:::i;55738:433::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55738:433:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;55738:433:0;;;;;;;;;;:::i;52978:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52978:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52978:109:0;-1:-1:-1;;;;;52978:109:0;;:::i;19551:135::-;-1:-1:-1;;;;;;19645:33:0;;19621:4;19645:33;;;;;;;;;;;;;19551:135;;;;:::o;47388:85::-;47460:5;47453:12;;;;;;;;-1:-1:-1;;47453:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47427:13;;47453:12;;47460:5;;47453:12;;47460:5;47453:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47388:85;;:::o;24521:204::-;24580:7;24608:16;24616:7;24608;:16::i;:::-;24600:73;;;;-1:-1:-1;;;24600:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24693:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24693:24:0;;24521:204::o;23803:425::-;23867:13;23883:16;23891:7;23883;:16::i;:::-;23867:32;;23924:5;-1:-1:-1;;;;;23918:11:0;:2;-1:-1:-1;;;;;23918:11:0;;;23910:57;;;;-1:-1:-1;;;23910:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24004:5;-1:-1:-1;;;;;23988:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;23988:21:0;;:62;;;;24013:37;24030:5;24037:12;:10;:12::i;:::-;24013:16;:37::i;:::-;23980:154;;;;-1:-1:-1;;;23980:154:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24147:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;24147:29:0;-1:-1:-1;;;;;24147:29:0;;;;;;;;;24192:28;;24147:24;;24192:28;;;;;;;23803:425;;;:::o;38964:96::-;39035:10;:17;38964:96;:::o;62100:112::-;62162:7;62189:8;62198:5;62189:15;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;62189:15:0;;;;;-1:-1:-1;62189:15:0;;;;;;;;;;;;62100:112;-1:-1:-1;;;;62100:112:0:o;26204:292::-;26348:41;26367:12;:10;:12::i;:::-;26381:7;26348:18;:41::i;:::-;26340:103;;;;-1:-1:-1;;;26340:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26456:32;26470:4;26476:2;26480:7;26456:13;:32::i;:::-;26204:292;;;:::o;60138:44::-;;;;:::o;38573:232::-;38653:7;38689:16;38699:5;38689:9;:16::i;:::-;38681:5;:24;38673:80;;;;-1:-1:-1;;;38673:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38771:19:0;;;;;;:12;:19;;;;;:26;;38791:5;;38771:26;;;;;;;;;;;;;;38764:33;;38573:232;;;;;:::o;62846:890::-;62934:16;62968:13;62984:18;62996:5;62984:11;:18::i;:::-;62968:34;;63013:24;63046:21;63061:5;63046:14;:21::i;:::-;63013:55;;63079:16;63102:5;63098:1;:9;63110:1;63098:13;63079:32;;63122:19;63165:1;63144:11;:18;:22;;;;;;63169:1;63144:26;63122:48;;63181:24;63222:11;63208:26;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;136:17;;-1:-1;63208:26:0;-1:-1:-1;63181:53:0;-1:-1:-1;63245:10:0;59586:66;63292:20;;63317:1;63291:27;63347:1;63333:15;;63329:233;;;63365:131;63377:1;63372:2;:6;63365:131;;;63415:10;63428:8;63415:21;63399:7;63407:4;;;;;;63399:13;;;;;;;;;;;;;;;;;:37;59530:2;63455:25;63365:131;;;-1:-1:-1;59706:66:0;63524:20;;63549:1;63523:27;63329:233;63584:7;:14;63579:2;:19;63572:132;;;63631:10;63644:8;63631:21;63615:7;63623:4;;;;;;63615:13;;;;;;;;;;;;;;;;;:37;59530:2;63667:25;63572:132;;;-1:-1:-1;63721:7:0;;62846:890;-1:-1:-1;;;;;;;62846:890:0:o;27158:134::-;27245:39;27262:4;27268:2;27272:7;27245:39;;;;;;;;;;;;:16;:39::i;66097:241::-;52084:9;:7;:9::i;:::-;52076:54;;;;;-1:-1:-1;;;52076:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66205:14;;:24;;;;66248:35;;66240:44;;;;;;66295:14;:35;-1:-1:-1;66097:241:0:o;39406:199::-;39464:7;39500:13;:11;:13::i;:::-;39492:5;:21;39484:78;;;;-1:-1:-1;;;39484:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39580:10;39591:5;39580:17;;;;;;;;;;;;;;;;39573:24;;39406:199;;;:::o;23144:228::-;23199:7;23235:20;;;:11;:20;;;;;;-1:-1:-1;;;;;23235:20:0;23274:19;23266:73;;;;-1:-1:-1;;;23266:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61980:112;62069:15;;;;:5;:15;;;;;;;;;62062:22;;;;;;-1:-1:-1;;62062:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62036:13;;62062:22;;;62069:15;62062:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61980:112;;;:::o;49641:91::-;49716:8;49709:15;;;;;;;;-1:-1:-1;;49709:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49683:13;;49709:15;;49716:8;;49709:15;;49716:8;49709:15;;;;;;;;;;;;;;;;;;;;;;;;22707:211;22762:7;-1:-1:-1;;;;;22790:19:0;;22782:74;;;;-1:-1:-1;;;22782:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22876:24:0;;;;;;:17;:24;;;;;:34;;:32;:34::i;52683:140::-;52084:9;:7;:9::i;:::-;52076:54;;;;;-1:-1:-1;;;52076:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52766:6;;52745:40;;52782:1;;-1:-1:-1;;;;;52766:6:0;;52745:40;;52782:1;;52745:40;52796:6;:19;;-1:-1:-1;;;;;;52796:19:0;;;52683:140::o;51872:79::-;51937:6;;-1:-1:-1;;;;;51937:6:0;51872:79;:::o;52238:94::-;52318:6;;52278:4;;-1:-1:-1;;;;;52318:6:0;52302:12;:10;:12::i;:::-;-1:-1:-1;;;;;52302:22:0;;52295:29;;52238:94;:::o;65754:335::-;52084:9;:7;:9::i;:::-;52076:54;;;;;-1:-1:-1;;;52076:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65852:9;;:19;;;;65890:25;;65882:34;;;;;;65947:6;;65931:13;:22;65927:155;;;65970:9;:25;;;65927:155;;;66029:6;;66017:9;;:18;66013:69;;;66064:6;;66052:9;:18;66013:69;52141:1;65754:335;:::o;47588:89::-;47662:7;47655:14;;;;;;;;-1:-1:-1;;47655:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47629:13;;47655:14;;47662:7;;47655:14;;47662:7;47655:14;;;;;;;;;;;;;;;;;;;;;;;;63744:1735;63803:13;63829;63845:18;63857:5;63845:11;:18::i;:::-;63829:34;;63874:24;63907:21;63922:5;63907:14;:21::i;:::-;63874:55;;63940:25;63989:1;63968:11;:18;:22;;;;;59819:2;64024:20;;59933:35;64024:20;;;;;;;;;63968:22;;;;;-1:-1:-1;64001:20:0;;64024;;;;21:6:-1;;104:10;64024:20:0;87:34:-1;135:17;;-1:-1;;64001:43:0;-1:-1:-1;64086:1:0;64074;:9;;:13;64055:16;64199:17;64170:1;64078:5;64162:9;64175:1;64161:15;64140:17;:37;64131:5;:47;;;;;;64130:86;;-1:-1:-1;64227:14:0;;64256:1096;59819:2;64277;:16;64256:1096;;;64316:10;59873:15;64346:21;;:63;;64403:2;64399:1;:6;64408:1;64399:10;64346:63;;;64395:1;64389:2;59819;64375:16;64370:1;:22;:26;64346:63;64316:93;-1:-1:-1;64429:10:0;64424:878;59819:2;64445;:16;64424:878;;;64488:10;59873:15;64522:21;;:113;;64629:2;64625:1;:6;64634:1;64625:10;64522:113;;;64596:1;64590:2;59819;64576:16;64571:1;:22;:26;64522:113;64488:147;-1:-1:-1;64654:16:0;60020:20;64694:7;;;:26;:212;;64898:8;64803:7;;;64824:1;64814:7;;;:11;64803:23;:34;;59586:66;64803:46;60087:2;64802:92;64898:8;64801:105;;;;;64694:212;;;64756:17;64748:5;:25;;;;;;64694:212;64654:252;;64940:17;64929:8;:28;64925:362;;;64994:1;64982:13;;;;65038:11;65050:8;65038:21;;;;;;;;;;;;;;;;65018:7;65026:8;;;;;;65018:17;;;;;;;;;;;:41;-1:-1:-1;;;;;65018:41:0;;;;;;;;;65102:11;65114:8;65125:1;65114:12;65102:25;;;;;;;;;;;;;;;;65082:7;65090:8;;;;;;65082:17;;;;;;;;;;;:45;-1:-1:-1;;;;;65082:45:0;;;;;;;;;65170:11;65182:8;65193:1;65182:12;65170:25;;;;;;;;;;;;;;;;65150:7;65158:8;;;;;;65150:17;;;;;;;;;;;:45;-1:-1:-1;;;;;65150:45:0;;;;;;;;;64925:362;;;-1:-1:-1;;;65244:7:0;65252:8;;;;;;65244:17;;;;;;;;;;;:23;-1:-1:-1;;;;;65244:23:0;;;;;;;;;64925:362;-1:-1:-1;;64463:4:0;;64424:878;;;;-1:-1:-1;;;65316:7:0;65324:8;;;;;;65316:17;;;;;;;;;;;:24;-1:-1:-1;;;;;65316:24:0;;;;;;;;-1:-1:-1;;64295:4:0;;64256:1096;;;-1:-1:-1;;;65362:8:0;65405:23;;-1:-1:-1;65405:23:0;;63744:1735;-1:-1:-1;;;;;;63744:1735:0:o;60228:33::-;;;;:::o;25026:254::-;25112:12;:10;:12::i;:::-;-1:-1:-1;;;;;25106:18:0;:2;-1:-1:-1;;;;;25106:18:0;;;25098:56;;;;;-1:-1:-1;;;25098:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25206:8;25167:18;:32;25186:12;:10;:12::i;:::-;-1:-1:-1;;;;;25167:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;25167:32:0;;;:36;;;;;;;;;;;;:47;;-1:-1:-1;;25167:47:0;;;;;;;;;;;25245:12;:10;:12::i;:::-;25230:42;;;;;;;;;;-1:-1:-1;;;;;25230:42:0;;;;;;;;;;;;;;25026:254;;:::o;62666:172::-;62758:13;62796:34;62811:18;62823:5;62811:11;:18::i;:::-;62796:14;:34::i;28029:272::-;28144:41;28163:12;:10;:12::i;:::-;28177:7;28144:18;:41::i;:::-;28136:103;;;;-1:-1:-1;;;28136:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28250:43;28268:4;28274:2;28278:7;28287:5;28250:17;:43::i;:::-;28029:272;;;;:::o;55450:156::-;55509:13;55542:56;55556:14;:12;:14::i;:::-;55572:25;55588:8;55572:15;:25::i;:::-;55542:13;:56::i;65621:125::-;65666:13;65692:46;;;;;;;;;;;;;;;;;;;65621:125;:::o;60189:32::-;;;;:::o;60652:1320::-;60721:8;60730:5;60721:15;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;60721:15:0;;;;;-1:-1:-1;60721:15:0;;;;;;;;;;;:20;;-1:-1:-1;60713:55:0;;-1:-1:-1;60713:55:0;;;;-1:-1:-1;;;60713:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;60809:1;60793:5;60787:19;:23;60779:57;;;;;-1:-1:-1;;;60779:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;60878:9;;60869:6;;:18;60847:111;;;;-1:-1:-1;;;60847:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60994:16;;:34;;-1:-1:-1;;;60994:34:0;;;;;;;;;;;;;;;;;60969:22;;-1:-1:-1;;;;;60994:16:0;;:27;;61022:5;;60994:34;;;;;;;;;;;;60969:22;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;60994:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;60994:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;60994:34:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;60994:34:0;;-1:-1:-1;61039:21:0;61075:18;;61071:673;;61152:16;;:40;;;-1:-1:-1;;;61152:40:0;;;;;;;;;;-1:-1:-1;;;;;61152:16:0;;;;:24;;:40;;;;;;;;;;;;;;;:16;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;61152:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;61152:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;61152:40:0;-1:-1:-1;;;;;61136:56:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;61136:56:0;;61110:204;;;;-1:-1:-1;;;61110:204:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61345:1:0;61071:673;;;-1:-1:-1;61395:5:0;;;61424:14;;61415:23;;;;;;61395:5;61461:21;-1:-1:-1;61453:30:0;;;;;;61537:13;61524:9;:26;;61498:122;;;;-1:-1:-1;;;61498:122:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61635:23;61677:7;:5;:7::i;:::-;61701:31;;61635:51;;-1:-1:-1;;;;;;61701:16:0;;;:31;;;;;61718:13;;61701:31;;;;61718:13;61701:16;:31;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;61701:31:0;61071:673;;61754:29;61760:12;:10;:12::i;:::-;61776:6;61774:8;;;;;;;;61754:5;:29::i;:::-;61812:6;;61794:8;61803:5;61794:15;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;61794:15:0;;;;;-1:-1:-1;61794:15:0;;;;;;;;;;;;:24;;;;-1:-1:-1;;61835:6:0;;-1:-1:-1;61829:13:0;;;:5;:13;;;:21;;;;;;;;:::i;:::-;;61877:13;61865:9;:25;61861:104;;;61907:46;;:10;;61927:9;:25;;;61907:46;;;;;;;;;61927:25;61907:10;:46;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;65487:126:0;65531:13;65557:48;;;;;;;;;;;;;;;;;;;65487:126;:::o;55738:433::-;55977:20;;56021:30;;;-1:-1:-1;;;56021:30:0;;-1:-1:-1;;;;;56021:30:0;;;;;;;;;55847:4;;55977:20;;;56013:52;;;55977:20;;56021:22;;:30;;;;;;;;;;;;;;;55977:20;56021:30;;;5:2:-1;;;;30:1;27;20:12;5:2;56021:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;56021:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;56021:30:0;-1:-1:-1;;;;;56013:52:0;;56009:96;;;56089:4;56082:11;;;;;56009:96;56122:41;56145:6;56153:9;56122:22;:41::i;:::-;56115:48;55738:433;-1:-1:-1;;;;55738:433:0:o;52978:109::-;52084:9;:7;:9::i;:::-;52076:54;;;;;-1:-1:-1;;;52076:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53051:28;53070:8;53051:18;:28::i;:::-;52978:109;:::o;29494:155::-;29551:4;29584:20;;;:11;:20;;;;;;-1:-1:-1;;;;;29584:20:0;29622:19;;;29494:155::o;3865:98::-;3945:10;3865:98;:::o;30019:333::-;30104:4;30129:16;30137:7;30129;:16::i;:::-;30121:73;;;;-1:-1:-1;;;30121:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30205:13;30221:16;30229:7;30221;:16::i;:::-;30205:32;;30267:5;-1:-1:-1;;;;;30256:16:0;:7;-1:-1:-1;;;;;30256:16:0;;:51;;;;30300:7;-1:-1:-1;;;;;30276:31:0;:20;30288:7;30276:11;:20::i;:::-;-1:-1:-1;;;;;30276:31:0;;30256:51;:87;;;;30311:32;30328:5;30335:7;30311:16;:32::i;39989:245::-;40075:38;40095:4;40101:2;40105:7;40075:19;:38::i;:::-;40126:47;40159:4;40165:7;40126:32;:47::i;:::-;40186:40;40214:2;40218:7;40186:27;:40::i;54527:121::-;54618:21;;;;;;;;54527:121::o;62220:438::-;62309:13;62369:1;62361:9;;;62381:78;;62402:57;;;;;;;;;;;;;;;;;;;;;;62381:78;62474:10;62488:1;62474:15;62470:42;;;-1:-1:-1;;62491:21:0;;;;;;;;;;;;-1:-1:-1;;;62491:21:0;;;;;;62470:42;62527:10;62541:1;62527:15;62523:42;;;-1:-1:-1;;62544:21:0;;;;;;;;;;;;-1:-1:-1;;;62544:21:0;;;;;;62523:42;62580:10;62594:1;62580:15;62576:42;;;-1:-1:-1;;62597:21:0;;;;;;;;;;;;-1:-1:-1;;;62597:21:0;;;;;;62576:42;-1:-1:-1;;62629:21:0;;;;;;;;;;;;-1:-1:-1;;;62629:21:0;;;;62220:438;;;:::o;18132:114::-;18224:14;;18132:114::o;29020:272::-;29130:32;29144:4;29150:2;29154:7;29130:13;:32::i;:::-;29181:48;29204:4;29210:2;29214:7;29223:5;29181:22;:48::i;:::-;29173:111;;;;-1:-1:-1;;;29173:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54067:452;54120:13;54150:7;54146:50;;-1:-1:-1;54174:10:0;;;;;;;;;;;;-1:-1:-1;;;54174:10:0;;;;;;54146:50;54206:12;54247:2;54229:47;54251:7;;54229:47;;54270:6;;;;;;54266:2;54260:8;;54229:47;;;;54287:20;54320:4;54310:15;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;54310:15:0;87:34:-1;135:17;;-1:-1;54310:15:0;-1:-1:-1;54287:38:0;-1:-1:-1;;;54349:8:0;;54368:111;54375:7;;54368:111;;54439:2;54434;:7;54428:2;:14;54415:29;;54399:7;54407:4;;;;;;;54399:13;;;;;;;;;;;:45;-1:-1:-1;;;;;54399:45:0;;;;;;;;-1:-1:-1;54465:2:0;54459:8;;;;54368:111;;;-1:-1:-1;54503:7:0;54067:452;-1:-1:-1;;;54067:452:0:o;53511:548::-;53613:13;53644:20;53673:2;53644:32;;53687:20;53716:2;53687:32;;53730:20;53780:7;:14;53763:7;:14;:31;53753:42;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;53753:42:0;87:34:-1;135:17;;-1:-1;53753:42:0;-1:-1:-1;53730:65:0;-1:-1:-1;53806:10:0;;53831:88;53857:7;:14;53852:2;:19;53831:88;;;53908:7;53916:2;53908:11;;;;;;;;;;;;;;;;53892:7;53900:4;;;;;;53892:13;;;;;;;;;;;:27;-1:-1:-1;;;;;53892:27:0;;;;;;;;-1:-1:-1;53873:4:0;;53831:88;;;-1:-1:-1;53935:10:0;53930:88;53956:7;:14;53951:2;:19;53930:88;;;54007:7;54015:2;54007:11;;;;;;;;;;;;;;;;53991:7;53999:4;;;;;;53991:13;;;;;;;;;;;:27;-1:-1:-1;;;;;53991:27:0;;;;;;;;-1:-1:-1;53972:4:0;;53930:88;;;-1:-1:-1;54043:7:0;;53511:548;-1:-1:-1;;;;;;53511:548:0:o;40499:202::-;40563:24;40575:2;40579:7;40563:11;:24::i;:::-;40600:40;40628:2;40632:7;40600:27;:40::i;:::-;40653;40685:7;40653:31;:40::i;25610:147::-;-1:-1:-1;;;;;25714:25:0;;;25690:4;25714:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25610:147::o;53193:229::-;-1:-1:-1;;;;;53267:22:0;;53259:73;;;;-1:-1:-1;;;53259:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53369:6;;53348:38;;-1:-1:-1;;;;;53348:38:0;;;;53369:6;;53348:38;;53369:6;;53348:38;53397:6;:17;;-1:-1:-1;;;;;;53397:17:0;-1:-1:-1;;;;;53397:17:0;;;;;;;;;;53193:229::o;33715:459::-;33829:4;-1:-1:-1;;;;;33809:24:0;:16;33817:7;33809;:16::i;:::-;-1:-1:-1;;;;;33809:24:0;;33801:78;;;;-1:-1:-1;;;33801:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33898:16:0;;33890:65;;;;-1:-1:-1;;;33890:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33968:23;33983:7;33968:14;:23::i;:::-;-1:-1:-1;;;;;34004:23:0;;;;;;:17;:23;;;;;:35;;:33;:35::i;:::-;-1:-1:-1;;;;;34050:21:0;;;;;;:17;:21;;;;;:33;;:31;:33::i;:::-;34096:20;;;;:11;:20;;;;;;:25;;-1:-1:-1;;;;;;34096:25:0;-1:-1:-1;;;;;34096:25:0;;;;;;;;;34139:27;;34096:20;;34139:27;;;;;;;33715:459;;;:::o;43174:1148::-;-1:-1:-1;;;;;43465:18:0;;43440:22;43465:18;;;:12;:18;;;;;:25;:32;;43495:1;43465:32;:29;:32;:::i;:::-;43508:18;43529:26;;;:17;:26;;;;;;43440:57;;-1:-1:-1;43662:28:0;;;43658:328;;-1:-1:-1;;;;;43729:18:0;;43707:19;43729:18;;;:12;:18;;;;;:34;;43748:14;;43729:34;;;;;;;;;;;;;;43707:56;;43813:11;43780:12;:18;43793:4;-1:-1:-1;;;;;43780:18:0;-1:-1:-1;;;;;43780:18:0;;;;;;;;;;;;43799:10;43780:30;;;;;;;;;;;;;;;;;;;:44;;;;43897:30;;;:17;:30;;;;;:43;;;43658:328;-1:-1:-1;;;;;44075:18:0;;;;;;:12;:18;;;;;:27;;;;;-1:-1:-1;;44075:27:0;;;:::i;:::-;;43174:1148;;;;:::o;41996:186::-;-1:-1:-1;;;;;42110:16:0;;;;;;;:12;:16;;;;;;;;:23;;42081:26;;;:17;:26;;;;;:52;;;42144:16;;;39:1:-1;23:18;;45:23;;42144:30:0;;;;;;;;41996:186::o;34826:1079::-;34948:4;34975:15;:2;-1:-1:-1;;;;;34975:13:0;;:15::i;:::-;34970:60;;-1:-1:-1;35014:4:0;35007:11;;34970:60;35101:12;35115:23;-1:-1:-1;;;;;35142:7:0;;-1:-1:-1;;;35247:12:0;:10;:12::i;:::-;35274:4;35293:7;35315:5;35150:181;;;;;;-1:-1:-1;;;;;35150:181:0;-1:-1:-1;;;;;35150:181:0;;;;;;-1:-1:-1;;;;;35150:181:0;-1:-1:-1;;;;;35150:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;35150:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35150:181:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;35150:181:0;;;49:4:-1;25:18;;61:17;;35150:181:0;182:15:-1;-1:-1;;;;;;35150:181:0;;;179:29:-1;;;;160:49;;35142:190:0;;;35150:181;;35142:190;;-1:-1:-1;35142:190:0;;-1:-1:-1;25:18;-1:-1;35142:190:0;-1:-1:-1;35142:190:0;;-1:-1:-1;35142:190:0;;-1:-1:-1;25:18;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;35142:190:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;35100:232:0;;;;35348:7;35343:555;;35376:17;;:21;35372:384;;35544:10;35538:17;35605:15;35592:10;35588:2;35584:19;35577:44;35492:148;35680:60;;-1:-1:-1;;;35680:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35343:555;35788:13;35815:10;35804:32;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35804:32:0;-1:-1:-1;;;;;;35859:26:0;-1:-1:-1;;;35859:26:0;;-1:-1:-1;35851:35:0;;-1:-1:-1;;;35851:35:0;32104:335;-1:-1:-1;;;;;32176:16:0;;32168:61;;;;;-1:-1:-1;;;32168:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32249:16;32257:7;32249;:16::i;:::-;32248:17;32240:58;;;;;-1:-1:-1;;;32240:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;32311:20;;;;:11;:20;;;;;;;;:25;;-1:-1:-1;;;;;;32311:25:0;-1:-1:-1;;;;;32311:25:0;;;;;;;;32347:21;;:17;:21;;;;;:33;;:31;:33::i;:::-;32398;;32423:7;;-1:-1:-1;;;;;32398:33:0;;;32415:1;;32398:33;;32415:1;;32398:33;32104:335;;:::o;42383:164::-;42487:10;:17;;42460:24;;;;:15;:24;;;;;:44;;;39:1:-1;23:18;;45:23;;42515:24:0;;;;;;;42383:164::o;36073:175::-;36173:1;36137:24;;;:15;:24;;;;;;-1:-1:-1;;;;;36137:24:0;:38;36133:108;;36227:1;36192:24;;;:15;:24;;;;;:37;;-1:-1:-1;;;;;;36192:37:0;;;36073:175::o;18443:110::-;18524:14;;:21;;18543:1;18524:21;:18;:21;:::i;:::-;18507:38;;18443:110::o;18254:181::-;18408:19;;18426:1;18408:19;;;18254:181::o;9780:136::-;9838:7;9865:43;9869:1;9872;9865:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;9858:50;9780:136;-1:-1:-1;;;9780:136:0:o;14692:619::-;14752:4;15220:20;;15063:66;15260:23;;;;;;:42;;-1:-1:-1;;15287:15:0;;;15252:51;-1:-1:-1;;14692:619:0:o;10253:192::-;10339:7;10375:12;10367:6;;;;10359:29;;;;-1:-1:-1;;;10359:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;10359:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;10411:5:0;;;10253:192::o;59435:6906::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59435:6906:0;;;-1:-1:-1;59435:6906:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

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