Source Code

;; zoom-coins
;; contractType: continuous

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

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

(define-data-var license-uri (string-ascii 80) "")
(define-data-var license-name (string-ascii 40) "")

(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