Lucky Jack mine

38°52′N 107°02′W

Lucky Jack mine
Location
Colorado
CountryUnited States
Production
ProductsMolybdenum

The Lucky Jack mine (formerly known as the Mount Emmons molybdenum property[1]) is one of the largest molybdenum deposits in the United States.[2] The mine is located West of Crested Butte, Colorado in Gunnison County, Colorado.[1] The Molybrook mine has reserves amounting to 220 million tonnes of molybdenum ore grading 0.37% molybdenum thus resulting 814,000 tonnes of molybdenum.[2]

History

The unmined deposit was reported to be in the planning stage in 2007 with interests in the project from both U.S. Energy Corporation and Kobex Minerals Inc.[1][3] The deposit was originally discovered in 1970s.[3]

The Denver Post reported grassroots environmental groups, like the High County Citizens' Alliance and the Red Lady Coalition, actively opposing the planned work as of 2007.[4] The groups pointed at expensive and poor cleanup attempts for similar mines in the area, one of which was listed as a Superfund site: Standard Mine.[4]

In February 2016, a subsidiary of Freeport-McMoRan, the operators of the Freeport Mine in Arizona, purchased the claim from U.S. Energy.[5] This news was well received by the town and activist groups, because the new owners were willing to enter a cooperative MOU with both the local town and state and federal environmental regulators on care of the mine.[5]

gollark: I mean, I really only need to change the implementations, or specifically the specific implementation which happens to run on my laptop.
gollark: Well, I intend for it to work differently, so obviously glibc or something is wrong. Maybe I can muck with the program counter somehow.
gollark: * syscalls and whatever
gollark: So I should work out some way to live-patch the kernel to increase the amount of signal-safe functions?
gollark: ```c#include <stdio.h>#include <signal.h>#include <string.h>#include <stdlib.h>#include <sys/mman.h>#include <unistd.h>static void handler(int sig, siginfo_t *info, void *literally_bee) { printf("oh bee oh apio segfault %08x\n", info->si_addr); int ps = getpagesize(); long ad = (long)info->si_addr; ad = ad - (ad % ps); mmap((void*)ad, 0x10000, PROT_NONE, MAP_ANONYMOUS|MAP_FIXED, -1, 0);}int main() { struct sigaction sa; sigemptyset(&sa.sa_mask); sa.sa_flags = SA_NODEFER; sa.sa_sigaction = handler; sigaction(SIGSEGV, &sa, NULL); *(int*)NULL = -3; printf("thing done\n"); return 0;}```

See also

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.