This file is indexed.

/usr/share/games/trackballs/levels/ki2.scm is in trackballs-data 1.2.4-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
;;; level ki2
;;; Note. This is meant to be a very easy and basic level for children

(day)
(set-track-name (_ "At the Beach"))
(set-author "Keith Winston")

(set-start-position 252 252)
(start-time 300) 

;; This is the goal
(add-goal 219 238 #f "ki3")

(add-flag 224 244 100 #t 0.1) 
(add-flag 224 242 100 #t 0.1) 
(add-flag 238 246 250 #t 0.5)
(add-flag 242 237 100 #t 0.1)
(add-flag 242 235 100 #t 0.1)
(add-flag 249 241 100 #t 0.1)


(define speed 0.2)
;(cond
; ((= (difficulty) *easy*) (set! speed 0.10))
; ((= (difficulty) *normal*) (set! speed 0.20))
; ((= (difficulty) *hard*) (set! speed 0.30))
;)