Source Code

;; mindz
;; contractType: continuous

(impl-trait 'SP2PABAF9FTAJYNFZH93XENAJ8FVY99RRM50D2JG9.nft-trait.nft-trait)
;;(impl-trait .nft-trait.nft-trait)

(define-non-fungible-token mindz uint)

(define-constant DEPLOYER tx-sender)

(define-constant ERR-NOT-AUTHORIZED u101)
(define-constant ERR-INVALID-USER u102)
(define-constant ERR-LISTING u103)
(define-constant ERR-WRONG-COMMISSION u104)
(define-constant ERR-NOT-FOUND u105)
(define-constant ERR-NFT-MINT u106)
(define-constant ERR-CONTRACT-LOCKED u107)
(define-constant ERR-METADATA-FROZEN u111)
(define-constant ERR-INVALID-PERCENTAGE u114)

(define-data-var last-id uint u0)
(define-data-var artist-address principal 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9)
(define-data-var locked bool false)
(define-data-var metadata-frozen bool false)

(define-map cids uint (string-ascii 64))

(define-public (lock-contract)
  (begin
    (asserts! (or (is-eq tx-sender (var-get artist-address)) (is-eq tx-sender DEPLOYER)) (err ERR-NOT-AUTHORIZED))
    (var-set locked true)
    (ok true)))

(define-public (set-artist-address (address principal))
  (begin
    (asserts! (or (is-eq tx-sender (var-get artist-address)) (is-eq tx-sender DEPLOYER)) (err ERR-INVALID-USER))
    (ok (var-set artist-address address))))

(define-public (burn (token-id uint))
  (begin 
    (asserts! (is-owner token-id tx-sender) (err ERR-NOT-AUTHORIZED))
    (asserts! (is-none (map-get? market token-id)) (err ERR-LISTING))
    (nft-burn? mindz token-id tx-sender)))

(define-public (set-token-uri (hash (string-ascii 64)) (token-id uint))
  (begin
    (asserts! (or (is-eq tx-sender (var-get artist-address)) (is-eq tx-sender DEPLOYER)) (err ERR-NOT-AUTHORIZED))
    (asserts! (not (var-get metadata-frozen)) (err ERR-METADATA-FROZEN))
    (print { notification: "token-metadata-update", payload: { token-class: "nft", token-ids: (list token-id), contract-id: (as-contract tx-sender) }})
    (map-set cids token-id hash)
    (ok true)))

(define-public (freeze-metadata)
  (begin
    (asserts! (or (is-eq tx-sender (var-get artist-address)) (is-eq tx-sender DEPLOYER)) (err ERR-NOT-AUTHORIZED))
    (var-set metadata-frozen true)
    (ok true)))

(define-private (is-owner (token-id uint) (user principal))
    (is-eq user (unwrap! (nft-get-owner? mindz token-id) false)))

(define-public (transfer (id uint) (sender principal) (recipient principal))
  (begin
    (asserts! (is-eq tx-sender sender) (err ERR-NOT-AUTHORIZED))
    (asserts! (is-none (map-get? market id)) (err ERR-LISTING))
    (trnsfr id sender recipient)))

(define-read-only (get-owner (token-id uint))
  (ok (nft-get-owner? mindz token-id)))

(define-read-only (get-last-token-id)
  (ok (var-get last-id)))

(define-read-only (get-token-uri (token-id uint))
  (ok (some (concat "ipfs://" (unwrap-panic (map-get? cids token-id))))))

(define-read-only (get-artist-address)
  (ok (var-get artist-address)))

(define-public (claim (uris (list 25 (string-ascii 64))))
  (mint-many uris))

(define-private (mint-many (uris (list 25 (string-ascii 64))))
  (let 
    (
      (token-id (+ (var-get last-id) u1))
      (art-addr (var-get artist-address))
      (id-reached (fold mint-many-iter uris token-id))
      (current-balance (get-balance tx-sender))
    )
    (asserts! (or (is-eq tx-sender DEPLOYER) (is-eq tx-sender art-addr)) (err ERR-NOT-AUTHORIZED))
    (asserts! (is-eq (var-get locked) false) (err ERR-CONTRACT-LOCKED))
    (var-set last-id (- id-reached u1))
    (map-set token-count tx-sender (+ current-balance (- id-reached token-id)))    
    (ok id-reached)))

(define-private (mint-many-iter (hash (string-ascii 64)) (next-id uint))
  (begin
    (unwrap! (nft-mint? mindz next-id tx-sender) next-id)
    (map-set cids next-id hash)      
    (+ next-id u1)))

;; NON-CUSTODIAL FUNCTIONS START
(use-trait commission-trait 'SP3D6PV2ACBPEKYJTCMH7HEN02KP87QSP8KTEH335.commission-trait.commission)

(define-map token-count principal uint)
(define-map market uint {price: uint, commission: principal, royalty: uint})

(define-read-only (get-balance (account principal))
  (default-to u0
    (map-get? token-count account)))

(define-private (trnsfr (id uint) (sender principal) (recipient principal))
  (match (nft-transfer? mindz id sender recipient)
    success
      (let
        ((sender-balance (get-balance sender))
        (recipient-balance (get-balance recipient)))
          (map-set token-count
            sender
            (- sender-balance u1))
          (map-set token-count
            recipient
            (+ recipient-balance u1))
          (ok success))
    error (err error)))

(define-private (is-sender-owner (id uint))
  (let ((owner (unwrap! (nft-get-owner? mindz id) false)))
    (or (is-eq tx-sender owner) (is-eq contract-caller owner))))

(define-read-only (get-listing-in-ustx (id uint))
  (map-get? market id))

(define-public (list-in-ustx (id uint) (price uint) (comm-trait <commission-trait>))
  (let ((listing  {price: price, commission: (contract-of comm-trait), royalty: (var-get royalty-percent)}))
    (asserts! (is-sender-owner id) (err ERR-NOT-AUTHORIZED))
    (map-set market id listing)
    (print (merge listing {a: "list-in-ustx", id: id}))
    (ok true)))

(define-public (unlist-in-ustx (id uint))
  (begin
    (asserts! (is-sender-owner id) (err ERR-NOT-AUTHORIZED))
    (map-delete market id)
    (print {a: "unlist-in-ustx", id: id})
    (ok true)))

(define-public (buy-in-ustx (id uint) (comm-trait <commission-trait>))
  (let ((owner (unwrap! (nft-get-owner? mindz id) (err ERR-NOT-FOUND)))
      (listing (unwrap! (map-get? market id) (err ERR-LISTING)))
      (price (get price listing))
      (royalty (get royalty listing)))
    (asserts! (is-eq (contract-of comm-trait) (get commission listing)) (err ERR-WRONG-COMMISSION))
    (try! (stx-transfer? price tx-sender owner))
    (try! (pay-royalty price royalty))
    (try! (contract-call? comm-trait pay id price))
    (try! (trnsfr id owner tx-sender))
    (map-delete market id)
    (print {a: "buy-in-ustx", id: id})
    (ok true)))
    
(define-data-var royalty-percent uint u500)

(define-read-only (get-royalty-percent)
  (ok (var-get royalty-percent)))

(define-public (set-royalty-percent (royalty uint))
  (begin
    (asserts! (or (is-eq tx-sender (var-get artist-address)) (is-eq tx-sender DEPLOYER)) (err ERR-INVALID-USER))
    (asserts! (and (>= royalty u0) (<= royalty u1000)) (err ERR-INVALID-PERCENTAGE))
    (ok (var-set royalty-percent royalty))))

(define-private (pay-royalty (price uint) (royalty uint))
  (let (
    (royalty-amount (/ (* price royalty) u10000))
  )
  (if (and (> royalty-amount u0) (not (is-eq tx-sender (var-get artist-address))))
    (try! (stx-transfer? royalty-amount tx-sender (var-get artist-address)))
    (print false)
  )
  (ok true)))

;; NON-CUSTODIAL FUNCTIONS END

(try! (nft-mint? mindz u1 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u1 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/1.json")
(try! (nft-mint? mindz u2 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u2 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/2.json")
(try! (nft-mint? mindz u3 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u3 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/3.json")
(try! (nft-mint? mindz u4 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u4 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/4.json")
(try! (nft-mint? mindz u5 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u5 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/5.json")
(try! (nft-mint? mindz u6 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u6 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/6.json")
(try! (nft-mint? mindz u7 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u7 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/7.json")
(try! (nft-mint? mindz u8 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u8 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/8.json")
(try! (nft-mint? mindz u9 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u9 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/9.json")
(try! (nft-mint? mindz u10 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u10 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/10.json")
(try! (nft-mint? mindz u11 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u11 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/11.json")
(try! (nft-mint? mindz u12 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u12 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/12.json")
(try! (nft-mint? mindz u13 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u13 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/13.json")
(try! (nft-mint? mindz u14 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u14 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/14.json")
(try! (nft-mint? mindz u15 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u15 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/15.json")
(try! (nft-mint? mindz u16 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u16 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/16.json")
(try! (nft-mint? mindz u17 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u17 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/17.json")
(try! (nft-mint? mindz u18 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u18 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/18.json")
(try! (nft-mint? mindz u19 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u19 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/19.json")
(try! (nft-mint? mindz u20 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u20 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/20.json")
(try! (nft-mint? mindz u21 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u21 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/21.json")
(try! (nft-mint? mindz u22 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u22 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/22.json")
(try! (nft-mint? mindz u23 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u23 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/23.json")
(try! (nft-mint? mindz u24 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u24 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/24.json")
(try! (nft-mint? mindz u25 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u25 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/25.json")
(try! (nft-mint? mindz u26 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u26 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/26.json")
(try! (nft-mint? mindz u27 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u27 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/27.json")
(try! (nft-mint? mindz u28 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u28 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/28.json")
(try! (nft-mint? mindz u29 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u29 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/29.json")
(try! (nft-mint? mindz u30 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u30 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/30.json")
(try! (nft-mint? mindz u31 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u31 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/31.json")
(try! (nft-mint? mindz u32 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u32 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/32.json")
(try! (nft-mint? mindz u33 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u33 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/33.json")
(try! (nft-mint? mindz u34 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u34 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/34.json")
(try! (nft-mint? mindz u35 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u35 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/35.json")
(try! (nft-mint? mindz u36 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u36 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/36.json")
(try! (nft-mint? mindz u37 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u37 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/37.json")
(try! (nft-mint? mindz u38 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u38 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/38.json")
(try! (nft-mint? mindz u39 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u39 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/39.json")
(try! (nft-mint? mindz u40 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u40 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/40.json")
(try! (nft-mint? mindz u41 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u41 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/41.json")
(try! (nft-mint? mindz u42 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u42 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/42.json")
(try! (nft-mint? mindz u43 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u43 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/43.json")
(try! (nft-mint? mindz u44 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u44 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/44.json")
(try! (nft-mint? mindz u45 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u45 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/45.json")
(try! (nft-mint? mindz u46 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u46 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/46.json")
(try! (nft-mint? mindz u47 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u47 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/47.json")
(try! (nft-mint? mindz u48 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u48 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/48.json")
(try! (nft-mint? mindz u49 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u49 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/49.json")
(try! (nft-mint? mindz u50 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u50 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/50.json")
(try! (nft-mint? mindz u51 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u51 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/51.json")
(try! (nft-mint? mindz u52 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u52 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/52.json")
(try! (nft-mint? mindz u53 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u53 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/53.json")
(try! (nft-mint? mindz u54 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u54 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/54.json")
(try! (nft-mint? mindz u55 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u55 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/55.json")
(try! (nft-mint? mindz u56 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u56 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/56.json")
(try! (nft-mint? mindz u57 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u57 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/57.json")
(try! (nft-mint? mindz u58 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u58 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/58.json")
(try! (nft-mint? mindz u59 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u59 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/59.json")
(try! (nft-mint? mindz u60 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u60 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/60.json")
(try! (nft-mint? mindz u61 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u61 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/61.json")
(try! (nft-mint? mindz u62 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u62 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/62.json")
(try! (nft-mint? mindz u63 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u63 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/63.json")
(try! (nft-mint? mindz u64 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u64 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/64.json")
(try! (nft-mint? mindz u65 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u65 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/65.json")
(try! (nft-mint? mindz u66 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u66 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/66.json")
(try! (nft-mint? mindz u67 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u67 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/67.json")
(try! (nft-mint? mindz u68 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u68 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/68.json")
(try! (nft-mint? mindz u69 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u69 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/69.json")
(try! (nft-mint? mindz u70 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u70 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/70.json")
(try! (nft-mint? mindz u71 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u71 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/71.json")
(try! (nft-mint? mindz u72 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u72 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/72.json")
(try! (nft-mint? mindz u73 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u73 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/73.json")
(try! (nft-mint? mindz u74 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u74 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/74.json")
(try! (nft-mint? mindz u75 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u75 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/75.json")
(try! (nft-mint? mindz u76 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u76 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/76.json")
(try! (nft-mint? mindz u77 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u77 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/77.json")
(try! (nft-mint? mindz u78 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u78 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/78.json")
(try! (nft-mint? mindz u79 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u79 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/79.json")
(try! (nft-mint? mindz u80 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u80 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/80.json")
(try! (nft-mint? mindz u81 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u81 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/81.json")
(try! (nft-mint? mindz u82 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u82 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/82.json")
(try! (nft-mint? mindz u83 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u83 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/83.json")
(try! (nft-mint? mindz u84 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u84 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/84.json")
(try! (nft-mint? mindz u85 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u85 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/85.json")
(try! (nft-mint? mindz u86 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u86 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/86.json")
(try! (nft-mint? mindz u87 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u87 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/87.json")
(try! (nft-mint? mindz u88 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u88 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/88.json")
(try! (nft-mint? mindz u89 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u89 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/89.json")
(try! (nft-mint? mindz u90 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u90 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/90.json")
(try! (nft-mint? mindz u91 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u91 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/91.json")
(try! (nft-mint? mindz u92 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u92 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/92.json")
(try! (nft-mint? mindz u93 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u93 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/93.json")
(try! (nft-mint? mindz u94 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u94 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/94.json")
(try! (nft-mint? mindz u95 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u95 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/95.json")
(try! (nft-mint? mindz u96 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u96 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/96.json")
(try! (nft-mint? mindz u97 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u97 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/97.json")
(try! (nft-mint? mindz u98 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u98 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/98.json")
(try! (nft-mint? mindz u99 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u99 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/99.json")
(try! (nft-mint? mindz u100 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u100 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/100.json")
(try! (nft-mint? mindz u101 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u101 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/101.json")
(try! (nft-mint? mindz u102 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u102 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/102.json")
(try! (nft-mint? mindz u103 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u103 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/103.json")
(try! (nft-mint? mindz u104 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u104 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/104.json")
(try! (nft-mint? mindz u105 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u105 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/105.json")
(try! (nft-mint? mindz u106 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u106 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/106.json")
(try! (nft-mint? mindz u107 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u107 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/107.json")
(try! (nft-mint? mindz u108 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u108 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/108.json")
(try! (nft-mint? mindz u109 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u109 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/109.json")
(try! (nft-mint? mindz u110 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u110 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/110.json")
(try! (nft-mint? mindz u111 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u111 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/111.json")
(try! (nft-mint? mindz u112 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u112 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/112.json")
(try! (nft-mint? mindz u113 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u113 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/113.json")
(try! (nft-mint? mindz u114 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u114 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/114.json")
(try! (nft-mint? mindz u115 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u115 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/115.json")
(try! (nft-mint? mindz u116 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u116 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/116.json")
(try! (nft-mint? mindz u117 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u117 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/117.json")
(try! (nft-mint? mindz u118 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u118 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/118.json")
(try! (nft-mint? mindz u119 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u119 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/119.json")
(try! (nft-mint? mindz u120 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u120 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/120.json")
(try! (nft-mint? mindz u121 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u121 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/121.json")
(try! (nft-mint? mindz u122 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u122 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/122.json")
(try! (nft-mint? mindz u123 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u123 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/123.json")
(try! (nft-mint? mindz u124 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u124 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/124.json")
(try! (nft-mint? mindz u125 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u125 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/125.json")
(try! (nft-mint? mindz u126 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u126 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/126.json")
(try! (nft-mint? mindz u127 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u127 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/127.json")
(try! (nft-mint? mindz u128 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u128 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/128.json")
(try! (nft-mint? mindz u129 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u129 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/129.json")
(try! (nft-mint? mindz u130 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u130 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/130.json")
(try! (nft-mint? mindz u131 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u131 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/131.json")
(try! (nft-mint? mindz u132 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u132 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/132.json")
(try! (nft-mint? mindz u133 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u133 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/133.json")
(try! (nft-mint? mindz u134 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u134 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/134.json")
(try! (nft-mint? mindz u135 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u135 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/135.json")
(try! (nft-mint? mindz u136 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u136 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/136.json")
(try! (nft-mint? mindz u137 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u137 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/137.json")
(try! (nft-mint? mindz u138 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u138 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/138.json")
(try! (nft-mint? mindz u139 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u139 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/139.json")
(try! (nft-mint? mindz u140 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u140 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/140.json")
(try! (nft-mint? mindz u141 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u141 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/141.json")
(try! (nft-mint? mindz u142 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u142 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/142.json")
(try! (nft-mint? mindz u143 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u143 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/143.json")
(try! (nft-mint? mindz u144 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u144 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/144.json")
(try! (nft-mint? mindz u145 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u145 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/145.json")
(try! (nft-mint? mindz u146 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u146 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/146.json")
(try! (nft-mint? mindz u147 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u147 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/147.json")
(try! (nft-mint? mindz u148 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u148 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/148.json")
(try! (nft-mint? mindz u149 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u149 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/149.json")
(try! (nft-mint? mindz u150 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u150 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/150.json")
(try! (nft-mint? mindz u151 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u151 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/151.json")
(try! (nft-mint? mindz u152 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u152 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/152.json")
(try! (nft-mint? mindz u153 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u153 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/153.json")
(try! (nft-mint? mindz u154 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u154 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/154.json")
(try! (nft-mint? mindz u155 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u155 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/155.json")
(try! (nft-mint? mindz u156 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u156 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/156.json")
(try! (nft-mint? mindz u157 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u157 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/157.json")
(try! (nft-mint? mindz u158 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u158 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/158.json")
(try! (nft-mint? mindz u159 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u159 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/159.json")
(try! (nft-mint? mindz u160 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u160 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/160.json")
(try! (nft-mint? mindz u161 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u161 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/161.json")
(try! (nft-mint? mindz u162 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u162 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/162.json")
(try! (nft-mint? mindz u163 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u163 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/163.json")
(try! (nft-mint? mindz u164 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u164 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/164.json")
(try! (nft-mint? mindz u165 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u165 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/165.json")
(try! (nft-mint? mindz u166 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u166 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/166.json")
(try! (nft-mint? mindz u167 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u167 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/167.json")
(try! (nft-mint? mindz u168 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u168 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/168.json")
(try! (nft-mint? mindz u169 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u169 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/169.json")
(try! (nft-mint? mindz u170 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u170 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/170.json")
(try! (nft-mint? mindz u171 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u171 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/171.json")
(try! (nft-mint? mindz u172 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u172 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/172.json")
(try! (nft-mint? mindz u173 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u173 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/173.json")
(try! (nft-mint? mindz u174 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u174 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/174.json")
(try! (nft-mint? mindz u175 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u175 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/175.json")
(try! (nft-mint? mindz u176 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u176 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/176.json")
(try! (nft-mint? mindz u177 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u177 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/177.json")
(try! (nft-mint? mindz u178 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u178 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/178.json")
(try! (nft-mint? mindz u179 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u179 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/179.json")
(try! (nft-mint? mindz u180 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u180 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/180.json")
(try! (nft-mint? mindz u181 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u181 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/181.json")
(try! (nft-mint? mindz u182 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u182 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/182.json")
(try! (nft-mint? mindz u183 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u183 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/183.json")
(try! (nft-mint? mindz u184 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u184 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/184.json")
(try! (nft-mint? mindz u185 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u185 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/185.json")
(try! (nft-mint? mindz u186 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u186 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/186.json")
(try! (nft-mint? mindz u187 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u187 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/187.json")
(try! (nft-mint? mindz u188 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u188 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/188.json")
(try! (nft-mint? mindz u189 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u189 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/189.json")
(try! (nft-mint? mindz u190 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u190 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/190.json")
(try! (nft-mint? mindz u191 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u191 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/191.json")
(try! (nft-mint? mindz u192 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u192 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/192.json")
(try! (nft-mint? mindz u193 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u193 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/193.json")
(try! (nft-mint? mindz u194 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u194 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/194.json")
(try! (nft-mint? mindz u195 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u195 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/195.json")
(try! (nft-mint? mindz u196 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u196 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/196.json")
(try! (nft-mint? mindz u197 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u197 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/197.json")
(try! (nft-mint? mindz u198 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u198 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/198.json")
(try! (nft-mint? mindz u199 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u199 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/199.json")
(try! (nft-mint? mindz u200 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u200 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/200.json")
(try! (nft-mint? mindz u201 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u201 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/201.json")
(try! (nft-mint? mindz u202 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u202 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/202.json")
(try! (nft-mint? mindz u203 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u203 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/203.json")
(try! (nft-mint? mindz u204 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u204 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/204.json")
(try! (nft-mint? mindz u205 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u205 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/205.json")
(try! (nft-mint? mindz u206 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u206 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/206.json")
(try! (nft-mint? mindz u207 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u207 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/207.json")
(try! (nft-mint? mindz u208 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u208 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/208.json")
(try! (nft-mint? mindz u209 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u209 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/209.json")
(try! (nft-mint? mindz u210 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u210 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/210.json")
(try! (nft-mint? mindz u211 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u211 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/211.json")
(try! (nft-mint? mindz u212 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u212 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/212.json")
(try! (nft-mint? mindz u213 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u213 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/213.json")
(try! (nft-mint? mindz u214 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u214 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/214.json")
(try! (nft-mint? mindz u215 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u215 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/215.json")
(try! (nft-mint? mindz u216 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u216 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/216.json")
(try! (nft-mint? mindz u217 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u217 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/217.json")
(try! (nft-mint? mindz u218 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u218 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/218.json")
(try! (nft-mint? mindz u219 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u219 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/219.json")
(try! (nft-mint? mindz u220 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u220 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/220.json")
(try! (nft-mint? mindz u221 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u221 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/221.json")
(try! (nft-mint? mindz u222 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u222 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/222.json")
(try! (nft-mint? mindz u223 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u223 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/223.json")
(try! (nft-mint? mindz u224 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u224 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/224.json")
(try! (nft-mint? mindz u225 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u225 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/225.json")
(try! (nft-mint? mindz u226 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u226 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/226.json")
(try! (nft-mint? mindz u227 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9))
(map-set token-count 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9 (+ (get-balance 'SPWMZZ7AS9JT34Q159MS0EK4MVP3HAEGABRKH2R9) u1))
(map-set cids u227 "QmXewXkoVvjodYi9qcWvuaeo6Mi3Y67wYGzisrVP723VGU/json/227.json")
(var-set last-id u227)

(define-data-var license-uri (string-ascii 80) "https://arweave.net/zmc1WTspIhFyVY82bwfAIcIExLFH5lUcHHUN0wXg4W8/4")
(define-data-var license-name (string-ascii 40) "PERSONAL")

(define-read-only (get-license-uri)
  (ok (var-get license-uri)))
  
(define-read-only (get-license-name)
  (ok (var-get license-name)))
  
(define-public (set-license-uri (uri (string-ascii 80)))
  (begin
    (asserts! (or (is-eq tx-sender (var-get artist-address)) (is-eq tx-sender DEPLOYER)) (err ERR-NOT-AUTHORIZED))
    (ok (var-set license-uri uri))))
    
(define-public (set-license-name (name (string-ascii 40)))
  (begin
    (asserts! (or (is-eq tx-sender (var-get artist-address)) (is-eq tx-sender DEPLOYER)) (err ERR-NOT-AUTHORIZED))
    (ok (var-set license-name name))))

Functions (28)

FunctionAccessArgs
lock-contractpublic
set-artist-addresspublicaddress: principal
burnpublictoken-id: uint
set-token-uripublichash: (string-ascii 64
freeze-metadatapublic
is-ownerprivatetoken-id: uint, user: principal
transferpublicid: uint, sender: principal, recipient: principal
get-ownerread-onlytoken-id: uint
get-last-token-idread-only
get-token-uriread-onlytoken-id: uint
get-artist-addressread-only
claimpublicuris: (list 25 (string-ascii 64
mint-manyprivateuris: (list 25 (string-ascii 64
mint-many-iterprivatehash: (string-ascii 64
get-balanceread-onlyaccount: principal
trnsfrprivateid: uint, sender: principal, recipient: principal
is-sender-ownerprivateid: uint
get-listing-in-ustxread-onlyid: uint
list-in-ustxpublicid: uint, price: uint, comm-trait: <commission-trait>
unlist-in-ustxpublicid: uint
buy-in-ustxpublicid: uint, comm-trait: <commission-trait>
get-royalty-percentread-only
set-royalty-percentpublicroyalty: uint
pay-royaltyprivateprice: uint, royalty: uint
get-license-uriread-only
get-license-nameread-only
set-license-uripublicuri: (string-ascii 80
set-license-namepublicname: (string-ascii 40