
Language lt_LT
===============

``faker.providers.address``
---------------------------

::

	fake.longitude()
	# Decimal('-18.077821')

	fake.building_number()
	# u'0274'

	fake.street_address()
	# u'89888 Kalvelis Greens'

	fake.postalcode_plus4()
	# u'97900-6279'

	fake.city_prefix()
	# u'New'

	fake.military_ship()
	# u'USS'

	fake.city()
	# u'\u0160ar\u016bnasborough'

	fake.zipcode_plus4()
	# u'82133-9103'

	fake.state_abbr()
	# u'WY'

	fake.latitude()
	# Decimal('-69.927939')

	fake.street_suffix()
	# u'Unions'

	fake.city_suffix()
	# u'stad'

	fake.military_dpo()
	# u'Unit 2198 Box 2627'

	fake.country_code(representation="alpha-2")
	# u'PA'

	fake.country()
	# u'Botswana'

	fake.secondary_address()
	# u'Apt. 654'

	fake.geo_coordinate(center=None, radius=0.001)
	# Decimal('-101.900153')

	fake.postalcode()
	# u'52385'

	fake.address()
	# u'2264 \u017demyna Forest Apt. 136\nJuliusstad, KY 89745'

	fake.state()
	# u'Alabama'

	fake.military_state()
	# u'AA'

	fake.street_name()
	# u'Adrija Stravenue'

	fake.zipcode()
	# u'02351'

	fake.postcode()
	# u'58810-6310'

	fake.military_apo()
	# u'PSC 7989, Box 1801'

``faker.providers.automotive``
------------------------------

::

	fake.license_plate()
	# u'08Z 1678'

``faker.providers.bank``
------------------------

::

	fake.bban()
	# 'CVNJ9687385054549'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB72MWNO1314878570868'

``faker.providers.barcode``
---------------------------

::

	fake.ean(length=13)
	# u'1103666202142'

	fake.ean13()
	# u'1273920150653'

	fake.ean8()
	# u'14653773'

``faker.providers.color``
-------------------------

::

	fake.rgb_css_color()
	# u'rgb(112,105,193)'

	fake.color_name()
	# u'PaleVioletRed'

	fake.rgb_color()
	# u'219,232,185'

	fake.safe_hex_color()
	# u'#225500'

	fake.safe_color_name()
	# u'black'

	fake.hex_color()
	# u'#7331e3'

``faker.providers.company``
---------------------------

::

	fake.company()
	# u'Ambrasas Group'

	fake.company_suffix()
	# u'Inc'

	fake.catch_phrase()
	# u'Synergistic bottom-line projection'

	fake.bs()
	# u'enable out-of-the-box convergence'

``faker.providers.credit_card``
-------------------------------

::

	fake.credit_card_security_code(card_type=None)
	# u'1833'

	fake.credit_card_provider(card_type=None)
	# u'Maestro'

	fake.credit_card_full(card_type=None)
	# u'American Express\nOlivija Kalvaitis\n378760104162717 12/25\nCID: 7296\n'

	fake.credit_card_expire(start="now", end="+10y", date_format="%m/%y")
	# '09/26'

	fake.credit_card_number(card_type=None)
	# u'5576300149962299'

``faker.providers.currency``
----------------------------

::

	fake.cryptocurrency_code()
	# 'VTC'

	fake.currency_code()
	# 'GMD'

	fake.currency_name()
	# 'Mauritanian ouguiya'

	fake.cryptocurrency_name()
	# 'BlackCoin'

	fake.cryptocurrency()
	# ('KOI', 'Coinye')

	fake.currency()
	# ('CUP', 'Cuban peso')

``faker.providers.date_time``
-----------------------------

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 8, 22, 21, 54, 46)

	fake.time_series(start_date="-30d", end_date="now", precision=None, distrib=None, tzinfo=None)
	# <generator object time_series at 0xf58eb4b8>

	fake.date_between_dates(date_start=None, date_end=None)
	# datetime.date(2018, 8, 17)

	fake.date_time_between(start_date="-30y", end_date="now", tzinfo=None)
	# datetime.datetime(2012, 3, 23, 9, 42, 17)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2015, 3, 29)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 4, 16, 15, 34)

	fake.past_date(start_date="-30d", tzinfo=None)
	# datetime.date(2018, 8, 1)

	fake.day_of_week()
	# 'Wednesday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2011, 3, 4, 9, 38, 36)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(2015, 10, 26)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2014, 11, 30, 20, 32, 42)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '1993-10-01'

	fake.am_pm()
	# 'AM'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
	# datetime.datetime(2018, 8, 17, 8, 10, 45)

	fake.date_object(end_datetime=None)
	# datetime.date(2007, 12, 7)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2018, 2, 9)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1981-03-01T09:11:44'

	fake.future_date(end_date="+30d", tzinfo=None)
	# datetime.date(2018, 9, 4)

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2014, 12, 3)

	fake.month()
	# '08'

	fake.year()
	# '1973'

	fake.day_of_month()
	# '24'

	fake.unix_time(end_datetime=None, start_datetime=None)
	# 567965584

	fake.timezone()
	# u'America/Port_of_Spain'

	fake.century()
	# u'XV'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(1947, 3, 26)

	fake.time_object(end_datetime=None)
	# datetime.time(11, 28, 4)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 1, 11, 17, 52, 41)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1997, 3, 24, 22, 52, 42)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '21:27:50'

	fake.date_this_month(before_today=True, after_today=False)
	# datetime.date(2018, 8, 11)

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 8, 5, 23, 50, 50)

	fake.month_name()
	# 'May'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1641, 3, 3, 16, 19, 53)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(11533, 32957)

``faker.providers.file``
------------------------

::

	fake.unix_device(prefix=None)
	# u'/dev/xvdq'

	fake.mime_type(category=None)
	# u'image/png'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/tempora/facere.flac'

	fake.unix_partition(prefix=None)
	# u'/dev/xvdr7'

	fake.file_name(category=None, extension=None)
	# u'sit.mp3'

	fake.file_extension(category=None)
	# u'wav'

``faker.providers.internet``
----------------------------

::

	fake.ascii_free_email(*args, **kwargs)
	# 'fposka@yahoo.com'

	fake.image_url(width=None, height=None)
	# u'https://www.lorempixel.com/521/522'

	fake.tld()
	# u'biz'

	fake.email(*args, **kwargs)
	# u'jolanta75@povilonis.com'

	fake.url(schemes=None)
	# u'https://kiska-gailius.org/'

	fake.ipv4_private(network=False, address_class=None)
	# '192.168.46.117'

	fake.user_name(*args, **kwargs)
	# u'zivile85'

	fake.uri_extension()
	# u'.jsp'

	fake.uri_page()
	# u'post'

	fake.free_email_domain(*args, **kwargs)
	# u'hotmail.com'

	fake.safe_email(*args, **kwargs)
	# u'rolandas42@example.com'

	fake.ascii_email(*args, **kwargs)
	# 'vytesakalauskas@gmail.com'

	fake.ipv4_network_class()
	# u'c'

	fake.ipv4_public(network=False, address_class=None)
	# '124.78.49.117'

	fake.ascii_company_email(*args, **kwargs)
	# 'naglis82@zukauskas.biz'

	fake.domain_name(*args, **kwargs)
	# u'sakalauskas.com'

	fake.ipv4(network=False, address_class=None, private=None)
	# '179.144.238.15'

	fake.domain_word(*args, **kwargs)
	# u'naujokas'

	fake.slug(*args, **kwargs)
	# u'rem-nemo-deserunt'

	fake.uri_path(deep=None)
	# u'app'

	fake.company_email(*args, **kwargs)
	# u'rutaginzburgas@gailius-vsiliauskas.org'

	fake.uri()
	# u'https://pocius.com/app/search/privacy/'

	fake.ipv6(network=False)
	# 'd637:2502:3f4b:e251:7bea:3cdd:a5d9:18c0'

	fake.free_email(*args, **kwargs)
	# u'povilonismartynas@yahoo.com'

	fake.ascii_safe_email(*args, **kwargs)
	# 'arvydasgronskis@example.com'

	fake.mac_address()
	# u'cc:db:5f:4a:19:49'

``faker.providers.isbn``
------------------------

::

	fake.isbn10(separator="-")
	# u'1-292-28050-6'

	fake.isbn13(separator="-")
	# u'978-1-193-67784-2'

``faker.providers.job``
-----------------------

::

	fake.job()
	# 'Public relations officer'

``faker.providers.lorem``
-------------------------

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Ratione eos sequi. Explicabo quia voluptates mollitia quia incidunt non. Facere facilis odit provident repellendus dolorem minima. Aliquid excepturi dolorem id numquam at suscipit.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Autem praesentium unde officiis vitae et aut. Impedit consequuntur fuga harum.',
	#     u'Aspernatur animi fuga iure ipsa ullam. Voluptatem corporis possimus necessitatibus eos quia. Nemo suscipit odit illo quae. Amet rem itaque totam.',
	#     u'Deleniti quibusdam accusamus officiis praesentium fugit corporis. Sed cumque cum sit expedita expedita. Illo aliquam optio quas quod.']

	fake.words(nb=3, ext_word_list=None)
	# [u'repudiandae', u'reiciendis', u'dolore']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Suscipit est sed tenetur sunt.',
	#     u'Ducimus quos a possimus.',
	#     u'Possimus eius voluptas id in fugiat assumenda.']

	fake.word(ext_word_list=None)
	# u'et'

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Ex molestias fugiat odit. Voluptatem nostrum nostrum fuga consequatur libero.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Earum ducimus debitis modi provident quaerat nostrum.'

``faker.providers.misc``
------------------------

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'47wgALaf**'

	fake.locale()
	# u'mr_IN'

	fake.binary(length=1048576)
	# bytearray(b'\xd3\xae\xd7\xbb\xf7\xdf\x16\x1e\xd5\x83\x7fc\xe6\xb7m\x9e\xeb\xd6\\K\xb0\x9fNeW\x9e?\xe7X\xc6\xeeU\x7f\xf4q\xa8Y\xa3\xdflz8\x8f\x82v\'Z4_\x90\xb4\xaf\x83\xb4\'\xb9rn\x0f&\xf4_~\xef\xa9Dkp2A"\x02\x9d\x8a.W\x8a\xe7\x0f\x90\x18\x1e\xa8\xc6q\x15\x8a\x85Q\x04\xf1U\xbf\xf8\xbc4~w\x1c\x15\x03\xd6\xbb\x1e0\xb1\x19\xb4F\xc0\xfb\xa5S\x1fU\x06\xbf\xb8],\xe2n>\xe5V\xab\xcc\xd8"\xd6\xf1\x1d\xc6Sd\xac\x182\xd77\xba:\xdb\xb2\x1aFR~2\x8ac\x1d\xceQ\xd1C\xcb\xaa\x7f}\x95\x01s\xc4\xd6\x0cQ\xbf\x1dz\xd0\x15Y\x89-6\xb2\x80{\x9b\x83\x03X%\x03\x91R\xbf\xbc\x97e3n\x07jl\x06\x9eW\xd4\xdd\x1aE\xa4{Q\t\xb7\xffr3\xc0}\xf3\xec\x17=7\x1af<\xdd\xe6\x8c\x96\x95+C\x0cS\xffs\xeb>\xe9\xa5Fdje\xbb\x06[\xb5p\xbd\x93r\xfe|\\).\xe9\xd9\x81\xa8*\xde\x17\x19._\xa4\x95\x9c\x9c\xed\xb5&\xe4V\xc9\x0c\xc4\x8d\xfc\xf7\xff\xaa\xe3\xa0\x03l0\xd68\xe1\x87w\x9cm\xec\x11\xa8\xed\xa3\x90\xa4\x83\xf1\xb8S\x01\x19\x9a\xb26\x95\xf7\x8e^e\xe4\xc50\xef\x02\xb5\xbd\x84"r\xde.\xab \xa7\xe4\x8f,e\x1cqF\xfcW\x03r-\xa4\xf5&\xee{\xbf\x85|\xaa\xab\xd9\x9f\xe5Z\xac\x0e\x14\xbc\xdc#\xb8\xf2\xaf\xf3\x86\xa71\x8e\x96\x00\xc2\xe9\x9ef\xf9\xdc_#hV\xbc\xbces\x8c\x01`\x8a;\xbf(o\xcfn*\xb8[%R\x9c\xdc\x8e\x98I\xf9\xc7\xc8f\xccHYuy\xdd|Xf!\x8f\x92\xa53\xd6\xe1|\x8a\x00\xe8o$u\x04\x0e\xa3\xa9\xcc"Do\xdeDKUR\xa2_\x02\x16\x879\x11E\xdd{C&\x18\x01\x97\xc3L\x1aU\xab\x8b\x0f\x00\xc9\xd2\xe1O\xfc\xf3)\xd4b\x91\x19\x1d#\xc56\xf0\xd2\x90[\xe3\x92\xf8J\xa4\xef\xf1L\xaekV\xe0\xe3c\xcc\xec\x11x\xf15\xaf\xfd\x8f\t\x8a\x85\xfd\x9c\xa9p\xbd3Ray\xaa\xdf\x02\x7f\xd6\xf2\x88\x93$\xa0\xf4\xb1\x8d\xc8kA\x9efs6\xd0\x868;\xb2\xac\x12\x84g\x8c\x03.\xeaC!\x04\xbdK\xf2\x80\x84\xd2\x89W\xf2a\xcb\x80\xb8\x95/\x11\xf52yr\xb4\xc0\xfa\x8aM\xc6x<K\xf8S\xad\xc1U;ia\xbd\x86$`\x1c\\\xaa<\xd4\x9ay\xfb\xc7\x989\x89\x91\x0ff\xde\x06\x91\xcaN\xa3w\x16\xb6\x90\xc0D\x81\x8b\xaa\xc8H\xb9\x11\x82\xb9B\x12I\xea\x8d5\xfd\x99Qt\x8e\x95,\xc5\xe3L{\x8f\x80\xfe\x16Qeu\x9aZ\xf5u%\x80\xc1\xa9\xb2\x94^<\\\xef\xb0\xb2`R!\xde\xff&\x8f]\xad\xea\x84:\xcb\xbc\xb2(\xd4\xa5\xbcx\x94\x03\xd9\x9f\x18\x82\xef\t\x11\x14\x80\x19C\xf7i\x9b8\xc639\x16\x81\\\x8a4\x8as\x8f\xa9*Q\xd7\x06m\xe1\xac\x19\x06\xd6%@kpS6\x98`\x91\xfbR\xc6\xfc\xa7M\xb3\xdf\x9a\xa1\x91\xdc\\\x0e\x96\xaa\xd2\xfev\x19}P5\x0cf\x902\xa3|\xdf)\xd8\xf3\xa1\xe6\xef\xbc\x9f\xb7\x18\x1b\xee\xc3\xeb.\xc7\x0cF\xd3\xff|U\'\x95\xe5\xe2s\xde\x92\xe7\x93\x9c\xd0ko\xf1\xa7\xbc\xa9\t\x08}k_\x97\xf36\x9f\xa5\xb4G\xbf\xe3{\x90bs|AE\xfe_m\xad\xe3h\x172R\x1a\xc9\x8d\xc9\xc9\x9b:\x97\x1c\xf9\xbb\xff\xf6I#~\xdf\xa4|\xa4\x066D^0\x90 I\x92\x80\x82\xc3c\xbe\x16\xe2\x98\x8du\x7f~c=\t\xe0\x18\x8f\x1c}\xbf\xa3\xe3\xfci\xc9\xbf\x03\x9f\xaf\xbfkj\xb3G\x16sO/R\xe9\xf1\xd1:\x92\xde\xfd\xf1\xc3U\x86\xd2\xa0\x18t\xf6\x10\x841\x9eIT\xa4\xed\xcc\x93],\xd97\x7f~ \xab\xe0\x15\x02\xbd\xe9{s+\x9f\xd8\x8dT\x8eK>q\x02\xb0\x15\x994\x1a\xc3\xe5Z\x83\xecF\xd5P\xb9\x91\xd0CN}\xc1\xc4\xde\x02\x97[>"\xf8A\xee\xb4\x83y\xc2A\xfd\x00_\xd2\xf6k\x83\xf9V\x85\xef\x00\xea/\xd1},"\x0b\xfd\xf4T\x0fQ \xaa\x1f\r')

	fake.md5(raw_output=False)
	# '196bec8594767662ff59f7a35d24867e'

	fake.sha1(raw_output=False)
	# '5868549615f3f8d00522d0c4fbf65b8e80013389'

	fake.null_boolean()
	# False

	fake.sha256(raw_output=False)
	# '7a045e1593e0227ad82fe5b04083835884f6afe530c2276ec01f49747803ec3c'

	fake.uuid4()
	# '34ebb52f-913c-c120-0cfe-55888613db7e'

	fake.language_code()
	# u'os'

	fake.boolean(chance_of_getting_true=50)
	# True

``faker.providers.person``
--------------------------

::

	fake.last_name_male()
	# u'\u017dukauskas'

	fake.name_female()
	# u'Akelis, Tadas'

	fake.prefix_male()
	# u''

	fake.prefix()
	# u''

	fake.name()
	# u'Rugil\u0117 \u017dukauskas'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Rita Kavaliauskas'

	fake.first_name()
	# u'Andrius'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Domas'

	fake.first_name_female()
	# u'Nedas'

	fake.last_name_female()
	# u'Kaupas'

	fake.last_name()
	# u'Kaupas'

	fake.prefix_female()
	# u''

``faker.providers.phone_number``
--------------------------------

::

	fake.phone_number()
	# u'+(370) 73122169'

	fake.msisdn()
	# '4451885298297'

``faker.providers.profile``
---------------------------

::

	fake.simple_profile(sex=None)
	# {   'address': u'809 Gailys Pines\nEast Povilasberg, AR 36970',
	#     'birthdate': datetime.date(1948, 4, 23),
	#     'mail': u'zukauskasamelija@yahoo.com',
	#     'name': u'Tadas Gai\u017eauskas',
	#     'sex': 'M',
	#     'username': u'ginzburgasrugile'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'1829 L\u0117ja Square Suite 944\n\u017dukauskasfurt, MA 08927',
	#     'birthdate': datetime.date(1940, 7, 11),
	#     'blood_group': '0-',
	#     'company': u'Gronskis-\u017dukauskas',
	#     'current_location': (Decimal('-20.544726'), Decimal('175.212745')),
	#     'job': 'Herpetologist',
	#     'mail': u'jakelis@gmail.com',
	#     'name': u'Eimantas Paulauskas',
	#     'residence': u'63443 Orestas Ports\nWest Domantasside, WV 41909',
	#     'sex': 'F',
	#     'ssn': u'166-52-9481',
	#     'username': u'paulauskasagne',
	#     'website': [   u'http://nagys.com/',
	#                    u'https://www.galdikas-vsiliauskas.info/',
	#                    u'http://gaiciunas-pocius.com/',
	#                    u'http://www.paulauskas.com/']}

``faker.providers.python``
--------------------------

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   3563,
	#     u'https://www.gronskis.net/category.jsp',
	#     u'VHyuSMmFyeqovBVahSBk',
	#     u'OyQQevwWdMlkuCIaijYh',
	#     u'https://www.akelis.com/categories/homepage/',
	#     u'pbzCeASpIjTJOoxcvWbS',
	#     u'GBcvvPHFbMWJVkBLwsVL',
	#     6447,
	#     u'RAqDQaekDVIwnkbrIfjv',
	#     u'pUpyHTFYOsPGwlkxsQeg',
	#     u'https://www.sakalauskas.org/login.htm')

	fake.pystr(min_chars=None, max_chars=20)
	# u'kXUwumvGlIyzxdtfoSoL'

	fake.pystruct(count=10, *value_types)
	# (   [   u'RhiwHpMkppxLfgTTieJk',
	#         u'BioZxlmdorTunihbUgxG',
	#         u'NgAHKxVAzuoTdSeWLcEB',
	#         4763,
	#         u'http://urbonas.org/login/',
	#         datetime.datetime(1972, 12, 24, 0, 44, 54),
	#         6548,
	#         u'https://www.kavaliauskas-jankauskas.com/',
	#         u'kazlauskasjurgita@gmail.com',
	#         26730.39639],
	#     {   u'ab': u'dQRqGhfczIeNkjNkNvMv',
	#         u'adipisci': u'https://www.poska.com/search/posts/homepage.asp',
	#         u'aliquam': Decimal('580806455896'),
	#         u'animi': datetime.datetime(1977, 10, 28, 15, 51, 40),
	#         u'est': u'xddGIMLuvrMNDuFPHqEU',
	#         u'facere': u'YSxVulRrtlNCELUzKlUV',
	#         u'nam': u'https://www.kazlauskas.com/search/',
	#         u'nihil': datetime.datetime(1985, 5, 28, 23, 5, 58),
	#         u'pariatur': datetime.datetime(2013, 11, 22, 7, 57, 6),
	#         u'rerum': Decimal('-3.81351623583')},
	#     {   u'a': {   9: datetime.datetime(2017, 2, 21, 19, 22, 19),
	#                   10: [   u'DBEuoKBMwDGogVoeTOhG',
	#                           u'https://www.stankevicius.com/search/',
	#                           datetime.datetime(2016, 11, 21, 16, 21, 58)],
	#                   11: {   9: Decimal('4.48978110528'),
	#                           10: 1687,
	#                           11: [   u'ZufNoYlhWTuyadhRxIzz',
	#                                   u'http://kalvaitis.info/terms.htm']}},
	#         u'consectetur': {   0: u'fqcyifeKHfNToPaLvqMY',
	#                             1: [   datetime.datetime(1978, 5, 11, 21, 0, 5),
	#                                    u'wZehPBCQCcdtdvBVVADH',
	#                                    Decimal('-7468471658.66')],
	#                             2: {   0: u'AgntGnNGANFdnZsucRRc',
	#                                    1: 3410,
	#                                    2: [   u'JLBwOntTpBbucXqtccRN',
	#                                           u'PeUvaiRbSJSVcUluvJrV']}},
	#         u'inventore': {   5: Decimal('-8.21498852081E+12'),
	#                           6: [   u'yUAIVgfZegHQxrRLjKZn',
	#                                  u'nagyslaurynas@petrauskas.com',
	#                                  u'https://nagys.com/tags/main/main/'],
	#                           7: {   5: 5793,
	#                                  6: Decimal('37299318.0'),
	#                                  7: [   u'http://www.gailius.info/about/',
	#                                         5509]}},
	#         u'molestiae': {   3: Decimal('-7.17077623232E+14'),
	#                           4: [   datetime.datetime(1984, 3, 25, 11, 43, 12),
	#                                  3518,
	#                                  u'RJRPnwzYlHkfgffCbqxL'],
	#                           5: {   3: u'FsTHrUzlFRUASmxLoYac',
	#                                  4: datetime.datetime(2016, 9, 14, 8, 4, 21),
	#                                  5: [   6907,
	#                                         u'https://www.jankauskas-paulauskas.com/about.jsp']}},
	#         u'mollitia': {   4: u'hxSYfsqpYmOFeVLvFeXh',
	#                          5: [   u'pidAnShKIbVNqLMTOjSA',
	#                                 u'YbQDdIdWYPRwqWkgdZlw',
	#                                 634.2649032004],
	#                          6: {   4: datetime.datetime(2014, 2, 25, 13, 37, 2),
	#                                 5: 533,
	#                                 6: [   u'https://www.gagys-kiska.com/search/',
	#                                        966]}},
	#         u'occaecati': {   7: u'ugVqcVAmCbXRlSqVIDUQ',
	#                           8: [   u'zoUuZuokLNGCjltpSyWW',
	#                                  u'hfYVnKPOXgbedyjIwCwJ',
	#                                  381.7],
	#                           9: {   7: u'NquhIWtDZdBBUPJgsnPH',
	#                                  8: Decimal('4.71747243835E+14'),
	#                                  9: [   datetime.datetime(1992, 2, 25, 14, 37, 21),
	#                                         u'lirnqxreufOGnYKypwVy']}},
	#         u'quod': {   2: u'RSIfEMJXtbrPTpiVImsr',
	#                      3: [   u'http://nauseda.info/',
	#                             datetime.datetime(1977, 8, 9, 22, 26, 4),
	#                             4891],
	#                      4: {   2: 764213.0,
	#                             3: u'euSHzCGhrjHymFKtYwmv',
	#                             4: [u'yoxaHXwrXemGYhVzofGd', 3010]}},
	#         u'rerum': {   8: Decimal('2.56581719778'),
	#                       9: [   u'fJFpdNgbkIPzJiOsqvkW',
	#                              u'CBMPCxoJjbpmvmMHafdO',
	#                              3626],
	#                       10: {   8: u'pJVZOLwBllzZAGptQAZS',
	#                               9: datetime.datetime(2009, 12, 25, 0, 52, 6),
	#                               10: [u'dhmxjoJYnbzreRTRNdxJ', 70904300757.5]}},
	#         u'sunt': {   1: u'BsTGTxrniJbgIJHaIFJK',
	#                      2: [   u'spovilonis@kazlauskas.com',
	#                             7796,
	#                             u'https://www.naujokas.net/'],
	#                      3: {   1: u'tkiska@gmail.com',
	#                             2: 1539,
	#                             3: [   u'HNljSxQbLHtbhcZDrkVZ',
	#                                    u'TJjTRhFLdeKnmZzgIKZj']}},
	#         u'vitae': {   6: u'zzukauskas@gintalas-galdikas.com',
	#                       7: [   datetime.datetime(2002, 1, 14, 6, 8, 1),
	#                              u'kUBOklhrKnKQvPXuBSRk',
	#                              u'qMmCkHMQFmVguDpWWmOc'],
	#                       8: {   6: datetime.datetime(2006, 1, 31, 14, 42, 13),
	#                              7: u'https://www.petrauskas-narusis.info/blog/search/blog/register/',
	#                              8: [u'tLgNoPhRWjupKzGIjqmO', 897]}}})

	fake.pyfloat(left_digits=None, right_digits=None, positive=False)
	# 3870837.11779722

	fake.pydecimal(left_digits=None, right_digits=None, positive=False)
	# Decimal('-571328381077')

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'ritazukauskas@gmail.com',
	#     u'https://kiska.biz/',
	#     u'HJIkQJjmpetMvxNjCAKo',
	#     532,
	#     3064,
	#     u'SHpvYJSglCZEnxPUZWUK',
	#     datetime.datetime(1986, 1, 6, 19, 11, 18),
	#     319,
	#     datetime.datetime(1992, 12, 28, 0, 30, 42),
	#     3094,
	#     datetime.datetime(2015, 5, 28, 23, 21, 43),
	#     u'lSibxmEVjxzMAIPAnoXM',
	#     u'AneMMDtnKMFQAKaxyKja']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'robertas11@hotmail.com',
	#     u'http://www.gintalas-povilonis.com/search/',
	#     75447796164.301,
	#     Decimal('-9888367.464'),
	#     u'owfUuZoICDStOXDMjaOr',
	#     Decimal('42.191063965'),
	#     433,
	#     u'ZsdQYIXCfnUvqdHSVQOd',
	#     u'galdikassimonas@gmail.com',
	#     u'FMSvRvxAUfcVIWgnRBNs',
	#     datetime.datetime(2018, 1, 28, 23, 59, 54))

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'opvXYmNkwjXobRhpzuYq', u'qiKXNgKiMyBgVTvjUdxC', u'UrmuSIORUvYKzUBFCKQR', u'flxobmhpstLzupjdwYqD', u'https://www.povilonis-gailius.com/main/homepage.html', 8877, u'UwzJSdNsGdxqNsmlmsPX', u'CpFMxPPWCpBAfvmYzVaQ', 102943012570173.0, u'lUmJBxbYPAbQqcchknui'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'aperiam': u'sxQkqWOjmbmtAskuNOOx',
	#     u'ex': u'ANUiOxfohGDAjYBYqXNT',
	#     u'fugiat': 8338,
	#     u'occaecati': 76.79868820071,
	#     u'perspiciatis': 2122,
	#     u'ratione': u'llfucqezUESSmaRsrAvr',
	#     u'recusandae': u'FnTanytAqDEiaHmVqfgO',
	#     u'voluptas': 1178}

	fake.pyint()
	# 4438

``faker.providers.ssn``
-----------------------

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'813-73-1532'

	fake.ein()
	# u'34-2723462'

	fake.itin()
	# u'978-96-0013'

``faker.providers.user_agent``
------------------------------

::

	fake.mac_processor()
	# u'U; Intel'

	fake.firefox()
	# u'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_10_0; rv:1.9.2.20) Gecko/2018-04-11 09:56:23 Firefox/3.8'

	fake.linux_platform_token()
	# u'X11; Linux i686'

	fake.opera()
	# u'Opera/8.44.(Windows 95; vi-VN) Presto/2.9.190 Version/10.00'

	fake.windows_platform_token()
	# u'Windows 95'

	fake.internet_explorer()
	# u'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 5.2; Trident/3.1)'

	fake.user_agent()
	# u'Mozilla/5.0 (X11; Linux i686) AppleWebKit/5342 (KHTML, like Gecko) Chrome/15.0.809.0 Safari/5342'

	fake.linux_processor()
	# u'i686'

	fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
	# u'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5320 (KHTML, like Gecko) Chrome/56.0.884.0 Safari/5320'

	fake.mac_platform_token()
	# u'Macintosh; PPC Mac OS X 10_11_4'

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_3 like Mac OS X; mag-IN) AppleWebKit/531.43.7 (KHTML, like Gecko) Version/3.0.5 Mobile/8B114 Safari/6531.43.7'
