var time.UTC

24 uses

	time (current package)
		format.go#L605: 	case UTC, nil:
		format.go#L1030: 	return parse(layout, value, UTC, Local)
		format.go#L1213: 				z = UTC
		format.go#L1291: 				z = UTC
		format.go#L1391: 		t := Date(year, Month(month), day, hour, min, sec, nsec, UTC)
		format.go#L1409: 		t := Date(year, Month(month), day, hour, min, sec, nsec, UTC)
		format_rfc3339.go#L129: 	t := Date(year, Month(month), day, hour, min, sec, nsec, UTC)
		time.go#L1392: 		l = UTC
		time.go#L1471: 	if t.Location() == UTC {
		zoneinfo.go#L71: var UTC *Location = &utcLoc
		zoneinfo.go#L665: 		return UTC, nil

	github.com/jackc/pgx/v5/pgtype
		builtin_wrappers.go#L485: 	*w = timeWrapper(time.Date(2000, 1, 1, int(hours), int(minutes), int(seconds), int(ns), time.UTC))
		date.go#L113: 		t, err := time.ParseInLocation("2006-01-02", *s, time.UTC)
		date.go#L164: 		tUnix := time.Date(date.Time.Year(), date.Time.Month(), date.Time.Day(), 0, 0, 0, 0, time.UTC).Unix()
		date.go#L165: 		dateEpoch := time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC).Unix()
		date.go#L266: 		t := time.Date(2000, 1, int(1+dayOffset), 0, 0, 0, 0, time.UTC)
		date.go#L349: 	t := time.Date(int(year), time.Month(month), int(day), 0, 0, 0, 0, time.UTC)
		timestamp.go#L122: 		tim, err = time.ParseInLocation(jsonISO8601, tss, time.UTC)
		timestamp.go#L214: 			t = time.Date(year, t.Month(), t.Day(), t.Hour(), t.Minute(), t.Second(), t.Nanosecond(), time.UTC)
		timestamp.go#L235: 	if t.Location() != time.UTC {
		timestamp.go#L236: 		return time.Date(t.Year(), t.Month(), t.Day(), t.Hour(), t.Minute(), t.Second(), t.Nanosecond(), time.UTC)
		timestamptz.go#L213: 			t = time.Date(year, t.Month(), t.Day(), t.Hour(), t.Minute(), t.Second(), t.Nanosecond(), time.UTC)

	go.pact.im/x/clock/fakeclock
		fakeclock.go#L53: 	return Time(time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC))

	go.pact.im/x/flaky
		schedule.go#L63: 		loc = time.UTC