-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSamp1.bin
1204 lines (1074 loc) · 64.2 KB
/
Samp1.bin
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
MATLAB 5.0 MAT-file, Platform: MACI64, Created on: Sun Dec 11 18:34:55 2022 IM 8 Delta published by [[LucasArts]]. It was the seventh game to use the [[SCUMM]] adventure [[game engine]].
== Plot ==
{{spoiler}}
[[Image:Indy_foa_screenshot.png|thumb|250px|left|In the [[Labyrinth]] of [[Knossos]].]]
The game's plot was quite sophisticated, based on writings by [[Plato]]. Using the lead character from the well-known [[Indiana Jones]] film series but based on an original story, it concerned Indy who was asked by Marcus Brody and a certain Mr.Smith to find a particular strange idol from the College museum. When Indy returns, inside the statue they find a small metal bead and Smith, to their surprise, steals the statue. It is revealed his real name is Klaus Kerner and he is an agent of the [[Third Reich]] and his next target is [[Sophia Hapgood]].
Sophia Hapgood, an ex-colleague of Indy, now presents herself as a psychic, giving seminars about Atlantis and communicating with the Atlantean god-king Nur-ab-sal. Kerner was after her medallion, which she and Indy found in [[Iceland]] and which helped her communicate with Nur-ab-sal. A race between Jones and the [[Nazi]]s to find the mythical lost continent of [[Atlantis]] begins, which may contain technology vital to the future of the world, since Kerner discovered that the metal bead found in the statue was [[Orichalcum]], the legendary metal that would give extreme power to machines and create bombs. Kerner finds this out after bringing the bead and statue to his [[mad scientist]] boss, Dr. Hans Ubermann.
On some point, the team must find ''[[Hermocrates|The Hermocrates]]'', the lost dialogue of [[Plato]] discussing Atlantis further than his previous works (''[[Timaeus]]'' and ''[[Critias]]''). Indy visits places that are connected to the Atlantis literature, like a [[Mayan]] pyramid, the [[Azores]], [[Thera]] and [[Crete]], and the plot attempts to tie together many of the existing theories concerning Atlantis (which in reality are independent and don't necessarily co-exist).
The middle part of the game has three alternative paths. At the end, they all merge and Indy and Sophia meet again. Atlantis is found in the [[Aegean sea]], and as expected, it is depicted in ruins but in a strange alien-like manner.
== Technical Details ==
More innovative than the earlier Indiana Jones adventure game, ''[[Indiana Jones and the Last Crusade: The Graphic Adventure|Indiana Jones and the Last Crusade]]'', ''Fate of Atlantis'' featured a nod to originality by including three differing paths to the completion of the game and many alternative ways to solve puzzles. The player who finishes all of the puzzles in all three paths and all of the alternative solutions, receives a full IQ (Indy Quotient) score. At one point in the game, during a dialogue sequence, the player chooses between three paths: The ''Wits'' path concentrates on puzzles, the ''Fists'' path is more dependent on fist fights (the game includes a rudimentary engine for such fights), and the ''Team'' path combines both elements and features [[Sophia Hapgood]] as a sidekick.
It is also significant for breaking with the LucasArts adventure game tradition of not allowing the player to die (though it was also possible to die at some points in ''[[Indiana Jones and the Last Crusade: The Graphic Adventure|Last Crusade]]'' and ''[[Zak McKracken and the Alien Mindbenders|Zak McKracken]]''). After the player's death, a short "what happened next" plot summary and a score appear. To the player's advantage, the game conveniently alerts the player of impending danger so that he or she can play more cautiously.
The project was led by [[Hal Barwood]]; Barwood wrote the story and designed the game together with [[Noah Falstein]]. The music was composed by [[Michael Land]], [[Clint Bajakian]], and [[Peter McConnell]], based heavily upon the works of [[John Williams]].
The game was re-released on CD-ROM with a full voiceover soundtrack in [[1993]], with the characters voiced in a very dramatic manner by a low-budget cast of (previously?) unknowns.
== Trivia ==
* Game resource editing programs like [[ScummRev]] have revealed that there is an unused ('secret') room in the game code that didn't make it to the final version. This room is Sophia's bedroom, and lies next to her ransacked office. The programmers must have originally planned some more action in Sophia's apartment, but then thought that the presence of such a room and an additional sequence would not be vital to the gameplay. In the final version, all that takes place in Sophia's apartment is an extended dialogue in her office.
* In the 'secret' bedroom, some objects can be identified with [[ScummRev]]; this indicates that the programmers intended some puzzle to be solved by the player, apart from the office dialogue. In that bedroom, perhaps Sophia made her introduction as a playable character, so that the player had to guide her to, for example, find the [[orichalcum]] bead. One of the useable objects is labeled as [[Chuck the Plant]], which is an inside joke at LucasArts and a nod to several previous LucasArts games.
* The adventure game was released simultaneously with ''[[Indiana Jones and The Fate of Atlantis: The Action Game]]'', a remake loosely following the same storyline, and belonging to the arcade-adventure genre. It never enjoyed great popularity.
* A four-issue [[comic book]] mini-series based on the game's storyline was published by [[Dark Horse Comics]] in [[1991]] before the game was released. The following years, there were unsubstantiated rumours that the ''Fate of Atlantis'' franchise (known as [[Indiana Jones 4]]) was the official precursor to a fourth movie.
* LucasArts had planned on developing this game for the [[Sega CD]], but canceled the game after its Sega CD edition of [[The Secret of Monkey Island]] failed to be much of a commercial success.
== Sequels ==
Since the planned sequel ''[[Indiana Jones and the Iron Phoenix]]'', was discontinued by [[LucasArts]] in [[1995]] a few fan groups started developing fan-games, but [[as of 2004]], none of them had been finished.
LucasArts also released two 3D action titles using the Indiana Jones license, ''[[Indiana Jones and the Infernal Machine]]'' and ''[[Indiana Jones and the Emperor's Tomb]]'', with a third currently in development.
== See also ==
* [[List of mad scientists]] – Dr. Hans Ubermann
* [[LucasArts adventure games]]
* [[ScummVM]]
== External links ==
* {{moby game|id=/indiana-jones-and-the-fate-of-atlantis|name=''Indiana Jones and the Fate of Atlantis''}}
* [http://www.theindyexperience.com/video_games/fate_of_atlantis_graphic_adventure.php ''Indiana Jones and the Fate of Atlantis'' section] at [http://www.theindyexperience.com/ The Indy Experience]
* [http://amberfisharts.com/ ''Indiana Jones and the Fate of Atlantis 2''] – A sequel game fan project
* [http://barnettcollege.com/ ''Indiana Jones and the Fountain of Youth''] – A game fan project inspired by ''Fate of Atlantis''
* [http://www.indylc2.com/ ''Indiana Jones and the Crown of Solomon''] – A fan game project based on ''Last Crusade'' and ''Fate of Atlantis''
{{Indiana Jones games}}
[[Category:1992 computer and video games]]
[[Category:Adventure games]]
[[Category: Cancelled Sega CD games]]
[[Category:Amiga games]]
[[Category: Apple Macintosh games]]
[[Category:Atlantis|I]]
[[Category:Comics based on computer and video games]]
[[Category: Commodore 64 games]]
[[Category:DOS games]]
[[Category:ZX Spectrum games]]
[[Category: LucasArts games]]
[[Category:ScummVM supported games]]
[[de:Indiana Jones and the Fate of Atlantis]]
[[es:Indiana Jones and the Fate of Atlantis]]
[[fr:Indiana Jones and the Fate of Atlantis]]
[[it:Indiana Jones e il destino di Atlantide]]
[[fi:Indiana Jones and the Fate of Atlantis]]</text>
</revision>
</page>
<page>
<title>Wikipedia:WikiProject Animals</title>
<id>80846</id>
<revision>
<id>15972454</id>
<timestamp>2002-10-27T20:57:42Z</timestamp>
<contributor>
<username>Maveric149</username>
<id>62</id>
</contributor>
<comment>#REDIRECT [[Wikipedia:WikiProject Tree of Life]]; WikiProject Animals is a duplicate of ToL</comment>
<text xml:space="preserve">#REDIRECT [[Wikipedia:WikiProject Tree of Life]]</text>
</revision>
</page>
<page>
<title>Sea shell</title>
<id>80848</id>
<revision>
<id>15972455</id>
<timestamp>2002-09-05T11:39:38Z</timestamp>
<contributor>
<username>Andre Engels</username>
<id>300</id>
</contributor>
<minor />
<comment>redirect</comment>
<text xml:space="preserve">#REDIRECT [[animal shell]]</text>
</revision>
</page>
<page>
<title>Seashell</title>
<id>80849</id>
<revision>
<id>15972456</id>
<timestamp>2002-09-05T11:40:00Z</timestamp>
<contributor>
<username>Andre Engels</username>
<id>300</id>
</contributor>
<minor />
<comment>redirect</comment>
<text xml:space="preserve">#REDIRECT [[animal shell]]</text>
</revision>
</page>
<page>
<title>XML-RPC</title>
<id>80850</id>
<revision>
<id>41889134</id>
<timestamp>2006-03-02T11:18:00Z</timestamp>
<contributor>
<ip>85.178.119.123</ip>
</contributor>
<comment>/* External links */</comment>
<text xml:space="preserve">'''XML-RPC''' is a [[remote procedure call]] protocol which uses [[XML]] to encode its calls and [[HTTP]] as a transport mechanism. It is a very simple protocol, defining only a handful of data types and commands, and the entire description can be printed on two pages of paper. This is in stark contrast to most RPC systems, where the standards documents often run into the thousands of pages and require considerable [[software]] support in order to be used.
It was first created by [[Dave Winer]] of [[UserLand Software]] in [[1995]] with [[Microsoft]]. However, Microsoft considered it too simple and started adding functionality. After several rounds of this, the standard was no longer so simple and became what is now [[SOAP]].
==Data types==
{| class="wikitable"
!Name
!Tag Example
!Description
|-
|array
|
<array>
<data>
<value><i4>1404</i4></value>
<value><string>Something here</string></value>
<value><i4>1</i4></value>
</data>
</array>
|Array of values, storing no keys
|-
|base64
|<base64>eW91IGNhbid0IHJlYWQgdGhpcyE=</base64>
|[[Base 64]]-encoded binary data
|-
|boolean
|<boolean>1</boolean>
|[[Boolean datatype|Boolean]] logical value (0 or 1)
|-
|date/time
|<dateTime.iso8601>19980717T14:08:55</dateTime.iso8601>
|Date and time
|-
|double
|<double>-12.53</double>
|Double [[precision]] floating number
|-
|integer
|<i4>42</i4>
|Whole number, [[integer]]
|-
|string
|<string>Hello world!</string>
|String of characters. Must follow [[XML]] encoding.
|-
|struct
|
<struct>
<member>
<name>foo</name>
<value><i4>1</i4></value>
</member>
<member>
<name>bar</name>
<value><i4>2</i4></value>
</member>
</struct>
|Array of values, storing keys
|-
|nil
|<nil/>
|Discriminated null value; an XML-RPC [http://ontosys.com/xml-rpc/extensions.php extension]
|}
==Examples==
An example of a typical XML-RPC request would be:
<?xml version="1.0"?>
<methodCall>
<methodName>examples.getStateName</methodName>
<params>
<param>
<value><i4>41</i4></value>
</param>
</params>
</methodCall>
An example of a typical XML-RPC response would be:
<?xml version="1.0"?>
<methodResponse>
<params>
<param>
<value><string>South Dakota</string></value>
</param>
</params>
</methodResponse>
A typical XML-RPC fault would be:
<?xml version="1.0"?>
<methodResponse>
<fault>
<value>
<struct>
<member>
<name>faultCode</name>
<value><int>4</int></value>
</member>
<member>
<name>faultString</name>
<value><string>Too many parameters.</string></value>
</member>
</struct>
</value>
</fault>
</methodResponse>
==See also==
*[[Ajax (programming)]]
*[[Web service]]
*[[Software componentry#Technologies for Software Components|component technologies]]
*[[List of Web service markup languages]]
*[[Comparison of Web service markup languages]]
*[[XML-RPC Implementations]]
== External links ==
* [http://www.xmlrpc.com/ XML-RPC Homepage]
* [http://groups.yahoo.com/group/xml-rpc/ Forum]
* [http://www.xml.com/pub/rg/XML_RPC_Tutorials Tutorials]
* [http://xml.coverpages.org/xml-rpc.html Technology Reports]
* [http://citeseer.org/cs?q=XML+and+RPC Citations from CiteSeer]
* [http://www.jabber.org/jeps/jep-0009.html Jabber-RPC] is XML-RPC over the [[Jabber]] protocol.
* [http://members.fortunecity.com/neptune42/xmlrpc/index.htm Secure Apache XML-RPC]
* [http://www.remobjects.com/ro RemObjects SDK] provides support for XML-RPC, in addition to [[SOAP]] and others.
[[Category:XML-based standards]]
[[Category:Web services]]
[[Category:Inter-process communication]]
[[de:XML-RPC]]
[[fr:XML-RPC]]
[[pl:XML-RPC]]
[[pt:XML-RPC]]
[[ru:XML-RPC]]</text>
</revision>
</page>
<page>
<title>RPC</title>
<id>80851</id>
<revision>
<id>42032592</id>
<timestamp>2006-03-03T09:33:22Z</timestamp>
<contributor>
<ip>213.30.84.69</ip>
</contributor>
<text xml:space="preserve">'''RPC''' can refer to:
* [[Remote procedure call]], a protocol that allows a computer program running on one host to cause code to be executed on another host
* [[Revolutionary Policy Committee]], a faction within the Independent Labour Party, a United Kingdom political party during the 1930s
* [[Rail Passengers Council]], a network established by the Parliament of the United Kingdom to protect and promote the interests of rail passengers throughout Great Britain
* [[Royal Parks Constabulary]], a police force that was responsible for the eight Royal Parks of London and a number of other locations in London, England
* ''Rules of Professional Conduct'', relating to U.S. lawyers' ethical rules, see [[American Bar Association Model Rules of Professional Conduct]]
* ''Regional playback control'', a form of regional lockout implemented on DVDs, see [[DVD region code]]
* ''République Populaire de Chine'', the French name for the [[People's Republic of China]]
* ''Rocket Pod Container'', the interchangeable containers used to transport and launch missiles for use with the [[M270 Multiple Launch Rocket System]]
* ''Resistive plate chamber'', a simple type of [[particle detector]] used in experimental particle physics
* ''Role-playing Council'', an elected party of players of the [[LOTJ|Legend of the Jedi]] [[MUD|multi-user dungeon]] working to enforce the set of rules established to preserve the game as a place where a multitude of people can find enjoyment
* ''Rosetta Plasma Consortium'', a consortium of five sensors[http://www.sp.ph.ic.ac.uk/Rosetta/rpc.html] on board of the [[Rosetta space probe]] that was launched in 2004 intended to study the comet 67P/Churyumov-Gerasimenko
* ''Republican Party Committee'' in the [[U.S. Senate]][http://www.senate.gov/~rpc/]
* The game [[Rock, Paper, Scissors]]
* Rich Photorealistic Content
{{TLAdisambig}}</text>
</revision>
</page>
<page>
<title>Voyager</title>
<id>80852</id>
<revision>
<id>41218361</id>
<timestamp>2006-02-25T21:34:20Z</timestamp>
<contributor>
<username>ApolloCreed</username>
<id>611219</id>
</contributor>
<comment>fixed link to [[Voyager (band)|''Voyager'' (band)]]</comment>
<text xml:space="preserve">{{wiktionarypar|voyager}}
A '''voyager''' is a person or traveller who explores new lands and worlds.
'''Voyager''' may also mean any of the following:
In '''computing''':
* [[Voyager (web browser)]], a web browser for the Amiga range of computers
* [[Voyager (Computer worm)]], a potentially damaging [[computer worm]] affecting [[Oracle database]]s.
In '''electronic and computer music'''
*[http://emfinstitute.emf.org/exhibits/voyager.html Voyager (computer software)], an interactive improvisational computer program by [[George Lewis (trombonist)]]
In '''entertainment'''
* [[Voyager (band)|''Voyager'' (band)]], a British pop-rock band active between 1979 and 1981
* [[Voyager (album)|''Voyager'' (album)]], a music album by [[Mike Oldfield]]
* [[Voyager (library program)]], the book-library program from Endeavour corporation
* [[The Voyager (song)|"The Voyager" (song)]], a song by the group, [[Alphaville (band)|Alphaville]]
* [[The Voyager Company]] was a pioneering multimedia CD-ROM publisher in the 1980s and 1990s
* [[NCR Voyager]], a computer platform from [[NCR Corporation]]
* ''[[Star Trek: Voyager]]'', a TV series produced from 1995 to 2001
* ''[[Earth Star Voyager]]'', a television series pilot that aired on the Wonderful World of Walt Disney in 1988
In '''fiction''':
* [[Voyager (novel)|''Voyager'' (novel)]], a romance novel written by [[Diana Gabaldon]]
* [[Voyager (magazine)|''Voyager'' (magazine)]], a Polish science-fiction magazine
* ''[[Voyagers!]]'', a time travel-based television series broadcast from 1982 to 1983 on NBC
* [[USS Voyager (NCC-74656)|USS ''Voyager'' (NCC-74656)]], an [[Intrepid class starship]] in the [[Star Trek]] fictional universe
* [[Voyager 6]], a fictional ''Voyager class'' NASA spaceprobe from [[Star Trek: The Motion Picture]] which evolved into the being ''[[Vejur]] (from the non-obscured characters on its nameplate, '''V_ger''')''
In '''navies''':
* [[HMAS Voyager|HMAS ''Voyager'']], a destroyer of the [[Royal Australian Navy]]
* [[HMS Voyager (D31)|HMS ''Voyager'' (D31)]], a V-class destroyer of the [[Royal Navy]]
* [[USS Voyager (SP-361)|USS ''Voyager'' (SP-361)]], a motorboat of the [[United States Navy]]
In '''space exploration''':
* ''[[Voyager 1]]'', a spacecraft part of the [[Voyager program]] which launched on [[September 5]], [[1977]]
* ''[[Voyager 2]]'', a spacecraft part of the [[Voyager program]] which launched on [[August 20]], [[1977]]
In '''transport''':
* [[Scaled Composites Voyager]], the first airplane to fly around the world without refueling
* [[VSS Voyager|VSS ''Voyager'']], the proposed second vessel of the [[Virgin Galactic]] suborbital tourism fleet
* [[British Rail Class 220]] (''Voyager'') and British Rail Class 221 (''Super Voyager''), diesel-electric high-speed multiple-unit trains built by Bombardier Transportation for Virgin CrossCountry
* A [[Plymouth Voyager]] or [[Chrysler Voyager]] minivan
==See also==
*[[Voyageur]], the French word for "voyager"
{{disambig}}
[[de:Voyager]]
[[he:וויאג'ר]]
[[hu:Voyager-program]]
[[nl:Voyager]]
[[ja:ボイジャー]]
[[nn:Voyager]]
[[pt:Voyager]]</text>
</revision>
</page>
<page>
<title>Chemical series</title>
<id>80853</id>
<revision>
<id>37791019</id>
<timestamp>2006-02-02T03:59:15Z</timestamp>
<contributor>
<username>Yamamoto Ichiro</username>
<id>224287</id>
</contributor>
<comment>Reversion to revision 31721601 using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
<text xml:space="preserve">A '''chemical series''' is a group of [[chemical element]]s whose physical and chemical characteristics vary progressively from one end of the series to another.
Chemical series were discovered before the creation of the [[periodic table]] of the chemical elements, which was created to try to organise the elements according to their chemical properties.
Several chemical series correspond exactly to [[periodic table group]]s: this is not a coincidence, the physical properties that group them arise from the same [[atomic orbital]] configurations that place them in the same group in the periodic table.
The chemical series of the periodic table are the:
{|
|style="background:#FF6666;"| [[Alkali metal]]s || ([[periodic table group]] 1)
|-
|style="background:#FFDEAD;"| [[Alkaline earth metal]]s || (periodic table group 2)
|-
|style="background:#FFBFFF;"| [[Lanthanide]]s ||
|-
|style="background:#FF99CC;"| [[Actinide]]s ||
|-
|style="background:#FFC0C0;"| [[Transition metal]]s ||
|-
|style="background:#CCCCCC;"| [[Poor metal]]s ||
|-
|style="background:#CCCC99;"| [[Metalloid]]s ||
|-
|style="background:#A0FFA0;"| [[Nonmetal]]s ||
|-
|style="background:#FFFF99;"| [[Halogen]]s || (periodic table group 17)
|-
|style="background:#C0FFFF;"| [[Noble gas]]es || (periodic table group 18)
|-
|}
== See also ==
* [[Chalcogen]]s (periodic table group 16)
* [[Nitrogen_group|Pnictogens]] (periodic group 15)
* [[Coinage metal]] (periodic table group 11)
* [[Noble metal]]
* [[Base metal]]
* [[Platinum group]]
{{PeriodicTablesFooter}} [[Category:Periodic table]]
[[Category:Chemical element groups]]
<!-- interwiki -->
[[af:Chemiese reeks]]
[[ar:سلاسل كيميائية]]
[[de:Serie des Periodensystems]]
[[es:Serie química]]
[[eo:Kemia serio]]
[[fr:Série chimique]]
[[ga:Sraith ceimiceach]]
[[ko:화학 계열]]
[[hr:Kemijska skupina]]
[[it:Serie chimica]]
[[nl:Periodieke tabel, reeks]]
[[ja:元素の分類]]
[[pt:Série química]]
[[ro:Serie chimică]]
[[sv:Kemisk serie]]
[[th:อนุกรมเคมี]]</text>
</revision>
</page>
<page>
<title>Periodic table of the chemical elements</title>
<id>80854</id>
<revision>
<id>15972461</id>
<timestamp>2002-09-05T11:52:09Z</timestamp>
<contributor>
<ip>213.253.40.205</ip>
</contributor>
<comment>#REDIRECT [[Periodic table]]</comment>
<text xml:space="preserve">#REDIRECT [[Periodic table]]</text>
</revision>
</page>
<page>
<title>USAMRIID</title>
<id>80855</id>
<revision>
<id>39816688</id>
<timestamp>2006-02-16T01:32:09Z</timestamp>
<contributor>
<username>Natalinasmpf</username>
<id>107009</id>
</contributor>
<minor />
<comment>fix dr</comment>
<text xml:space="preserve">#REDIRECT [[United States Army Medical Research Institute of Infectious Diseases]]</text>
</revision>
</page>
<page>
<title>Club Deportivo Leganés</title>
<id>80856</id>
<revision>
<id>40456028</id>
<timestamp>2006-02-20T18:11:47Z</timestamp>
<contributor>
<username>Raymond Cruise</username>
<id>260537</id>
</contributor>
<text xml:space="preserve">#REDIRECT [[CD Leganés]]</text>
</revision>
</page>
<page>
<title>Meromorphic function</title>
<id>80857</id>
<revision>
<id>41338479</id>
<timestamp>2006-02-26T18:16:16Z</timestamp>
<contributor>
<username>Ciphergoth</username>
<id>9493</id>
</contributor>
<comment>snap redirect</comment>
<text xml:space="preserve">In [[complex analysis]], a '''meromorphic function''' on an [[open set|open subset]] ''D'' of the [[complex plane]] is a function that is [[holomorphic function|holomorphic]] on all ''D'' ''except'' a set of [[isolated point]]s, which are [[pole (complex analysis)|pole]]s for the function.
Every meromorphic function on ''D'' can be expressed as the ratio between two [[holomorphic function]]s (with the denominator not constant 0) defined on ''D'': the poles then occur at the zeroes of the denominator.
[[Image:Gamma abs.png|thumb|right|The [[Gamma function]] is meromorphic in the whole complex plane]]
Intuitively then, a meromorphic function is a ratio of two nice (holomorphic) functions. Such a function will still be "nice", except at the points where the denominator of the fraction is zero, when the value of the function will be infinite.
From an algebraic point of view, if ''D'' is [[connected set|connected]], then the set of meromorphic functions is the [[field of fractions]] of the [[integral domain]] of the set of holomorphic functions. That is an analogue to <math> \mathbb{Q}</math> and <math> \mathbb{Z}</math>.
==Examples==
* All [[rational function]]s such as
::''f''(''z'') = (''z''<sup>3</sup> &minus; 2''z'' + 1)/(''z''<sup>5</sup> + 3''z'' &minus; 1)
:are meromorphic on the whole complex plane.
*The functions
::''f''(''z'') = exp(''z'')/''z'' and ''f''(''z'') = sin(''z'')/(''z'' &minus; 1)<sup>2</sup>
:as well as the [[gamma function]] and the [[Riemann zeta function]] are meromorphic on the whole complex plane.
* The function
::''f''(''z'') = exp(1/''z'')
: is defined in the whole complex plane except for the origin, 0. However, 0 is not a pole of this function, rather an [[essential singularity]]. Thus, this function is not meromorphic in the whole complex plane. However, it is meromorphic (even holomorphic) on '''C'''\{0}.
* The function ''f''(''z'') = ln(''z'') is not meromorphic on the whole complex plane, as it cannot be defined on the whole complex plane except an isolated set of points.
==Properties==
Since the poles of a meromorphic function are isolated, they are at most [[countable|countably]] many. The set of poles can be infinite, as exemplified by the function
: ''f''(''z'')=1/sin(''z'').
By using [[analytic continuation]] to eliminate [[removable singularity|removable singularities]], meromorphic functions can be added, subtracted, multiplied, and the quotient ''f''/''g'' can be formed unless ''g''(''z'') = 0 on a [[connected component]] of ''D''. Thus, if ''D'' is connected, the meromorphic functions form a [[field (mathematics)|field]], in fact a [[field extension]] of the [[complex numbers]].
In the language of [[Riemann surface]]s, a meromorphic function is the same as a holomorphic function that maps to the [[Riemann sphere]] and which is not constant &infin;. The poles correspond to those complex numbers which are mapped to &infin;.
==References==
* Serge Lang, ''Complex Analysis'', Springer, 2003. ISBN 0387985921.
[[cs:Meromorfní funkce]]
[[fr:Fonction méromorphe]]
[[he:פונקציה מרומורפית]]
[[it:Funzione meromorfa]]
[[sl:Meromorfna funkcija]]
[[Category:Complex analysis]]</text>
</revision>
</page>
<page>
<title>Infectious diseases</title>
<id>80858</id>
<revision>
<id>15972465</id>
<timestamp>2004-03-22T15:03:30Z</timestamp>
<contributor>
<username>Jfdwolff</username>
<id>46555</id>
</contributor>
<text xml:space="preserve">#REDIRECT [[infectious disease]]</text>
</revision>
</page>
<page>
<title>Chunky</title>
<id>80860</id>
<revision>
<id>38531413</id>
<timestamp>2006-02-06T23:19:34Z</timestamp>
<contributor>
<username>Malepheasant</username>
<id>345020</id>
</contributor>
<comment>+[[Chunky (disambiguation)]]</comment>
<text xml:space="preserve">:''This article refers to computer graphics. For other uses of the term, please see [[Chunky (disambiguation)]].
In '''chunky''' or '''packed pixel''' [[frame buffer]] organization, the bits defining each pixel are grouped together. For example, if there are 8-bits per pixel (256 colors), each frame buffer byte defines one pixel.
''See also'': [[Planar]], [[Highcolour]], [[Truecolour]].
[[Category:Computer graphics]]
{{compu-graphics-stub}}</text>
</revision>
</page>
<page>
<title>Liroy</title>
<id>80861</id>
<revision>
<id>40319015</id>
<timestamp>2006-02-19T20:07:08Z</timestamp>
<contributor>
<username>Urthogie</username>
<id>106482</id>
</contributor>
<comment>add category</comment>
<text xml:space="preserve">'''Piotr Marzec''' (b. [[August 12]] [[1971]] in [[Busko Zdrój]], [[Poland]]), better known as '''Liroy''', is a [[hip hop music|hip hop]] [[rapping|rapper]] living in [[Kielce]].
Unlike most other Polish hip hop performers, he achieved commercial success. His CD's include ''East On Da Mic'' (as '''PM Cool Lee'''), ''Albóóm'', ''Bafangoo'' (part 1 & 2), ''Dzień Szakala'' (Jackals Day), ''L'' and ''Bestseller''.
== External links ==
*[http://www2.warsawvoice.pl/old/v566/Cult03.html The Future is Hip Hop] - article from the Warsaw Voice
{{Poland-bio-stub}}
{{hiphop-stub}}
[[Category:1971 births|Liroy]]
[[Category:Living people|Liroy]]
[[Category:Rappers]]
[[Category:Polish musicians|Liroy]]
[[pl:Liroy]]</text>
</revision>
</page>
<page>
<title>Essential singularity</title>
<id>80862</id>
<revision>
<id>24872131</id>
<timestamp>2005-10-06T05:00:45Z</timestamp>
<contributor>
<username>Moxfyre</username>
<id>73576</id>
</contributor>
<text xml:space="preserve">In [[complex analysis]], an '''essential singularity''' of a function is a "severe" [[singularity (mathematics)|singularity]] near which the function exhibits extreme behavior.
Formally, consider an [[open set|open subset]] ''U'' of the [[complex plane]] '''C''', an element ''a'' of ''U'', and a [[holomorphic function]] ''f'' defined on ''U'' - {''a''}. The point ''a'' is called an ''essential singularity'' for ''f'' if it is a singularity which is neither a [[pole (complex analysis)|pole]] nor a [[removable singularity]].
For example, the function ''f''(''z'') = [[exponential function|exp]](1/''z'') has an essential singularity at ''a'' = 0.
The point ''a'' is an essential singularity if and only if the [[limit (mathematics)|limit]]
:<math>\lim_{z\to a}f(z)</math>
does not exist as a complex number nor equals [[infinity]]. This is the case if and only if the [[Laurent series]] of ''f'' at the point ''a'' has infinitely many negative degree terms (the [[principal part]] is an infinite sum).
The behavior of holomorphic functions near essential singularities is described by the [[Weierstrass-Casorati theorem]] and by the considerably stronger [[Picard's great theorem]]. The latter says that in every [[Neighbourhood (mathematics)|neighborhood]] of an essential singularity ''a'', the function ''f'' takes on ''every'' complex value, except possibly one, infinitely often.
[[Category:Complex analysis]]</text>
</revision>
</page>
<page>
<title>Stone Temple Pilots</title>
<id>80864</id>
<revision>
<id>41720408</id>
<timestamp>2006-03-01T07:30:13Z</timestamp>
<contributor>
<username>WesleyDodds</username>
<id>417233</id>
</contributor>
<minor />
<text xml:space="preserve">{{Infobox_band |
band_name = Stone Temple Pilots |
image = [[Image:Stonetemplepilots.jpeg]] |
years_active = [[1990]] &ndash; [[2004]] |
country = [[San Diego, California]], [[United States|USA]] |
status = Unknown |
music_genre = [[Hard rock]], [[Grunge music|Grunge]], [[Alternative rock]] |
record_label = [[Atlantic Records]] |
current_members = [[Scott Weiland]] ([[singing|vocals]])<br>[[Robert DeLeo]] ([[bass guitar]]/vocals)<br>[[Dean DeLeo]] ([[guitar]])<br>[[Eric Kretz]] ([[drums]]) |
}}
'''Stone Temple Pilots''' (abbreviated '''STP''') were a popular [[alternative metal]] band formed in [[1990]], after [[Scott Weiland]] and [[Robert DeLeo]] met at a [[Black Flag (band)|Black Flag]] concert in [[Long Beach, California]] and discovered that they were dating the same woman. They got to know each other, rather than fight over the woman, who eventually fled to [[Texas]]; the two moved into her old San Diego apartment and started playing together. Robert got his brother [[Dean DeLeo]] to join their jamming sessions and also found [[Eric Kretz]], who was then with another band, to play drums.
In [[1990]], going by the name [[Mighty Joe Young (band)|Mighty Joe Young]], they played at [[Whisky A Go-Go|Whisky]] in [[Los Angeles, California]]. In [[1992]], Don Mullen, a booking agent for Triad Artists, saw them perform and led them to [[Atlantic Records]]. On [[April 1]], [[1992]], they signed a contract and began recording tracks with [[Brendan O'Brien]]. During the recording, STP's lawyer called and told them there was a [[blues]] musician who had already claimed the name Mighty Joe Young. They changed the band's name to [[Shirley Temple]] Pussy after seeing the [[STP (motor oil company)|STP Motor Oil Company]] logo, but ended up changing it because of pressure from the record label. Wanting to keep the band's initials, they came up with Stone Temple Pilots. In [[September]] [[1992]], they released their first album, ''[[Core (album)|Core]]'', including the hit songs "Plush", "Creep", "Wicked Garden", and "Sex Type Thing". The critics initially disregarded the group, writing them off as a derivative of [[grunge]] bands such as [[Pearl Jam]], [[Soundgarden]], and [[Alice in Chains]]. After the "Plush" video appeared on [[MTV]], showing the band through a distorted lens, many supposed Scott Weiland and Pearl Jam lead singer [[Eddie Vedder]] were the same person. The still long-haired Vedder reported receiving messages complimenting him on his new short, red hairdo.
In [[1994]], STP released their second album, ''[[Purple (album)|Purple]]'', which debuted at No. 1 and stayed there for three weeks. [[1995]] saw the band take a turn in the wrong direction, when [[Scott Weiland]] got involved with a side music project, [[Magnificent Bastards]], and with [[heroin]]. In May [[1995]], Weiland was arrested for possession of rock cocaine and heroin. Weiland was given one year's probation and during this time the group recorded their next album ''[[Tiny Music... Songs from the Vatican Gift Shop]]''. Although this CD got better reviews than their previous albums, it failed to generate as many sales. Still not having kicked his drug habit, Weiland was ordered by a judge to go into a drug rehabilitation program. Weiland had left the program at Impact House, without notice, but returned the next day. In [[October]] of that year, suggestive pictures of Weiland and [[Courtney Love]] surfaced and, luckily for Weiland, ''[[Hustler]]'' publisher [[Larry Flynt]] refused to publish the pictures. On [[November 4]]th of that year, Weiland was released from the rehab program and STP began touring again in [[Los Angeles, California|Los Angeles]], but again, Weiland went back in rehab, starting rumours that the band was breaking up, which turned out to be untrue.
In [[September]] [[1997]], while STP was on hiatus, Weiland released a solo album, ''[[12 Bar Blues (album)|Twelve Bar Blues]]'', while the remaining members of STP formed the one-time band [[Talk Show (band)|Talk Show]], with former Ten Inch Men singer [[Dave Coutts]]. Neither release did well commercially.
STP soon reunited, releasing ''[[No. 4 (album) | No. 4]]'' in [[1999]]. Shortly after its completion, Weiland was sentenced to a year in a Los Angeles county jail for violating probation.
During the summer of [[2001]], STP released ''[[Shangri-La Dee Da]]''.
On [[November 11]], [[2003]], STP released a CD/DVD entitled ''[[Thank You (Stone Temple Pilots album)|Thank You]]'', a [[greatest hits]] album.
Meanwhile, since [[2002]], [[Scott Weiland]] has formed the hard rock/[[heavy metal]] band [[Velvet Revolver]] with former members of [[Guns N' Roses]], plus [[Dave Kushner]].
Band members (and brothers) [[Robert DeLeo]] and [[Dean DeLeo]] recently announced the formation of a new band "[[Army of Anyone]]" led by [[Filter (band)|Filter]] frontman [[Richard Patrick]].
Eric Kretz currently plays drums in the band Spiralarms.
==Discography==
===Albums===
{| border="2" cellpadding="4" cellspacing="0" style="margin: 1em 1em 1em 0; background: #f9f9f9; border: 1px #aaa solid; border-collapse: collapse; font-size: 95%;"
|-
|'''Date of Release'''
|'''Title'''
|'''Label'''
|'''US Peak Chart Positions'''
|'''US Sales'''
|-
|[[September 29]],[[1992]]
|''[[Core (album)|Core]]''
|Atlantic
|#3
|8,000,000
|-
|[[June 7]],[[1994]]
|''[[Purple (album)|Purple]]''
|Atlantic
|#1
|6,000,000
|-
|[[March 5]],[[1996]]
|''[[Tiny Music... Songs from the Vatican Gift Shop]]''
|Atlantic
|#4
|2,000,000
|-
|[[October 26]],[[1999]]
|''[[No.4 (album)|No.4'']]
|Atlantic
|#6
|1,000,000+
|-
|[[June 19]],[[2001]]
|''[[Shangri -- La Dee Da]]''
|Atlantic
|#9
|500,000
|-
|[[November 11]],[[2003]]
|''[[Thank You (Stone Temple Pilots album)|Thank You'']]
|Atlantic
|#26
|
|}
===Singles===
{| class="wikitable"
!align="center" valign="top" width="50"|Year
!align="left" valign="top"|Song
!align="center" valign="top" width="50"|<small>[[Billboard Hot 100|US Hot 100]]<small>
!align="center" valign="top" width="50"|<small>[[Modern Rock Tracks chart|US Modern Rock]]<small>
!align="center" valign="top" width="50"|<small>[[Mainstream Rock Tracks chart|U.S. Main- stream Rock]]<small>
!align="center" valign="top" width="50"|<small>[[UK singles chart|UK singles]]<small>
!align="left" valign="top"|Album
|-
|align="center" valign="top"|1992
|align="left" valign="top"|"Sex Type Thing"
|align="center" valign="top"|
|align="center" valign="top"|
|align="center" valign="top"|#23
|align="center" valign="top"|
|align="left" valign="top"|''Core''
|-
|align="center" valign="top"|1993
|align="left" valign="top"|"Plush"
|align="center" valign="top"|
|align="center" valign="top"|#9
|align="center" valign="top"|#1
|align="center" valign="top"|#23
|align="left" valign="top"|''Core''
|-
|align="center" valign="top"|1993
|align="left" valign="top"|"Wicked Garden"
|align="center" valign="top"|
|align="center" valign="top"|#21
|align="center" valign="top"|#11
|align="center" valign="top"|
|align="left" valign="top"|''Core''
|-
|align="center" valign="top"|1993
|align="left" valign="top"|"Creep"
|align="center" valign="top"|
|align="center" valign="top"|#12
|align="center" valign="top"|#2
|align="center" valign="top"|
|align="left" valign="top"|''Core''
|-
|align="center" valign="top"|1993
|align="left" valign="top"|"Sin"
|align="center" valign="top"|
|align="center" valign="top"|
|align="center" valign="top"|
|align="center" valign="top"|
|align="left" valign="top"|''Core''
|-
|align="center" valign="top"|1994
|align="left" valign="top"|"Crackerman"
|align="center" valign="top"|
|align="center" valign="top"|
|align="center" valign="top"|
|align="center" valign="top"|
|align="left" valign="top"|''Core''
|-
|align="center" valign="top"|1994
|align="left" valign="top"|"Big Empty"
|align="center" valign="top"|
|align="center" valign="top"|#7
|align="center" valign="top"|#3
|align="center" valign="top"|
|align="left" valign="top"|''Purple''
|-
|align="center" valign="top"|1994
|align="left" valign="top"|"Vasoline"
|align="center" valign="top"|
|align="center" valign="top"|#2
|align="center" valign="top"|#1
|align="center" valign="top"|
|align="left" valign="top"|''Purple''
|-
|align="center" valign="top"|1994
|align="left" valign="top"|"Interstate Love Song"
|align="center" valign="top"|
|align="center" valign="top"|#2
|align="center" valign="top"|#1
|align="center" valign="top"|
|align="left" valign="top"|''Purple''
|-
|align="center" valign="top"|1995
|align="left" valign="top"|"Unglued"
|align="center" valign="top"|
|align="center" valign="top"|#16
|align="center" valign="top"|#8
|align="center" valign="top"|
|align="left" valign="top"|''Purple''
|-
|align="center" valign="top"|1995
|align="left" valign="top"|"Dancing Days"
|align="center" valign="top"|
|align="center" valign="top"|#11
|align="center" valign="top"|#3
|align="center" valign="top"|
|align="left" valign="top"|
|-
|align="center" valign="top"|1996
|align="left" valign="top"|"Big Bang Baby"
|align="center" valign="top"|
|align="center" valign="top"|#2
|align="center" valign="top"|#1
|align="center" valign="top"|
|align="left" valign="top"|''Tiny Music...''
|-
|align="center" valign="top"|1996
|align="left" valign="top"|"Trippin' on a Hole in a Paper Heart"
|align="center" valign="top"|
|align="center" valign="top"|#3
|align="center" valign="top"|#1
|align="center" valign="top"|
|align="left" valign="top"|''Tiny Music...''
|-
|align="center" valign="top"|1996
|align="left" valign="top"|"Lady Picture Show"
|align="center" valign="top"|
|align="center" valign="top"|#6
|align="center" valign="top"|#1
|align="center" valign="top"|
|align="left" valign="top"|''Tiny Music...''
|-
|align="center" valign="top"|1996
|align="left" valign="top"|"Pretty Penny"
|align="center" valign="top"|
|align="center" valign="top"|
|align="center" valign="top"|#12
|align="center" valign="top"|
|align="left" valign="top"|''Tiny Music...''
|-
|align="center" valign="top"|1996
|align="left" valign="top"|"Adhesive"
|align="center" valign="top"|
|align="center" valign="top"|
|align="center" valign="top"|
|align="center" valign="top"|
|align="left" valign="top"|''Tiny Music...''
|-
|align="center" valign="top"|1997
|align="left" valign="top"|"Tumble in the Rough"
|align="center" valign="top"|
|align="center" valign="top"|#36
|align="center" valign="top"|#9
|align="center" valign="top"|
|align="left" valign="top"|''Tiny Music...''
|-
|align="center" valign="top"|1999
|align="left" valign="top"|"Down"
|align="center" valign="top"|
|align="center" valign="top"|#9
|align="center" valign="top"|#5
|align="center" valign="top"|
|align="left" valign="top"|''No. 4''
|-
|align="center" valign="top"|2000
|align="left" valign="top"|"Sour Girl"
|align="center" valign="top"|#78
|align="center" valign="top"|#3
|align="center" valign="top"|#4
|align="center" valign="top"|
|align="left" valign="top"|''No. 4''
|-
|align="center" valign="top"|2000
|align="left" valign="top"|"No Way Out"
|align="center" valign="top"|
|align="center" valign="top"|#24
|align="center" valign="top"|#17
|align="center" valign="top"|
|align="left" valign="top"|''No. 4''
|-
|align="center" valign="top"|2000
|align="left" valign="top"|"Heaven and Hot Rods"
|align="center" valign="top"|
|align="center" valign="top"|#30
|align="center" valign="top"|#17
|align="center" valign="top"|
|align="left" valign="top"|''No. 4''
|-
|align="center" valign="top"|2001
|align="left" valign="top"|"Days of the Week"
|align="center" valign="top"|
|align="center" valign="top"|#5
|align="center" valign="top"|#4
|align="center" valign="top"|
|align="left" valign="top"|''Shangri-La Dee Da''
|-
|align="center" valign="top"|2001
|align="left" valign="top"|"Hollywood Bitch"
|align="center" valign="top"|
|align="center" valign="top"|#29
|align="center" valign="top"|#25
|align="center" valign="top"|
|align="left" valign="top"|''Shangri-La Dee Da''
|-
|align="center" valign="top"|2003
|align="left" valign="top"|"All in the Suit That You Wear"
|align="center" valign="top"|
|align="center" valign="top"|#19
|align="center" valign="top"|#5
|align="center" valign="top"|
|align="left" valign="top"|''Thank You''
|}
==Awards / Nominations==
* Won:[[1993]] | [[MTV Video Music Award for Best New Artist]]
* Nominated:[[1993]] | [[MTV Video Music Award for Best Alternative Video]] (''Plush'')
* Won:[[1994]] | [[American Music Award]] for Favorite Pop/Rock New Artist
* Nominated:[[1994]] | [[MTV Video Music Award for Best Editing]] (''Vasoline'')
* Nominated:[[1995]] | [[American Music Award]] for Favorite Pop/Rock Band/Duo/Group
* Nominated:[[1995]] | [[American Music Award]] for Favorite Heavy Metal/Hard Rock Artist
* Nominated:[[1995]] | [[MTV Video Music Award for Best Group Video]]
* Nominated:[[1995]] | [[MTV Video Music Award for Best Hard Rock Video]] (''Interstate Love Song'')
* Nominated:[[1995]] | [[MTV Video Music Award for Best Alternative Video]] (''Interstate Love Song'')
* Nominated:[[1995]] | [[MTV Video Music Award for Best Cinematography]] (''Interstate Love Song'')
* Nominated:[[1997]] | [[American Music Award]] for Favorite Alternative Artist
* Nominated:[[1997]] | [[American Music Award]] for Favorite Heavy Metal/Hard Rock Artist
* Nominated:[[1997]] | [[Grammy Award for Best Hard Rock Performance]] (''Trippin' On A Hole In A Paper Heart'')
* Nominated:[[2000]] | [[MTV Video Music Award for Best Cinematography]] (music video ''Sour Girl'')
* Nominated:[[2000]] | [[Billboard Music Video Award for Best Modern Rock Clip of the Year]] (music video ''Sour Girl'')
* Nominated:[[2001]] | [[Grammy Award for Best Hard Rock Performance]] ("Down")
==See also==
*[[Velvet Revolver]]
*[[Army Of Anyone]]
*[[List of best-selling music artists]]
==References==
*Erlewine, Stephen Thomas. "[http://www.allmusic.com/cg/amg.dll?p=amg&uid=UIDMISS70404012032413087&sql=Bu78e4j370waw Stone Temple Pilots]". ''[[All Music Guide]]''. Retrieved June 13, 2005.
==External links==
*[http://www.stonetemplepilots.com/ Official Website]
*[http://www.scottweiland.prv.pl Polish Scott Weiland Website]
*[http://www.singingfool.com/play.asp?FROMPLAYLIST=TRUE&List=628964|909279|761931|751244|447714|446293|668192|688883|43316|366360|875816&ShowId=1&PublishedID=688883 STP on Singing Fool (vidz)]
*[http://ubl.artistdirect.com/music/artist/bio/0,,+497903,00.html?artist=Stone+Temple+Pilots Stone Temple Pilots at UBL.com]
*[http://www.blog.lide.cz/rocktimes/ Czech Rock Magazine with Stone Temple Pilots]
*[http://www.belowempty.com/ Unofficial site STP]
[[Category:American musical groups]]
[[Category:Grammy Award Winners]]
[[Category:Grunge groups]]
[[Category:1990s music groups]]
[[de:Stone Temple Pilots]]
[[fr:Stone Temple Pilots]]
[[it:Stone Temple Pilots]]
[[nl:Stone Temple Pilots]]
[[pl:Stone Temple Pilots]]
[[pt:Stone Temple Pilots]]
[[he:סטון טמפל פיילוטס]]</text>
</revision>
</page>
<page>
<title>Occupied Palestinian territories</title>
<id>80866</id>
<revision>
<id>15972473</id>
<timestamp>2005-01-07T14:35:27Z</timestamp>
<contributor>
<username>Uriber</username>
<id>12316</id>
</contributor>
<comment>restore redirect to [[Palestinian territories]]</comment>
<text xml:space="preserve">#REDIRECT [[Palestinian territories]]</text>
</revision>
</page>
<page>
<title>Sam & Max Hit the Road</title>
<id>80867</id>
<revision>
<id>40616504</id>
<timestamp>2006-02-21T21:24:30Z</timestamp>
<contributor>
<ip>71.126.240.51</ip>
</contributor>
<comment>added small addition and changed engine box, I don't think separate versions of SCUMM were used for the floppy and talkie versions</comment>
<text xml:space="preserve">{{Infobox CVG| title = Sam & Max Hit the Road
|image = [[Image:Sam_and_Max_cover.jpg|200px|center|Sam & Max Hit the Road cover art]]
|developer = [[LucasArts]]
|publisher = [[LucasArts]]
|designer = [[Sean Clark]]<br />[[Michael Stemmle]]<br />[[Steve Purcell]]<br />[[Collette Michaud]]
|engine = [[SCUMM]] v6
|released = [[1993]] ([[DOS]])<br />[[1995]] ([[Apple Macintosh|Mac]])
|genre = [[Adventure game|Adventure]]
|modes = [[Single player]]
|ratings = [[ESRB]]: Teen (13+)<br/>[[ELSPA]]: 11+
|platforms = [[DOS]], [[Apple Macintosh|Mac]]
|media = [[Floppy disk#The_3.C2.BD-inch_microfloppy_diskette|3½ inch Floppy]], [[CD-ROM|CD]] (1)
|requirements = 386/33MHz [[Central processing unit|CPU]], 4MB [[Random access memory|RAM]], 256 colour [[Video Graphics Array|VGA]], [[DOS]] 5.0
|input =
}}