reality 0.0.5 → 0.1.0.alpha
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/README.md +6 -217
- data/lib/reality.rb +25 -16
- data/lib/reality/coord.rb +27 -0
- data/lib/reality/currency.rb +17 -0
- data/lib/reality/date.rb +9 -0
- data/lib/reality/describers.rb +34 -0
- data/lib/reality/describers/abstract/base.rb +45 -0
- data/lib/reality/describers/abstract/media_wiki.rb +71 -0
- data/lib/reality/describers/open_street_map.rb +156 -0
- data/lib/reality/describers/open_weather_map.rb +92 -0
- data/lib/reality/describers/wikidata.rb +142 -0
- data/lib/reality/describers/wikidata/actions.rb +2556 -0
- data/lib/reality/describers/wikidata/actions/abusefiltercheckmatch.rb +55 -0
- data/lib/reality/describers/wikidata/actions/abusefilterchecksyntax.rb +31 -0
- data/lib/reality/describers/wikidata/actions/abusefilterevalexpression.rb +31 -0
- data/lib/reality/describers/wikidata/actions/abusefilterunblockautopromote.rb +39 -0
- data/lib/reality/describers/wikidata/actions/aggregategroups.rb +76 -0
- data/lib/reality/describers/wikidata/actions/antispoof.rb +31 -0
- data/lib/reality/describers/wikidata/actions/base.rb +351 -0
- data/lib/reality/describers/wikidata/actions/block.rb +132 -0
- data/lib/reality/describers/wikidata/actions/bouncehandler.rb +31 -0
- data/lib/reality/describers/wikidata/actions/categorytree.rb +39 -0
- data/lib/reality/describers/wikidata/actions/centralauthtoken.rb +25 -0
- data/lib/reality/describers/wikidata/actions/centralnoticechoicedata.rb +39 -0
- data/lib/reality/describers/wikidata/actions/centralnoticequerycampaign.rb +31 -0
- data/lib/reality/describers/wikidata/actions/changeauthenticationdata.rb +39 -0
- data/lib/reality/describers/wikidata/actions/checktoken.rb +52 -0
- data/lib/reality/describers/wikidata/actions/cirrus-config-dump.rb +25 -0
- data/lib/reality/describers/wikidata/actions/cirrus-mapping-dump.rb +25 -0
- data/lib/reality/describers/wikidata/actions/cirrus-settings-dump.rb +25 -0
- data/lib/reality/describers/wikidata/actions/clearhasmsg.rb +25 -0
- data/lib/reality/describers/wikidata/actions/clientlogin.rb +86 -0
- data/lib/reality/describers/wikidata/actions/compare.rb +71 -0
- data/lib/reality/describers/wikidata/actions/createaccount.rb +86 -0
- data/lib/reality/describers/wikidata/actions/cspreport.rb +38 -0
- data/lib/reality/describers/wikidata/actions/delete.rb +103 -0
- data/lib/reality/describers/wikidata/actions/deleteglobalaccount.rb +47 -0
- data/lib/reality/describers/wikidata/actions/echomarkread.rb +77 -0
- data/lib/reality/describers/wikidata/actions/echomarkseen.rb +57 -0
- data/lib/reality/describers/wikidata/actions/edit.rb +266 -0
- data/lib/reality/describers/wikidata/actions/editmassmessagelist.rb +65 -0
- data/lib/reality/describers/wikidata/actions/emailuser.rb +62 -0
- data/lib/reality/describers/wikidata/actions/expandtemplates.rb +129 -0
- data/lib/reality/describers/wikidata/actions/fancycaptchareload.rb +25 -0
- data/lib/reality/describers/wikidata/actions/featuredfeed.rb +57 -0
- data/lib/reality/describers/wikidata/actions/feedcontributions.rb +121 -0
- data/lib/reality/describers/wikidata/actions/feedrecentchanges.rb +159 -0
- data/lib/reality/describers/wikidata/actions/feedwatchlist.rb +108 -0
- data/lib/reality/describers/wikidata/actions/filerevert.rb +55 -0
- data/lib/reality/describers/wikidata/actions/flow-parsoid-utils.rb +73 -0
- data/lib/reality/describers/wikidata/actions/flow.rb +72 -0
- data/lib/reality/describers/wikidata/actions/flowthank.rb +39 -0
- data/lib/reality/describers/wikidata/actions/globalblock.rb +76 -0
- data/lib/reality/describers/wikidata/actions/globaluserrights.rb +94 -0
- data/lib/reality/describers/wikidata/actions/graph.rb +47 -0
- data/lib/reality/describers/wikidata/actions/groupreview.rb +55 -0
- data/lib/reality/describers/wikidata/actions/help.rb +64 -0
- data/lib/reality/describers/wikidata/actions/imagerotate.rb +25 -0
- data/lib/reality/describers/wikidata/actions/import.rb +116 -0
- data/lib/reality/describers/wikidata/actions/jsonconfig.rb +60 -0
- data/lib/reality/describers/wikidata/actions/jsondata.rb +31 -0
- data/lib/reality/describers/wikidata/actions/languagesearch.rb +39 -0
- data/lib/reality/describers/wikidata/actions/linkaccount.rb +79 -0
- data/lib/reality/describers/wikidata/actions/login.rb +55 -0
- data/lib/reality/describers/wikidata/actions/logout.rb +25 -0
- data/lib/reality/describers/wikidata/actions/managetags.rb +80 -0
- data/lib/reality/describers/wikidata/actions/massmessage.rb +55 -0
- data/lib/reality/describers/wikidata/actions/mergehistory.rb +79 -0
- data/lib/reality/describers/wikidata/actions/mobileview.rb +170 -0
- data/lib/reality/describers/wikidata/actions/move.rb +131 -0
- data/lib/reality/describers/wikidata/actions/oathvalidate.rb +47 -0
- data/lib/reality/describers/wikidata/actions/opensearch.rb +92 -0
- data/lib/reality/describers/wikidata/actions/options.rb +80 -0
- data/lib/reality/describers/wikidata/actions/paraminfo.rb +91 -0
- data/lib/reality/describers/wikidata/actions/parse.rb +294 -0
- data/lib/reality/describers/wikidata/actions/parsoid-batch.rb +31 -0
- data/lib/reality/describers/wikidata/actions/patrol.rb +60 -0
- data/lib/reality/describers/wikidata/actions/protect.rb +121 -0
- data/lib/reality/describers/wikidata/actions/purge.rb +152 -0
- data/lib/reality/describers/wikidata/actions/query.rb +317 -0
- data/lib/reality/describers/wikidata/actions/removeauthenticationdata.rb +39 -0
- data/lib/reality/describers/wikidata/actions/resetpassword.rb +47 -0
- data/lib/reality/describers/wikidata/actions/revisiondelete.rb +125 -0
- data/lib/reality/describers/wikidata/actions/rollback.rb +96 -0
- data/lib/reality/describers/wikidata/actions/rsd.rb +25 -0
- data/lib/reality/describers/wikidata/actions/sanitize-mapdata.rb +39 -0
- data/lib/reality/describers/wikidata/actions/scribunto-console.rb +62 -0
- data/lib/reality/describers/wikidata/actions/searchtranslations.rb +113 -0
- data/lib/reality/describers/wikidata/actions/setglobalaccountstatus.rb +81 -0
- data/lib/reality/describers/wikidata/actions/setnotificationtimestamp.rb +177 -0
- data/lib/reality/describers/wikidata/actions/setpagelanguage.rb +81 -0
- data/lib/reality/describers/wikidata/actions/shortenurl.rb +31 -0
- data/lib/reality/describers/wikidata/actions/sitematrix.rb +91 -0
- data/lib/reality/describers/wikidata/actions/spamblacklist.rb +36 -0
- data/lib/reality/describers/wikidata/actions/stashedit.rb +113 -0
- data/lib/reality/describers/wikidata/actions/strikevote.rb +60 -0
- data/lib/reality/describers/wikidata/actions/tag.rb +117 -0
- data/lib/reality/describers/wikidata/actions/templatedata.rb +145 -0
- data/lib/reality/describers/wikidata/actions/thank.rb +47 -0
- data/lib/reality/describers/wikidata/actions/titleblacklist.rb +51 -0
- data/lib/reality/describers/wikidata/actions/tokens.rb +36 -0
- data/lib/reality/describers/wikidata/actions/transcodereset.rb +47 -0
- data/lib/reality/describers/wikidata/actions/translatesandbox.rb +81 -0
- data/lib/reality/describers/wikidata/actions/translationaids.rb +52 -0
- data/lib/reality/describers/wikidata/actions/translationreview.rb +39 -0
- data/lib/reality/describers/wikidata/actions/translationstash.rb +76 -0
- data/lib/reality/describers/wikidata/actions/ttmserver.rb +60 -0
- data/lib/reality/describers/wikidata/actions/ulslocalization.rb +31 -0
- data/lib/reality/describers/wikidata/actions/unblock.rb +76 -0
- data/lib/reality/describers/wikidata/actions/undelete.rb +99 -0
- data/lib/reality/describers/wikidata/actions/unlinkaccount.rb +39 -0
- data/lib/reality/describers/wikidata/actions/upload.rb +172 -0
- data/lib/reality/describers/wikidata/actions/userrights.rb +107 -0
- data/lib/reality/describers/wikidata/actions/validatepassword.rb +55 -0
- data/lib/reality/describers/wikidata/actions/visualeditor.rb +96 -0
- data/lib/reality/describers/wikidata/actions/visualeditoredit.rb +164 -0
- data/lib/reality/describers/wikidata/actions/watch.rb +161 -0
- data/lib/reality/describers/wikidata/actions/wbavailablebadges.rb +25 -0
- data/lib/reality/describers/wikidata/actions/wbcheckconstraints.rb +62 -0
- data/lib/reality/describers/wikidata/actions/wbcreateclaim.rb +91 -0
- data/lib/reality/describers/wikidata/actions/wbcreateredirect.rb +54 -0
- data/lib/reality/describers/wikidata/actions/wbeditentity.rb +111 -0
- data/lib/reality/describers/wikidata/actions/wbformatvalue.rb +73 -0
- data/lib/reality/describers/wikidata/actions/wbgetclaims.rb +73 -0
- data/lib/reality/describers/wikidata/actions/wbgetentities.rb +128 -0
- data/lib/reality/describers/wikidata/actions/wblinktitles.rb +80 -0
- data/lib/reality/describers/wikidata/actions/wbmergeitems.rb +75 -0
- data/lib/reality/describers/wikidata/actions/wbparsevalue.rb +77 -0
- data/lib/reality/describers/wikidata/actions/wbremoveclaims.rb +67 -0
- data/lib/reality/describers/wikidata/actions/wbremovequalifiers.rb +75 -0
- data/lib/reality/describers/wikidata/actions/wbremovereferences.rb +75 -0
- data/lib/reality/describers/wikidata/actions/wbsearchentities.rb +80 -0
- data/lib/reality/describers/wikidata/actions/wbsetaliases.rb +148 -0
- data/lib/reality/describers/wikidata/actions/wbsetclaim.rb +70 -0
- data/lib/reality/describers/wikidata/actions/wbsetclaimvalue.rb +83 -0
- data/lib/reality/describers/wikidata/actions/wbsetdescription.rb +117 -0
- data/lib/reality/describers/wikidata/actions/wbsetlabel.rb +117 -0
- data/lib/reality/describers/wikidata/actions/wbsetqualifier.rb +99 -0
- data/lib/reality/describers/wikidata/actions/wbsetreference.rb +94 -0
- data/lib/reality/describers/wikidata/actions/wbsetsitelink.rb +130 -0
- data/lib/reality/describers/wikidata/actions/wbsgetsuggestions.rb +94 -0
- data/lib/reality/describers/wikidata/actions/webapp-manifest.rb +25 -0
- data/lib/reality/describers/wikidata/api.rb +80 -0
- data/lib/reality/describers/wikidata/client.rb +61 -0
- data/lib/reality/describers/wikidata/labels_cache.rb +93 -0
- data/lib/reality/describers/wikidata/modules/abusefilters.rb +85 -0
- data/lib/reality/describers/wikidata/modules/abuselog.rb +101 -0
- data/lib/reality/describers/wikidata/modules/allcategories.rb +104 -0
- data/lib/reality/describers/wikidata/modules/alldeletedrevisions.rb +213 -0
- data/lib/reality/describers/wikidata/modules/allfileusages.rb +95 -0
- data/lib/reality/describers/wikidata/modules/allimages.rb +183 -0
- data/lib/reality/describers/wikidata/modules/alllinks.rb +108 -0
- data/lib/reality/describers/wikidata/modules/allmessages.rb +143 -0
- data/lib/reality/describers/wikidata/modules/allpages.rb +182 -0
- data/lib/reality/describers/wikidata/modules/allredirects.rb +108 -0
- data/lib/reality/describers/wikidata/modules/allrevisions.rb +181 -0
- data/lib/reality/describers/wikidata/modules/alltransclusions.rb +108 -0
- data/lib/reality/describers/wikidata/modules/allusers.rb +141 -0
- data/lib/reality/describers/wikidata/modules/authmanagerinfo.rb +63 -0
- data/lib/reality/describers/wikidata/modules/babel.rb +30 -0
- data/lib/reality/describers/wikidata/modules/backlinks.rb +100 -0
- data/lib/reality/describers/wikidata/modules/betafeatures.rb +30 -0
- data/lib/reality/describers/wikidata/modules/blocks.rb +127 -0
- data/lib/reality/describers/wikidata/modules/categories.rb +90 -0
- data/lib/reality/describers/wikidata/modules/categoryinfo.rb +30 -0
- data/lib/reality/describers/wikidata/modules/categorymembers.rb +183 -0
- data/lib/reality/describers/wikidata/modules/centralnoticelogs.rb +70 -0
- data/lib/reality/describers/wikidata/modules/checkuser.rb +83 -0
- data/lib/reality/describers/wikidata/modules/checkuserlog.rb +83 -0
- data/lib/reality/describers/wikidata/modules/close-open-topic.rb +51 -0
- data/lib/reality/describers/wikidata/modules/contributors.rb +90 -0
- data/lib/reality/describers/wikidata/modules/coordinates.rb +80 -0
- data/lib/reality/describers/wikidata/modules/deletedrevisions.rb +169 -0
- data/lib/reality/describers/wikidata/modules/deletedrevs.rb +148 -0
- data/lib/reality/describers/wikidata/modules/duplicatefiles.rb +58 -0
- data/lib/reality/describers/wikidata/modules/edit-header.rb +59 -0
- data/lib/reality/describers/wikidata/modules/edit-post.rb +67 -0
- data/lib/reality/describers/wikidata/modules/edit-title.rb +46 -0
- data/lib/reality/describers/wikidata/modules/edit-topic-summary.rb +59 -0
- data/lib/reality/describers/wikidata/modules/embeddedin.rb +93 -0
- data/lib/reality/describers/wikidata/modules/extlinks.rb +66 -0
- data/lib/reality/describers/wikidata/modules/extracts.rb +81 -0
- data/lib/reality/describers/wikidata/modules/exturlusage.rb +92 -0
- data/lib/reality/describers/wikidata/modules/featureusage.rb +59 -0
- data/lib/reality/describers/wikidata/modules/filearchive.rb +104 -0
- data/lib/reality/describers/wikidata/modules/filerepoinfo.rb +35 -0
- data/lib/reality/describers/wikidata/modules/fileusage.rb +77 -0
- data/lib/reality/describers/wikidata/modules/flowinfo.rb +22 -0
- data/lib/reality/describers/wikidata/modules/g-allcategories.rb +91 -0
- data/lib/reality/describers/wikidata/modules/g-alldeletedrevisions.rb +200 -0
- data/lib/reality/describers/wikidata/modules/g-allfileusages.rb +82 -0
- data/lib/reality/describers/wikidata/modules/g-allimages.rb +170 -0
- data/lib/reality/describers/wikidata/modules/g-alllinks.rb +95 -0
- data/lib/reality/describers/wikidata/modules/g-allpages.rb +182 -0
- data/lib/reality/describers/wikidata/modules/g-allredirects.rb +95 -0
- data/lib/reality/describers/wikidata/modules/g-allrevisions.rb +168 -0
- data/lib/reality/describers/wikidata/modules/g-alltransclusions.rb +95 -0
- data/lib/reality/describers/wikidata/modules/g-backlinks.rb +100 -0
- data/lib/reality/describers/wikidata/modules/g-categories.rb +77 -0
- data/lib/reality/describers/wikidata/modules/g-categorymembers.rb +170 -0
- data/lib/reality/describers/wikidata/modules/g-deletedrevisions.rb +156 -0
- data/lib/reality/describers/wikidata/modules/g-duplicatefiles.rb +58 -0
- data/lib/reality/describers/wikidata/modules/g-embeddedin.rb +93 -0
- data/lib/reality/describers/wikidata/modules/g-exturlusage.rb +79 -0
- data/lib/reality/describers/wikidata/modules/g-fileusage.rb +64 -0
- data/lib/reality/describers/wikidata/modules/g-geosearch.rb +116 -0
- data/lib/reality/describers/wikidata/modules/g-images.rb +64 -0
- data/lib/reality/describers/wikidata/modules/g-imageusage.rb +100 -0
- data/lib/reality/describers/wikidata/modules/g-iwbacklinks.rb +67 -0
- data/lib/reality/describers/wikidata/modules/g-langbacklinks.rb +67 -0
- data/lib/reality/describers/wikidata/modules/g-links.rb +77 -0
- data/lib/reality/describers/wikidata/modules/g-linkshere.rb +64 -0
- data/lib/reality/describers/wikidata/modules/g-messagecollection.rb +67 -0
- data/lib/reality/describers/wikidata/modules/g-mostviewed.rb +51 -0
- data/lib/reality/describers/wikidata/modules/g-pageswithprop.rb +59 -0
- data/lib/reality/describers/wikidata/modules/g-prefixsearch.rb +59 -0
- data/lib/reality/describers/wikidata/modules/g-protectedtitles.rb +93 -0
- data/lib/reality/describers/wikidata/modules/g-querypage.rb +51 -0
- data/lib/reality/describers/wikidata/modules/g-random.rb +71 -0
- data/lib/reality/describers/wikidata/modules/g-recentchanges.rb +157 -0
- data/lib/reality/describers/wikidata/modules/g-redirects.rb +64 -0
- data/lib/reality/describers/wikidata/modules/g-revisions.rb +185 -0
- data/lib/reality/describers/wikidata/modules/g-search.rb +112 -0
- data/lib/reality/describers/wikidata/modules/g-templates.rb +77 -0
- data/lib/reality/describers/wikidata/modules/g-transcludedin.rb +64 -0
- data/lib/reality/describers/wikidata/modules/g-watchlist.rb +145 -0
- data/lib/reality/describers/wikidata/modules/g-watchlistraw.rb +109 -0
- data/lib/reality/describers/wikidata/modules/g-wblistentityusage.rb +64 -0
- data/lib/reality/describers/wikidata/modules/g-wbsearch.rb +71 -0
- data/lib/reality/describers/wikidata/modules/gadgetcategories.rb +48 -0
- data/lib/reality/describers/wikidata/modules/gadgets.rb +75 -0
- data/lib/reality/describers/wikidata/modules/geosearch.rb +129 -0
- data/lib/reality/describers/wikidata/modules/globalallusers.rb +106 -0
- data/lib/reality/describers/wikidata/modules/globalblocks.rb +106 -0
- data/lib/reality/describers/wikidata/modules/globalgroups.rb +35 -0
- data/lib/reality/describers/wikidata/modules/globalusage.rb +58 -0
- data/lib/reality/describers/wikidata/modules/globaluserinfo.rb +43 -0
- data/lib/reality/describers/wikidata/modules/imageinfo.rb +142 -0
- data/lib/reality/describers/wikidata/modules/images.rb +64 -0
- data/lib/reality/describers/wikidata/modules/imageusage.rb +100 -0
- data/lib/reality/describers/wikidata/modules/info.rb +69 -0
- data/lib/reality/describers/wikidata/modules/iwbacklinks.rb +80 -0
- data/lib/reality/describers/wikidata/modules/iwlinks.rb +87 -0
- data/lib/reality/describers/wikidata/modules/json.rb +57 -0
- data/lib/reality/describers/wikidata/modules/jsonfm.rb +64 -0
- data/lib/reality/describers/wikidata/modules/langbacklinks.rb +80 -0
- data/lib/reality/describers/wikidata/modules/langlinks.rb +95 -0
- data/lib/reality/describers/wikidata/modules/languagestats.rb +46 -0
- data/lib/reality/describers/wikidata/modules/links.rb +77 -0
- data/lib/reality/describers/wikidata/modules/linkshere.rb +77 -0
- data/lib/reality/describers/wikidata/modules/lock-topic.rb +51 -0
- data/lib/reality/describers/wikidata/modules/logevents.rb +151 -0
- data/lib/reality/describers/wikidata/modules/mapdata.rb +46 -0
- data/lib/reality/describers/wikidata/modules/messagecollection.rb +80 -0
- data/lib/reality/describers/wikidata/modules/messagegroups.rb +85 -0
- data/lib/reality/describers/wikidata/modules/messagegroupstats.rb +46 -0
- data/lib/reality/describers/wikidata/modules/messagetranslations.rb +38 -0
- data/lib/reality/describers/wikidata/modules/mmsites.rb +30 -0
- data/lib/reality/describers/wikidata/modules/moderate-post.rb +59 -0
- data/lib/reality/describers/wikidata/modules/moderate-topic.rb +51 -0
- data/lib/reality/describers/wikidata/modules/mostviewed.rb +51 -0
- data/lib/reality/describers/wikidata/modules/mystashedfiles.rb +51 -0
- data/lib/reality/describers/wikidata/modules/new-topic.rb +59 -0
- data/lib/reality/describers/wikidata/modules/none.rb +22 -0
- data/lib/reality/describers/wikidata/modules/notifications.rb +174 -0
- data/lib/reality/describers/wikidata/modules/oath.rb +30 -0
- data/lib/reality/describers/wikidata/modules/ores.rb +22 -0
- data/lib/reality/describers/wikidata/modules/pageimages.rb +72 -0
- data/lib/reality/describers/wikidata/modules/pagepropnames.rb +38 -0
- data/lib/reality/describers/wikidata/modules/pageprops.rb +43 -0
- data/lib/reality/describers/wikidata/modules/pageswithprop.rb +72 -0
- data/lib/reality/describers/wikidata/modules/pageterms.rb +43 -0
- data/lib/reality/describers/wikidata/modules/pageviews.rb +51 -0
- data/lib/reality/describers/wikidata/modules/php.rb +35 -0
- data/lib/reality/describers/wikidata/modules/phpfm.rb +42 -0
- data/lib/reality/describers/wikidata/modules/prefixsearch.rb +59 -0
- data/lib/reality/describers/wikidata/modules/protectedtitles.rb +106 -0
- data/lib/reality/describers/wikidata/modules/querypage.rb +51 -0
- data/lib/reality/describers/wikidata/modules/random.rb +71 -0
- data/lib/reality/describers/wikidata/modules/rawfm.rb +29 -0
- data/lib/reality/describers/wikidata/modules/recentchanges.rb +170 -0
- data/lib/reality/describers/wikidata/modules/redirects.rb +77 -0
- data/lib/reality/describers/wikidata/modules/references.rb +30 -0
- data/lib/reality/describers/wikidata/modules/reply.rb +59 -0
- data/lib/reality/describers/wikidata/modules/revisions.rb +198 -0
- data/lib/reality/describers/wikidata/modules/search.rb +125 -0
- data/lib/reality/describers/wikidata/modules/siteinfo.rb +70 -0
- data/lib/reality/describers/wikidata/modules/siteviews.rb +43 -0
- data/lib/reality/describers/wikidata/modules/stashimageinfo.rb +85 -0
- data/lib/reality/describers/wikidata/modules/tags.rb +51 -0
- data/lib/reality/describers/wikidata/modules/templates.rb +77 -0
- data/lib/reality/describers/wikidata/modules/tokens.rb +35 -0
- data/lib/reality/describers/wikidata/modules/transcludedin.rb +77 -0
- data/lib/reality/describers/wikidata/modules/transcodestatus.rb +22 -0
- data/lib/reality/describers/wikidata/modules/undo-edit-header.rb +38 -0
- data/lib/reality/describers/wikidata/modules/undo-edit-post.rb +38 -0
- data/lib/reality/describers/wikidata/modules/undo-edit-topic-summary.rb +38 -0
- data/lib/reality/describers/wikidata/modules/unreadnotificationpages.rb +50 -0
- data/lib/reality/describers/wikidata/modules/usercontribs.rb +155 -0
- data/lib/reality/describers/wikidata/modules/userinfo.rb +43 -0
- data/lib/reality/describers/wikidata/modules/users.rb +82 -0
- data/lib/reality/describers/wikidata/modules/videoinfo.rb +143 -0
- data/lib/reality/describers/wikidata/modules/view-header.rb +43 -0
- data/lib/reality/describers/wikidata/modules/view-post-history.rb +43 -0
- data/lib/reality/describers/wikidata/modules/view-post.rb +43 -0
- data/lib/reality/describers/wikidata/modules/view-topic-history.rb +35 -0
- data/lib/reality/describers/wikidata/modules/view-topic-summary.rb +43 -0
- data/lib/reality/describers/wikidata/modules/view-topic.rb +35 -0
- data/lib/reality/describers/wikidata/modules/view-topiclist.rb +106 -0
- data/lib/reality/describers/wikidata/modules/watchlist.rb +158 -0
- data/lib/reality/describers/wikidata/modules/watchlistraw.rb +122 -0
- data/lib/reality/describers/wikidata/modules/wbentityusage.rb +77 -0
- data/lib/reality/describers/wikidata/modules/wblistentityusage.rb +77 -0
- data/lib/reality/describers/wikidata/modules/wbsearch.rb +71 -0
- data/lib/reality/describers/wikidata/modules/wbsubscribers.rb +64 -0
- data/lib/reality/describers/wikidata/modules/wikibase.rb +35 -0
- data/lib/reality/describers/wikidata/modules/wikisets.rb +58 -0
- data/lib/reality/describers/wikidata/modules/xml.rb +37 -0
- data/lib/reality/describers/wikidata/modules/xmlfm.rb +44 -0
- data/lib/reality/describers/wikidata/parsers.rb +67 -0
- data/lib/reality/describers/wikidata/response.rb +122 -0
- data/lib/reality/describers/wikidata/sparql.rb +89 -0
- data/lib/reality/describers/wikidata/units.rb +25 -0
- data/lib/reality/describers/wikimedia_commons.rb +41 -0
- data/lib/reality/describers/wikipedia.rb +79 -0
- data/lib/reality/describers/wikipedia/name_joiner.rb +57 -0
- data/lib/reality/describers/wikipedia/parsers.rb +120 -0
- data/lib/reality/describers/wikipedia/simplifier.rb +107 -0
- data/lib/reality/describers/wikipedia/templates.rb +53 -0
- data/lib/reality/describers/wikivoyage.rb +114 -0
- data/lib/reality/describers/worldbank.rb +38 -0
- data/lib/reality/describers/worldbank/api.rb +65 -0
- data/lib/reality/entity.rb +41 -310
- data/lib/reality/link.rb +51 -0
- data/lib/reality/measure.rb +28 -9
- data/lib/reality/miracles.rb +53 -0
- data/lib/reality/{names.rb → miracles/names.rb} +0 -0
- data/lib/reality/observation.rb +34 -0
- data/lib/reality/query.rb +28 -0
- data/lib/reality/setup.rb +16 -0
- data/lib/reality/util.rb +30 -0
- data/lib/reality/util/description.rb +24 -0
- data/lib/reality/util/formatters.rb +1 -1
- data/lib/reality/{refinements.rb → util/refinements.rb} +0 -6
- data/lib/reality/version.rb +4 -3
- data/reality.gemspec +10 -9
- data/script/extract_wikidata_units.rb +52 -0
- data/script/out/predicates.txt +2446 -0
- data/script/out/units.txt +2446 -0
- data/script/out/units/Q1003344.yml +204 -0
- data/script/out/units/Q1005349.yml +97 -0
- data/script/out/units/Q1005712.yml +118 -0
- data/script/out/units/Q100995.yml +743 -0
- data/script/out/units/Q1022113.yml +431 -0
- data/script/out/units/Q102416.yml +832 -0
- data/script/out/units/Q1025337.yml +78 -0
- data/script/out/units/Q102573.yml +665 -0
- data/script/out/units/Q10261894.yml +114 -0
- data/script/out/units/Q10261896.yml +129 -0
- data/script/out/units/Q1030848.yml +265 -0
- data/script/out/units/Q10317923.yml +168 -0
- data/script/out/units/Q1031920.yml +85 -0
- data/script/out/units/Q103246.yml +654 -0
- data/script/out/units/Q1032866.yml +257 -0
- data/script/out/units/Q1033067.yml +56 -0
- data/script/out/units/Q1033697.yml +94 -0
- data/script/out/units/Q103510.yml +568 -0
- data/script/out/units/Q10366257.yml +149 -0
- data/script/out/units/Q10380431.yml +100 -0
- data/script/out/units/Q1040401.yml +84 -0
- data/script/out/units/Q1040427.yml +84 -0
- data/script/out/units/Q1042866.yml +170 -0
- data/script/out/units/Q1044698.yml +34 -0
- data/script/out/units/Q1047040.yml +251 -0
- data/script/out/units/Q1048969.yml +131 -0
- data/script/out/units/Q1049848.yml +158 -0
- data/script/out/units/Q1049963.yml +185 -0
- data/script/out/units/Q1050958.yml +177 -0
- data/script/out/units/Q1051453.yml +323 -0
- data/script/out/units/Q1051665.yml +336 -0
- data/script/out/units/Q1051746.yml +34 -0
- data/script/out/units/Q1051913.yml +38 -0
- data/script/out/units/Q1052397.yml +234 -0
- data/script/out/units/Q10528257.yml +217 -0
- data/script/out/units/Q1052833.yml +133 -0
- data/script/out/units/Q1054140.yml +296 -0
- data/script/out/units/Q10543042.yml +181 -0
- data/script/out/units/Q10544228.yml +38 -0
- data/script/out/units/Q1054918.yml +50 -0
- data/script/out/units/Q1056845.yml +117 -0
- data/script/out/units/Q1057069.yml +173 -0
- data/script/out/units/Q1058120.yml +303 -0
- data/script/out/units/Q1062008.yml +109 -0
- data/script/out/units/Q1062478.yml +95 -0
- data/script/out/units/Q1062500.yml +99 -0
- data/script/out/units/Q1063029.yml +247 -0
- data/script/out/units/Q1063756.yml +249 -0
- data/script/out/units/Q1063786.yml +358 -0
- data/script/out/units/Q1065153.yml +200 -0
- data/script/out/units/Q1066138.yml +133 -0
- data/script/out/units/Q106720.yml +439 -0
- data/script/out/units/Q1067722.yml +120 -0
- data/script/out/units/Q1068088.yml +286 -0
- data/script/out/units/Q107205.yml +568 -0
- data/script/out/units/Q1072248.yml +132 -0
- data/script/out/units/Q1072404.yml +188 -0
- data/script/out/units/Q1073004.yml +49 -0
- data/script/out/units/Q1073812.yml +274 -0
- data/script/out/units/Q107428.yml +591 -0
- data/script/out/units/Q10748296.yml +42 -0
- data/script/out/units/Q1076245.yml +38 -0
- data/script/out/units/Q1076725.yml +88 -0
- data/script/out/units/Q1076762.yml +234 -0
- data/script/out/units/Q1078168.yml +54 -0
- data/script/out/units/Q1080207.yml +357 -0
- data/script/out/units/Q108256.yml +356 -0
- data/script/out/units/Q1083662.yml +279 -0
- data/script/out/units/Q10839915.yml +113 -0
- data/script/out/units/Q108468.yml +498 -0
- data/script/out/units/Q108474.yml +512 -0
- data/script/out/units/Q108478.yml +530 -0
- data/script/out/units/Q108483.yml +526 -0
- data/script/out/units/Q108529.yml +534 -0
- data/script/out/units/Q10859155.yml +54 -0
- data/script/out/units/Q10862179.yml +177 -0
- data/script/out/units/Q1089123.yml +147 -0
- data/script/out/units/Q1089613.yml +210 -0
- data/script/out/units/Q1089625.yml +219 -0
- data/script/out/units/Q1091059.yml +194 -0
- data/script/out/units/Q1091257.yml +162 -0
- data/script/out/units/Q1092296.yml +129 -0
- data/script/out/units/Q1095649.yml +80 -0
- data/script/out/units/Q1101932.yml +312 -0
- data/script/out/units/Q1102701.yml +49 -0
- data/script/out/units/Q11034997.yml +149 -0
- data/script/out/units/Q1104069.yml +763 -0
- data/script/out/units/Q110547.yml +34 -0
- data/script/out/units/Q110791.yml +502 -0
- data/script/out/units/Q110796.yml +494 -0
- data/script/out/units/Q110807.yml +486 -0
- data/script/out/units/Q110817.yml +498 -0
- data/script/out/units/Q110823.yml +496 -0
- data/script/out/units/Q110827.yml +518 -0
- data/script/out/units/Q11123.yml +571 -0
- data/script/out/units/Q11137119.yml +34 -0
- data/script/out/units/Q11138882.yml +46 -0
- data/script/out/units/Q11220294.yml +132 -0
- data/script/out/units/Q11229.yml +603 -0
- data/script/out/units/Q11247037.yml +133 -0
- data/script/out/units/Q1127799.yml +197 -0
- data/script/out/units/Q1129721.yml +38 -0
- data/script/out/units/Q1130620.yml +239 -0
- data/script/out/units/Q1131112.yml +64 -0
- data/script/out/units/Q1131140.yml +120 -0
- data/script/out/units/Q1131660.yml +461 -0
- data/script/out/units/Q1133606.yml +409 -0
- data/script/out/units/Q1133947.yml +122 -0
- data/script/out/units/Q1133952.yml +126 -0
- data/script/out/units/Q11348804.yml +64 -0
- data/script/out/units/Q1135840.yml +201 -0
- data/script/out/units/Q1135984.yml +121 -0
- data/script/out/units/Q11362550.yml +77 -0
- data/script/out/units/Q1136666.yml +42 -0
- data/script/out/units/Q1137258.yml +74 -0
- data/script/out/units/Q1137675.yml +227 -0
- data/script/out/units/Q1139143.yml +113 -0
- data/script/out/units/Q1140080.yml +149 -0
- data/script/out/units/Q1140444.yml +194 -0
- data/script/out/units/Q1140577.yml +198 -0
- data/script/out/units/Q11410513.yml +34 -0
- data/script/out/units/Q1141128.yml +103 -0
- data/script/out/units/Q1141362.yml +207 -0
- data/script/out/units/Q1144098.yml +93 -0
- data/script/out/units/Q1144104.yml +108 -0
- data/script/out/units/Q1144127.yml +93 -0
- data/script/out/units/Q1144293.yml +93 -0
- data/script/out/units/Q1146944.yml +140 -0
- data/script/out/units/Q114784.yml +118 -0
- data/script/out/units/Q1148329.yml +190 -0
- data/script/out/units/Q1152074.yml +194 -0
- data/script/out/units/Q1152139.yml +92 -0
- data/script/out/units/Q1152169.yml +124 -0
- data/script/out/units/Q1152192.yml +93 -0
- data/script/out/units/Q1152205.yml +93 -0
- data/script/out/units/Q1152323.yml +198 -0
- data/script/out/units/Q1153426.yml +101 -0
- data/script/out/units/Q1155470.yml +251 -0
- data/script/out/units/Q11570.yml +1537 -0
- data/script/out/units/Q11573.yml +1741 -0
- data/script/out/units/Q11574.yml +1337 -0
- data/script/out/units/Q11579.yml +1020 -0
- data/script/out/units/Q11582.yml +1112 -0
- data/script/out/units/Q1165264.yml +122 -0
- data/script/out/units/Q1165588.yml +310 -0
- data/script/out/units/Q1165639.yml +92 -0
- data/script/out/units/Q1165725.yml +200 -0
- data/script/out/units/Q1165799.yml +267 -0
- data/script/out/units/Q11664412.yml +104 -0
- data/script/out/units/Q1166886.yml +97 -0
- data/script/out/units/Q1167009.yml +84 -0
- data/script/out/units/Q1172583.yml +415 -0
- data/script/out/units/Q1173645.yml +104 -0
- data/script/out/units/Q11759.yml +890 -0
- data/script/out/units/Q11761.yml +995 -0
- data/script/out/units/Q11764.yml +1094 -0
- data/script/out/units/Q11774492.yml +46 -0
- data/script/out/units/Q11776930.yml +224 -0
- data/script/out/units/Q117812.yml +372 -0
- data/script/out/units/Q11784897.yml +64 -0
- data/script/out/units/Q1179385.yml +282 -0
- data/script/out/units/Q1181471.yml +132 -0
- data/script/out/units/Q1185752.yml +83 -0
- data/script/out/units/Q118881.yml +152 -0
- data/script/out/units/Q1189842.yml +192 -0
- data/script/out/units/Q11905096.yml +50 -0
- data/script/out/units/Q11925390.yml +213 -0
- data/script/out/units/Q11929860.yml +139 -0
- data/script/out/units/Q11931933.yml +34 -0
- data/script/out/units/Q1193446.yml +173 -0
- data/script/out/units/Q1194225.yml +249 -0
- data/script/out/units/Q11945111.yml +61 -0
- data/script/out/units/Q1194580.yml +198 -0
- data/script/out/units/Q1194852.yml +89 -0
- data/script/out/units/Q1195111.yml +190 -0
- data/script/out/units/Q1196722.yml +216 -0
- data/script/out/units/Q1196837.yml +190 -0
- data/script/out/units/Q1196846.yml +194 -0
- data/script/out/units/Q1197459.yml +212 -0
- data/script/out/units/Q11982705.yml +168 -0
- data/script/out/units/Q11989494.yml +102 -0
- data/script/out/units/Q12011178.yml +108 -0
- data/script/out/units/Q12046947.yml +47 -0
- data/script/out/units/Q12048372.yml +46 -0
- data/script/out/units/Q1204894.yml +194 -0
- data/script/out/units/Q12058596.yml +38 -0
- data/script/out/units/Q12122300.yml +114 -0
- data/script/out/units/Q12129.yml +1040 -0
- data/script/out/units/Q1225449.yml +189 -0
- data/script/out/units/Q1228632.yml +105 -0
- data/script/out/units/Q122922.yml +474 -0
- data/script/out/units/Q1230524.yml +68 -0
- data/script/out/units/Q1231751.yml +121 -0
- data/script/out/units/Q123213.yml +2327 -0
- data/script/out/units/Q1234467.yml +101 -0
- data/script/out/units/Q12352771.yml +34 -0
- data/script/out/units/Q1236188.yml +49 -0
- data/script/out/units/Q124003.yml +528 -0
- data/script/out/units/Q12413678.yml +46 -0
- data/script/out/units/Q12416649.yml +46 -0
- data/script/out/units/Q1242244.yml +127 -0
- data/script/out/units/Q12438.yml +903 -0
- data/script/out/units/Q12458939.yml +38 -0
- data/script/out/units/Q1246307.yml +239 -0
- data/script/out/units/Q1247300.yml +140 -0
- data/script/out/units/Q1249059.yml +153 -0
- data/script/out/units/Q1249084.yml +255 -0
- data/script/out/units/Q1249093.yml +153 -0
- data/script/out/units/Q1250769.yml +38 -0
- data/script/out/units/Q1254363.yml +64 -0
- data/script/out/units/Q1255620.yml +130 -0
- data/script/out/units/Q125999.yml +453 -0
- data/script/out/units/Q12619.yml +115 -0
- data/script/out/units/Q1266877.yml +134 -0
- data/script/out/units/Q1267081.yml +159 -0
- data/script/out/units/Q1267676.yml +276 -0
- data/script/out/units/Q1269724.yml +105 -0
- data/script/out/units/Q127441.yml +212 -0
- data/script/out/units/Q1275499.yml +187 -0
- data/script/out/units/Q12783919.yml +116 -0
- data/script/out/units/Q1281888.yml +45 -0
- data/script/out/units/Q12827327.yml +162 -0
- data/script/out/units/Q12874593.yml +273 -0
- data/script/out/units/Q128822.yml +558 -0
- data/script/out/units/Q129983.yml +459 -0
- data/script/out/units/Q130253.yml +632 -0
- data/script/out/units/Q13035094.yml +214 -0
- data/script/out/units/Q130498.yml +487 -0
- data/script/out/units/Q1307473.yml +3017 -0
- data/script/out/units/Q130964.yml +645 -0
- data/script/out/units/Q131016.yml +604 -0
- data/script/out/units/Q131255.yml +742 -0
- data/script/out/units/Q131309.yml +538 -0
- data/script/out/units/Q13147228.yml +167 -0
- data/script/out/units/Q131473.yml +449 -0
- data/script/out/units/Q131645.yml +621 -0
- data/script/out/units/Q131723.yml +3233 -0
- data/script/out/units/Q1322380.yml +196 -0
- data/script/out/units/Q1322918.yml +158 -0
- data/script/out/units/Q1323237.yml +218 -0
- data/script/out/units/Q1323382.yml +169 -0
- data/script/out/units/Q1323615.yml +574 -0
- data/script/out/units/Q132643.yml +496 -0
- data/script/out/units/Q1328525.yml +105 -0
- data/script/out/units/Q1328829.yml +183 -0
- data/script/out/units/Q1329465.yml +184 -0
- data/script/out/units/Q133011.yml +511 -0
- data/script/out/units/Q1332978.yml +352 -0
- data/script/out/units/Q1339119.yml +57 -0
- data/script/out/units/Q13400897.yml +229 -0
- data/script/out/units/Q1343553.yml +96 -0
- data/script/out/units/Q13437153.yml +191 -0
- data/script/out/units/Q1345587.yml +117 -0
- data/script/out/units/Q13479685.yml +155 -0
- data/script/out/units/Q1351253.yml +182 -0
- data/script/out/units/Q1351334.yml +186 -0
- data/script/out/units/Q13530508.yml +195 -0
- data/script/out/units/Q13548586.yml +103 -0
- data/script/out/units/Q1354928.yml +164 -0
- data/script/out/units/Q1357294.yml +125 -0
- data/script/out/units/Q1359207.yml +167 -0
- data/script/out/units/Q1361854.yml +366 -0
- data/script/out/units/Q1363007.yml +204 -0
- data/script/out/units/Q13645695.yml +38 -0
- data/script/out/units/Q1367371.yml +159 -0
- data/script/out/units/Q1368097.yml +53 -0
- data/script/out/units/Q1370372.yml +180 -0
- data/script/out/units/Q1373252.yml +42 -0
- data/script/out/units/Q1373696.yml +117 -0
- data/script/out/units/Q1374438.yml +212 -0
- data/script/out/units/Q13753469.yml +90 -0
- data/script/out/units/Q1377051.yml +200 -0
- data/script/out/units/Q1377741.yml +198 -0
- data/script/out/units/Q137958.yml +228 -0
- data/script/out/units/Q1380156.yml +204 -0
- data/script/out/units/Q1395506.yml +117 -0
- data/script/out/units/Q1396128.yml +113 -0
- data/script/out/units/Q1399446.yml +355 -0
- data/script/out/units/Q1399533.yml +82 -0
- data/script/out/units/Q1400868.yml +65 -0
- data/script/out/units/Q1402037.yml +108 -0
- data/script/out/units/Q1403484.yml +127 -0
- data/script/out/units/Q1404428.yml +294 -0
- data/script/out/units/Q1411382.yml +153 -0
- data/script/out/units/Q1413142.yml +199 -0
- data/script/out/units/Q1415602.yml +222 -0
- data/script/out/units/Q14158377.yml +88 -0
- data/script/out/units/Q1416273.yml +94 -0
- data/script/out/units/Q1417229.yml +53 -0
- data/script/out/units/Q1419083.yml +38 -0
- data/script/out/units/Q1420185.yml +117 -0
- data/script/out/units/Q1420451.yml +180 -0
- data/script/out/units/Q1424618.yml +406 -0
- data/script/out/units/Q1427899.yml +224 -0
- data/script/out/units/Q14285348.yml +42 -0
- data/script/out/units/Q14333713.yml +248 -0
- data/script/out/units/Q1434123.yml +159 -0
- data/script/out/units/Q14367650.yml +82 -0
- data/script/out/units/Q1439369.yml +100 -0
- data/script/out/units/Q14397063.yml +68 -0
- data/script/out/units/Q1439962.yml +74 -0
- data/script/out/units/Q1440737.yml +139 -0
- data/script/out/units/Q1444800.yml +113 -0
- data/script/out/units/Q1449918.yml +205 -0
- data/script/out/units/Q1453450.yml +49 -0
- data/script/out/units/Q145911.yml +304 -0
- data/script/out/units/Q146094.yml +324 -0
- data/script/out/units/Q14623803.yml +61 -0
- data/script/out/units/Q14623804.yml +61 -0
- data/script/out/units/Q1463969.yml +112 -0
- data/script/out/units/Q14689009.yml +207 -0
- data/script/out/units/Q1472674.yml +171 -0
- data/script/out/units/Q1472704.yml +489 -0
- data/script/out/units/Q1474367.yml +128 -0
- data/script/out/units/Q1475316.yml +116 -0
- data/script/out/units/Q14754979.yml +121 -0
- data/script/out/units/Q1478114.yml +141 -0
- data/script/out/units/Q14786969.yml +108 -0
- data/script/out/units/Q14787261.yml +188 -0
- data/script/out/units/Q14850704.yml +104 -0
- data/script/out/units/Q1485655.yml +177 -0
- data/script/out/units/Q14877141.yml +160 -0
- data/script/out/units/Q1488493.yml +91 -0
- data/script/out/units/Q14913554.yml +108 -0
- data/script/out/units/Q14914907.yml +58 -0
- data/script/out/units/Q14916719.yml +156 -0
- data/script/out/units/Q1493975.yml +38 -0
- data/script/out/units/Q14948257.yml +96 -0
- data/script/out/units/Q14961002.yml +100 -0
- data/script/out/units/Q1496296.yml +34 -0
- data/script/out/units/Q1501075.yml +63 -0
- data/script/out/units/Q1504146.yml +38 -0
- data/script/out/units/Q15078648.yml +89 -0
- data/script/out/units/Q1508175.yml +182 -0
- data/script/out/units/Q15088832.yml +46 -0
- data/script/out/units/Q1509365.yml +153 -0
- data/script/out/units/Q1511773.yml +222 -0
- data/script/out/units/Q1514559.yml +177 -0
- data/script/out/units/Q1515398.yml +164 -0
- data/script/out/units/Q15177466.yml +353 -0
- data/script/out/units/Q15179199.yml +264 -0
- data/script/out/units/Q15179422.yml +58 -0
- data/script/out/units/Q1520867.yml +76 -0
- data/script/out/units/Q15220615.yml +42 -0
- data/script/out/units/Q1523704.yml +50 -0
- data/script/out/units/Q152411.yml +482 -0
- data/script/out/units/Q1524385.yml +147 -0
- data/script/out/units/Q152512.yml +526 -0
- data/script/out/units/Q152516.yml +506 -0
- data/script/out/units/Q1531048.yml +167 -0
- data/script/out/units/Q1535807.yml +82 -0
- data/script/out/units/Q1536313.yml +34 -0
- data/script/out/units/Q15377916.yml +572 -0
- data/script/out/units/Q1539628.yml +124 -0
- data/script/out/units/Q15398983.yml +67 -0
- data/script/out/units/Q154108.yml +529 -0
- data/script/out/units/Q154121.yml +528 -0
- data/script/out/units/Q1542162.yml +164 -0
- data/script/out/units/Q1542309.yml +137 -0
- data/script/out/units/Q154341.yml +557 -0
- data/script/out/units/Q154357.yml +522 -0
- data/script/out/units/Q1545979.yml +310 -0
- data/script/out/units/Q1546443.yml +569 -0
- data/script/out/units/Q1547176.yml +141 -0
- data/script/out/units/Q1547498.yml +189 -0
- data/script/out/units/Q15494057.yml +115 -0
- data/script/out/units/Q155009.yml +402 -0
- data/script/out/units/Q1550199.yml +167 -0
- data/script/out/units/Q1550511.yml +304 -0
- data/script/out/units/Q1552740.yml +161 -0
- data/script/out/units/Q15551713.yml +88 -0
- data/script/out/units/Q15579483.yml +69 -0
- data/script/out/units/Q1559627.yml +39 -0
- data/script/out/units/Q15614087.yml +114 -0
- data/script/out/units/Q15634537.yml +74 -0
- data/script/out/units/Q156389.yml +199 -0
- data/script/out/units/Q15643573.yml +51 -0
- data/script/out/units/Q1567261.yml +34 -0
- data/script/out/units/Q1569733.yml +242 -0
- data/script/out/units/Q157011.yml +332 -0
- data/script/out/units/Q1571749.yml +145 -0
- data/script/out/units/Q15723606.yml +35 -0
- data/script/out/units/Q1573593.yml +352 -0
- data/script/out/units/Q1577757.yml +157 -0
- data/script/out/units/Q15781414.yml +38 -0
- data/script/out/units/Q15784325.yml +135 -0
- data/script/out/units/Q15787294.yml +52 -0
- data/script/out/units/Q1578823.yml +186 -0
- data/script/out/units/Q15790894.yml +38 -0
- data/script/out/units/Q15794456.yml +240 -0
- data/script/out/units/Q15805669.yml +93 -0
- data/script/out/units/Q15806533.yml +52 -0
- data/script/out/units/Q15808700.yml +68 -0
- data/script/out/units/Q15809728.yml +34 -0
- data/script/out/units/Q15835612.yml +63 -0
- data/script/out/units/Q15836922.yml +34 -0
- data/script/out/units/Q15837355.yml +34 -0
- data/script/out/units/Q15838121.yml +93 -0
- data/script/out/units/Q15841232.yml +42 -0
- data/script/out/units/Q15843029.yml +34 -0
- data/script/out/units/Q15844208.yml +34 -0
- data/script/out/units/Q15846910.yml +34 -0
- data/script/out/units/Q15851598.yml +38 -0
- data/script/out/units/Q15855181.yml +63 -0
- data/script/out/units/Q15855405.yml +64 -0
- data/script/out/units/Q15859381.yml +79 -0
- data/script/out/units/Q1585993.yml +171 -0
- data/script/out/units/Q15931957.yml +42 -0
- data/script/out/units/Q15944605.yml +54 -0
- data/script/out/units/Q159505.yml +499 -0
- data/script/out/units/Q15966458.yml +73 -0
- data/script/out/units/Q15967508.yml +34 -0
- data/script/out/units/Q15981447.yml +110 -0
- data/script/out/units/Q16001112.yml +38 -0
- data/script/out/units/Q16068.yml +573 -0
- data/script/out/units/Q160680.yml +594 -0
- data/script/out/units/Q1607372.yml +104 -0
- data/script/out/units/Q1607718.yml +105 -0
- data/script/out/units/Q16080864.yml +110 -0
- data/script/out/units/Q160857.yml +742 -0
- data/script/out/units/Q1613476.yml +119 -0
- data/script/out/units/Q16160732.yml +69 -0
- data/script/out/units/Q1618872.yml +137 -0
- data/script/out/units/Q1619048.yml +38 -0
- data/script/out/units/Q162525.yml +88 -0
- data/script/out/units/Q162528.yml +395 -0
- data/script/out/units/Q1628258.yml +173 -0
- data/script/out/units/Q1628990.yml +54 -0
- data/script/out/units/Q1630774.yml +124 -0
- data/script/out/units/Q16320489.yml +59 -0
- data/script/out/units/Q16327556.yml +48 -0
- data/script/out/units/Q163343.yml +678 -0
- data/script/out/units/Q163354.yml +749 -0
- data/script/out/units/Q1635189.yml +112 -0
- data/script/out/units/Q1635737.yml +113 -0
- data/script/out/units/Q163712.yml +372 -0
- data/script/out/units/Q16372056.yml +34 -0
- data/script/out/units/Q1637469.yml +38 -0
- data/script/out/units/Q1637963.yml +264 -0
- data/script/out/units/Q1640286.yml +232 -0
- data/script/out/units/Q1640501.yml +111 -0
- data/script/out/units/Q1643308.yml +138 -0
- data/script/out/units/Q1645498.yml +550 -0
- data/script/out/units/Q1645564.yml +57 -0
- data/script/out/units/Q1645825.yml +137 -0
- data/script/out/units/Q1645966.yml +736 -0
- data/script/out/units/Q1647239.yml +89 -0
- data/script/out/units/Q16511984.yml +72 -0
- data/script/out/units/Q16533766.yml +67 -0
- data/script/out/units/Q165717.yml +309 -0
- data/script/out/units/Q16683188.yml +73 -0
- data/script/out/units/Q1669865.yml +113 -0
- data/script/out/units/Q167254.yml +298 -0
- data/script/out/units/Q1674712.yml +327 -0
- data/script/out/units/Q16783523.yml +4531 -0
- data/script/out/units/Q1678551.yml +117 -0
- data/script/out/units/Q16833081.yml +34 -0
- data/script/out/units/Q16837804.yml +135 -0
- data/script/out/units/Q16859309.yml +117 -0
- data/script/out/units/Q16878358.yml +81 -0
- data/script/out/units/Q16909963.yml +58 -0
- data/script/out/units/Q16928104.yml +48 -0
- data/script/out/units/Q16930882.yml +49 -0
- data/script/out/units/Q16931725.yml +38 -0
- data/script/out/units/Q16977837.yml +92 -0
- data/script/out/units/Q169893.yml +628 -0
- data/script/out/units/Q17012236.yml +99 -0
- data/script/out/units/Q170417.yml +428 -0
- data/script/out/units/Q17052931.yml +65 -0
- data/script/out/units/Q170804.yml +653 -0
- data/script/out/units/Q17082773.yml +38 -0
- data/script/out/units/Q17093295.yml +39 -0
- data/script/out/units/Q17094697.yml +87 -0
- data/script/out/units/Q1709783.yml +79 -0
- data/script/out/units/Q1710801.yml +85 -0
- data/script/out/units/Q17122392.yml +34 -0
- data/script/out/units/Q17127923.yml +49 -0
- data/script/out/units/Q171503.yml +354 -0
- data/script/out/units/Q17155887.yml +1253 -0
- data/script/out/units/Q17193.yml +474 -0
- data/script/out/units/Q172524.yml +426 -0
- data/script/out/units/Q172540.yml +486 -0
- data/script/out/units/Q17255465.yml +99 -0
- data/script/out/units/Q172872.yml +497 -0
- data/script/out/units/Q17301921.yml +83 -0
- data/script/out/units/Q173117.yml +491 -0
- data/script/out/units/Q173170.yml +124 -0
- data/script/out/units/Q17321964.yml +34 -0
- data/script/out/units/Q1736601.yml +256 -0
- data/script/out/units/Q173751.yml +472 -0
- data/script/out/units/Q1741413.yml +42 -0
- data/script/out/units/Q1741429.yml +81 -0
- data/script/out/units/Q17436613.yml +57 -0
- data/script/out/units/Q174467.yml +390 -0
- data/script/out/units/Q174728.yml +993 -0
- data/script/out/units/Q174789.yml +832 -0
- data/script/out/units/Q17492392.yml +389 -0
- data/script/out/units/Q1753562.yml +90 -0
- data/script/out/units/Q1755350.yml +216 -0
- data/script/out/units/Q1756761.yml +108 -0
- data/script/out/units/Q1757518.yml +116 -0
- data/script/out/units/Q175821.yml +811 -0
- data/script/out/units/Q17592282.yml +49 -0
- data/script/out/units/Q1764812.yml +193 -0
- data/script/out/units/Q1768929.yml +110 -0
- data/script/out/units/Q1770545.yml +70 -0
- data/script/out/units/Q1770733.yml +201 -0
- data/script/out/units/Q1772386.yml +188 -0
- data/script/out/units/Q177493.yml +359 -0
- data/script/out/units/Q177612.yml +740 -0
- data/script/out/units/Q1777507.yml +246 -0
- data/script/out/units/Q1778552.yml +156 -0
- data/script/out/units/Q177875.yml +409 -0
- data/script/out/units/Q177882.yml +462 -0
- data/script/out/units/Q1779554.yml +125 -0
- data/script/out/units/Q177974.yml +506 -0
- data/script/out/units/Q1781634.yml +50 -0
- data/script/out/units/Q178413.yml +369 -0
- data/script/out/units/Q1784415.yml +81 -0
- data/script/out/units/Q178506.yml +660 -0
- data/script/out/units/Q178674.yml +548 -0
- data/script/out/units/Q178721.yml +70 -0
- data/script/out/units/Q178874.yml +483 -0
- data/script/out/units/Q1790688.yml +124 -0
- data/script/out/units/Q1790901.yml +38 -0
- data/script/out/units/Q1790908.yml +120 -0
- data/script/out/units/Q1793863.yml +252 -0
- data/script/out/units/Q179620.yml +389 -0
- data/script/out/units/Q1798227.yml +139 -0
- data/script/out/units/Q179836.yml +623 -0
- data/script/out/units/Q1799735.yml +89 -0
- data/script/out/units/Q180154.yml +530 -0
- data/script/out/units/Q18028708.yml +38 -0
- data/script/out/units/Q1805331.yml +143 -0
- data/script/out/units/Q1807140.yml +252 -0
- data/script/out/units/Q1807432.yml +78 -0
- data/script/out/units/Q180892.yml +464 -0
- data/script/out/units/Q181011.yml +371 -0
- data/script/out/units/Q1810373.yml +67 -0
- data/script/out/units/Q1811.yml +883 -0
- data/script/out/units/Q181129.yml +387 -0
- data/script/out/units/Q1815100.yml +200 -0
- data/script/out/units/Q181907.yml +450 -0
- data/script/out/units/Q182098.yml +409 -0
- data/script/out/units/Q1823150.yml +118 -0
- data/script/out/units/Q182429.yml +497 -0
- data/script/out/units/Q1826195.yml +99 -0
- data/script/out/units/Q182803.yml +421 -0
- data/script/out/units/Q183019.yml +117 -0
- data/script/out/units/Q183354.yml +265 -0
- data/script/out/units/Q183435.yml +383 -0
- data/script/out/units/Q18344097.yml +69 -0
- data/script/out/units/Q183530.yml +363 -0
- data/script/out/units/Q18413919.yml +135 -0
- data/script/out/units/Q184172.yml +783 -0
- data/script/out/units/Q185078.yml +349 -0
- data/script/out/units/Q185153.yml +359 -0
- data/script/out/units/Q1852872.yml +132 -0
- data/script/out/units/Q185567.yml +409 -0
- data/script/out/units/Q185648.yml +322 -0
- data/script/out/units/Q18572818.yml +2871 -0
- data/script/out/units/Q185759.yml +265 -0
- data/script/out/units/Q1861737.yml +448 -0
- data/script/out/units/Q1862803.yml +42 -0
- data/script/out/units/Q1867194.yml +34 -0
- data/script/out/units/Q186794.yml +394 -0
- data/script/out/units/Q18695775.yml +46 -0
- data/script/out/units/Q1872619.yml +124 -0
- data/script/out/units/Q18756242.yml +119 -0
- data/script/out/units/Q188289.yml +398 -0
- data/script/out/units/Q188416.yml +178 -0
- data/script/out/units/Q188608.yml +480 -0
- data/script/out/units/Q1887019.yml +209 -0
- data/script/out/units/Q188768.yml +310 -0
- data/script/out/units/Q18891465.yml +126 -0
- data/script/out/units/Q189097.yml +997 -0
- data/script/out/units/Q189607.yml +347 -0
- data/script/out/units/Q1897602.yml +110 -0
- data/script/out/units/Q190095.yml +649 -0
- data/script/out/units/Q190139.yml +542 -0
- data/script/out/units/Q1905557.yml +30 -0
- data/script/out/units/Q190699.yml +367 -0
- data/script/out/units/Q190951.yml +409 -0
- data/script/out/units/Q191068.yml +364 -0
- data/script/out/units/Q191118.yml +860 -0
- data/script/out/units/Q1913097.yml +176 -0
- data/script/out/units/Q191511.yml +344 -0
- data/script/out/units/Q1916026.yml +100 -0
- data/script/out/units/Q1917076.yml +85 -0
- data/script/out/units/Q1918077.yml +152 -0
- data/script/out/units/Q191935.yml +486 -0
- data/script/out/units/Q192027.yml +350 -0
- data/script/out/units/Q192090.yml +407 -0
- data/script/out/units/Q192274.yml +411 -0
- data/script/out/units/Q19285006.yml +34 -0
- data/script/out/units/Q1929326.yml +145 -0
- data/script/out/units/Q19296826.yml +85 -0
- data/script/out/units/Q193094.yml +398 -0
- data/script/out/units/Q193098.yml +431 -0
- data/script/out/units/Q19310187.yml +91 -0
- data/script/out/units/Q19312298.yml +57 -0
- data/script/out/units/Q1931664.yml +179 -0
- data/script/out/units/Q1931844.yml +70 -0
- data/script/out/units/Q1931902.yml +153 -0
- data/script/out/units/Q193227.yml +190 -0
- data/script/out/units/Q1934986.yml +219 -0
- data/script/out/units/Q1935515.yml +60 -0
- data/script/out/units/Q1936270.yml +118 -0
- data/script/out/units/Q193712.yml +319 -0
- data/script/out/units/Q193716.yml +370 -0
- data/script/out/units/Q193738.yml +476 -0
- data/script/out/units/Q193933.yml +365 -0
- data/script/out/units/Q1940373.yml +124 -0
- data/script/out/units/Q194339.yml +358 -0
- data/script/out/units/Q194351.yml +366 -0
- data/script/out/units/Q194453.yml +477 -0
- data/script/out/units/Q1960066.yml +147 -0
- data/script/out/units/Q19606281.yml +48 -0
- data/script/out/units/Q1967435.yml +105 -0
- data/script/out/units/Q1970718.yml +116 -0
- data/script/out/units/Q19721277.yml +38 -0
- data/script/out/units/Q1972579.yml +204 -0
- data/script/out/units/Q1975732.yml +108 -0
- data/script/out/units/Q1979092.yml +97 -0
- data/script/out/units/Q19828.yml +845 -0
- data/script/out/units/Q1983857.yml +236 -0
- data/script/out/units/Q19893485.yml +250 -0
- data/script/out/units/Q19893642.yml +233 -0
- data/script/out/units/Q19894203.yml +73 -0
- data/script/out/units/Q19903301.yml +49 -0
- data/script/out/units/Q19904167.yml +42 -0
- data/script/out/units/Q19906285.yml +77 -0
- data/script/out/units/Q19910723.yml +103 -0
- data/script/out/units/Q19915205.yml +34 -0
- data/script/out/units/Q199462.yml +429 -0
- data/script/out/units/Q199471.yml +671 -0
- data/script/out/units/Q19953480.yml +59 -0
- data/script/out/units/Q199578.yml +584 -0
- data/script/out/units/Q199674.yml +438 -0
- data/script/out/units/Q199857.yml +407 -0
- data/script/out/units/Q199886.yml +380 -0
- data/script/out/units/Q2000486.yml +167 -0
- data/script/out/units/Q200050.yml +660 -0
- data/script/out/units/Q200055.yml +396 -0
- data/script/out/units/Q200192.yml +419 -0
- data/script/out/units/Q2002583.yml +269 -0
- data/script/out/units/Q200294.yml +369 -0
- data/script/out/units/Q200323.yml +685 -0
- data/script/out/units/Q200337.yml +359 -0
- data/script/out/units/Q2006523.yml +116 -0
- data/script/out/units/Q200737.yml +354 -0
- data/script/out/units/Q200753.yml +334 -0
- data/script/out/units/Q200759.yml +365 -0
- data/script/out/units/Q200979.yml +343 -0
- data/script/out/units/Q201505.yml +364 -0
- data/script/out/units/Q201573.yml +229 -0
- data/script/out/units/Q201799.yml +403 -0
- data/script/out/units/Q2018709.yml +560 -0
- data/script/out/units/Q201871.yml +409 -0
- data/script/out/units/Q201875.yml +373 -0
- data/script/out/units/Q201880.yml +390 -0
- data/script/out/units/Q201933.yml +348 -0
- data/script/out/units/Q202036.yml +356 -0
- data/script/out/units/Q202040.yml +481 -0
- data/script/out/units/Q202462.yml +346 -0
- data/script/out/units/Q202642.yml +454 -0
- data/script/out/units/Q202882.yml +330 -0
- data/script/out/units/Q202885.yml +339 -0
- data/script/out/units/Q202895.yml +402 -0
- data/script/out/units/Q2029156.yml +140 -0
- data/script/out/units/Q2029519.yml +200 -0
- data/script/out/units/Q2032019.yml +151 -0
- data/script/out/units/Q203354.yml +1062 -0
- data/script/out/units/Q203567.yml +335 -0
- data/script/out/units/Q203722.yml +354 -0
- data/script/out/units/Q203757.yml +365 -0
- data/script/out/units/Q203794.yml +50 -0
- data/script/out/units/Q2039104.yml +81 -0
- data/script/out/units/Q203955.yml +319 -0
- data/script/out/units/Q2042279.yml +120 -0
- data/script/out/units/Q204656.yml +354 -0
- data/script/out/units/Q204737.yml +425 -0
- data/script/out/units/Q204759.yml +109 -0
- data/script/out/units/Q204992.yml +644 -0
- data/script/out/units/Q20508519.yml +52 -0
- data/script/out/units/Q2051195.yml +118 -0
- data/script/out/units/Q2052387.yml +63 -0
- data/script/out/units/Q2052406.yml +38 -0
- data/script/out/units/Q2055118.yml +136 -0
- data/script/out/units/Q20578045.yml +65 -0
- data/script/out/units/Q206037.yml +299 -0
- data/script/out/units/Q2060764.yml +268 -0
- data/script/out/units/Q206243.yml +370 -0
- data/script/out/units/Q206319.yml +354 -0
- data/script/out/units/Q206386.yml +362 -0
- data/script/out/units/Q20639637.yml +64 -0
- data/script/out/units/Q2064166.yml +175 -0
- data/script/out/units/Q206600.yml +327 -0
- data/script/out/units/Q2066484.yml +201 -0
- data/script/out/units/Q2067664.yml +146 -0
- data/script/out/units/Q207024.yml +314 -0
- data/script/out/units/Q2070458.yml +184 -0
- data/script/out/units/Q207312.yml +357 -0
- data/script/out/units/Q207387.yml +381 -0
- data/script/out/units/Q207396.yml +347 -0
- data/script/out/units/Q207514.yml +370 -0
- data/script/out/units/Q207523.yml +322 -0
- data/script/out/units/Q20764.yml +209 -0
- data/script/out/units/Q207669.yml +466 -0
- data/script/out/units/Q207733.yml +637 -0
- data/script/out/units/Q208039.yml +319 -0
- data/script/out/units/Q208133.yml +339 -0
- data/script/out/units/Q2083869.yml +129 -0
- data/script/out/units/Q20850690.yml +100 -0
- data/script/out/units/Q20850968.yml +49 -0
- data/script/out/units/Q208526.yml +385 -0
- data/script/out/units/Q208528.yml +361 -0
- data/script/out/units/Q2086176.yml +107 -0
- data/script/out/units/Q208634.yml +552 -0
- data/script/out/units/Q2086443.yml +124 -0
- data/script/out/units/Q208730.yml +480 -0
- data/script/out/units/Q208788.yml +425 -0
- data/script/out/units/Q2090145.yml +108 -0
- data/script/out/units/Q209272.yml +372 -0
- data/script/out/units/Q209351.yml +366 -0
- data/script/out/units/Q209426.yml +524 -0
- data/script/out/units/Q2094914.yml +203 -0
- data/script/out/units/Q2095762.yml +150 -0
- data/script/out/units/Q20966435.yml +101 -0
- data/script/out/units/Q20966455.yml +111 -0
- data/script/out/units/Q20967942.yml +47 -0
- data/script/out/units/Q209792.yml +361 -0
- data/script/out/units/Q20988326.yml +34 -0
- data/script/out/units/Q2099374.yml +259 -0
- data/script/out/units/Q21002847.yml +90 -0
- data/script/out/units/Q2100536.yml +34 -0
- data/script/out/units/Q21006887.yml +263 -0
- data/script/out/units/Q2100949.yml +306 -0
- data/script/out/units/Q21013061.yml +236 -0
- data/script/out/units/Q21014455.yml +102 -0
- data/script/out/units/Q21016931.yml +126 -0
- data/script/out/units/Q21042963.yml +92 -0
- data/script/out/units/Q2104556.yml +161 -0
- data/script/out/units/Q210472.yml +350 -0
- data/script/out/units/Q210478.yml +347 -0
- data/script/out/units/Q210611.yml +482 -0
- data/script/out/units/Q21061369.yml +125 -0
- data/script/out/units/Q21062777.yml +145 -0
- data/script/out/units/Q21064683.yml +81 -0
- data/script/out/units/Q21064807.yml +195 -0
- data/script/out/units/Q21064838.yml +45 -0
- data/script/out/units/Q21064845.yml +45 -0
- data/script/out/units/Q21074767.yml +210 -0
- data/script/out/units/Q21075844.yml +76 -0
- data/script/out/units/Q21077820.yml +92 -0
- data/script/out/units/Q21077849.yml +45 -0
- data/script/out/units/Q21088638.yml +109 -0
- data/script/out/units/Q21091747.yml +115 -0
- data/script/out/units/Q21092588.yml +59 -0
- data/script/out/units/Q21095810.yml +45 -0
- data/script/out/units/Q21095842.yml +34 -0
- data/script/out/units/Q2111.yml +870 -0
- data/script/out/units/Q2112169.yml +120 -0
- data/script/out/units/Q211256.yml +478 -0
- data/script/out/units/Q21127659.yml +45 -0
- data/script/out/units/Q21131.yml +325 -0
- data/script/out/units/Q2114672.yml +109 -0
- data/script/out/units/Q211580.yml +264 -0
- data/script/out/units/Q211694.yml +319 -0
- data/script/out/units/Q2117285.yml +38 -0
- data/script/out/units/Q2117831.yml +172 -0
- data/script/out/units/Q21178489.yml +37 -0
- data/script/out/units/Q2118176.yml +184 -0
- data/script/out/units/Q2119533.yml +93 -0
- data/script/out/units/Q212120.yml +317 -0
- data/script/out/units/Q2121867.yml +321 -0
- data/script/out/units/Q2122339.yml +34 -0
- data/script/out/units/Q2122762.yml +49 -0
- data/script/out/units/Q2123266.yml +42 -0
- data/script/out/units/Q21281991.yml +65 -0
- data/script/out/units/Q21282164.yml +85 -0
- data/script/out/units/Q21282180.yml +81 -0
- data/script/out/units/Q21282369.yml +42 -0
- data/script/out/units/Q21294882.yml +84 -0
- data/script/out/units/Q212967.yml +354 -0
- data/script/out/units/Q213005.yml +315 -0
- data/script/out/units/Q213311.yml +319 -0
- data/script/out/units/Q213327.yml +77 -0
- data/script/out/units/Q21344460.yml +90 -0
- data/script/out/units/Q21392882.yml +61 -0
- data/script/out/units/Q21393312.yml +57 -0
- data/script/out/units/Q213940.yml +365 -0
- data/script/out/units/Q21395031.yml +35 -0
- data/script/out/units/Q21395834.yml +33 -0
- data/script/out/units/Q2139613.yml +76 -0
- data/script/out/units/Q21396202.yml +33 -0
- data/script/out/units/Q21401573.yml +63 -0
- data/script/out/units/Q2140397.yml +278 -0
- data/script/out/units/Q214111.yml +228 -0
- data/script/out/units/Q214377.yml +459 -0
- data/script/out/units/Q214393.yml +549 -0
- data/script/out/units/Q2143992.yml +204 -0
- data/script/out/units/Q21467992.yml +153 -0
- data/script/out/units/Q21489891.yml +49 -0
- data/script/out/units/Q21489892.yml +46 -0
- data/script/out/units/Q21489893.yml +46 -0
- data/script/out/units/Q21489894.yml +49 -0
- data/script/out/units/Q21500224.yml +59 -0
- data/script/out/units/Q2151240.yml +100 -0
- data/script/out/units/Q21539958.yml +34 -0
- data/script/out/units/Q215571.yml +405 -0
- data/script/out/units/Q21596813.yml +90 -0
- data/script/out/units/Q21604951.yml +84 -0
- data/script/out/units/Q21615967.yml +107 -0
- data/script/out/units/Q2165290.yml +276 -0
- data/script/out/units/Q21660642.yml +53 -0
- data/script/out/units/Q216658.yml +516 -0
- data/script/out/units/Q21673990.yml +78 -0
- data/script/out/units/Q2167471.yml +139 -0
- data/script/out/units/Q216795.yml +238 -0
- data/script/out/units/Q216880.yml +444 -0
- data/script/out/units/Q2171489.yml +49 -0
- data/script/out/units/Q21719454.yml +66 -0
- data/script/out/units/Q217208.yml +284 -0
- data/script/out/units/Q2175964.yml +233 -0
- data/script/out/units/Q21857460.yml +102 -0
- data/script/out/units/Q218593.yml +1207 -0
- data/script/out/units/Q21866821.yml +90 -0
- data/script/out/units/Q2192949.yml +207 -0
- data/script/out/units/Q21948574.yml +60 -0
- data/script/out/units/Q21948577.yml +45 -0
- data/script/out/units/Q2201731.yml +120 -0
- data/script/out/units/Q220397.yml +397 -0
- data/script/out/units/Q2208377.yml +48 -0
- data/script/out/units/Q2210774.yml +134 -0
- data/script/out/units/Q22137107.yml +47 -0
- data/script/out/units/Q2216184.yml +63 -0
- data/script/out/units/Q221956.yml +271 -0
- data/script/out/units/Q2221356.yml +76 -0
- data/script/out/units/Q22282192.yml +63 -0
- data/script/out/units/Q223061.yml +575 -0
- data/script/out/units/Q2232211.yml +104 -0
- data/script/out/units/Q22350885.yml +77 -0
- data/script/out/units/Q22350887.yml +64 -0
- data/script/out/units/Q2238237.yml +143 -0
- data/script/out/units/Q2243141.yml +125 -0
- data/script/out/units/Q2245851.yml +125 -0
- data/script/out/units/Q2250901.yml +105 -0
- data/script/out/units/Q2252280.yml +120 -0
- data/script/out/units/Q2257641.yml +73 -0
- data/script/out/units/Q22583210.yml +92 -0
- data/script/out/units/Q225888.yml +196 -0
- data/script/out/units/Q2262025.yml +53 -0
- data/script/out/units/Q22673229.yml +47 -0
- data/script/out/units/Q2269240.yml +290 -0
- data/script/out/units/Q2269250.yml +159 -0
- data/script/out/units/Q2273801.yml +63 -0
- data/script/out/units/Q2273837.yml +123 -0
- data/script/out/units/Q2273855.yml +141 -0
- data/script/out/units/Q2273865.yml +101 -0
- data/script/out/units/Q2274312.yml +157 -0
- data/script/out/units/Q2275454.yml +126 -0
- data/script/out/units/Q2276380.yml +147 -0
- data/script/out/units/Q2280994.yml +97 -0
- data/script/out/units/Q228253.yml +58 -0
- data/script/out/units/Q2282891.yml +196 -0
- data/script/out/units/Q2282897.yml +97 -0
- data/script/out/units/Q2282906.yml +200 -0
- data/script/out/units/Q2282987.yml +97 -0
- data/script/out/units/Q22907080.yml +38 -0
- data/script/out/units/Q2291943.yml +97 -0
- data/script/out/units/Q229354.yml +367 -0
- data/script/out/units/Q2296171.yml +62 -0
- data/script/out/units/Q2296365.yml +93 -0
- data/script/out/units/Q2296536.yml +124 -0
- data/script/out/units/Q2297932.yml +138 -0
- data/script/out/units/Q2297968.yml +212 -0
- data/script/out/units/Q22991158.yml +103 -0
- data/script/out/units/Q2299665.yml +111 -0
- data/script/out/units/Q2299742.yml +77 -0
- data/script/out/units/Q2300171.yml +124 -0
- data/script/out/units/Q2301952.yml +34 -0
- data/script/out/units/Q2305152.yml +121 -0
- data/script/out/units/Q2311363.yml +93 -0
- data/script/out/units/Q231455.yml +499 -0
- data/script/out/units/Q2317268.yml +38 -0
- data/script/out/units/Q23199031.yml +141 -0
- data/script/out/units/Q23210627.yml +49 -0
- data/script/out/units/Q232270.yml +346 -0
- data/script/out/units/Q232291.yml +454 -0
- data/script/out/units/Q232415.yml +401 -0
- data/script/out/units/Q2328868.yml +131 -0
- data/script/out/units/Q2329625.yml +228 -0
- data/script/out/units/Q2332346.yml +267 -0
- data/script/out/units/Q2337405.yml +125 -0
- data/script/out/units/Q23387.yml +1167 -0
- data/script/out/units/Q2338813.yml +178 -0
- data/script/out/units/Q2340666.yml +143 -0
- data/script/out/units/Q234129.yml +372 -0
- data/script/out/units/Q2341354.yml +126 -0
- data/script/out/units/Q2342086.yml +137 -0
- data/script/out/units/Q2342457.yml +69 -0
- data/script/out/units/Q2344772.yml +140 -0
- data/script/out/units/Q2345999.yml +42 -0
- data/script/out/units/Q2346646.yml +161 -0
- data/script/out/units/Q2347864.yml +112 -0
- data/script/out/units/Q2347874.yml +170 -0
- data/script/out/units/Q2348095.yml +108 -0
- data/script/out/units/Q2348127.yml +139 -0
- data/script/out/units/Q2348843.yml +118 -0
- data/script/out/units/Q2348883.yml +118 -0
- data/script/out/units/Q23502.yml +101 -0
- data/script/out/units/Q23508.yml +72 -0
- data/script/out/units/Q2351198.yml +162 -0
- data/script/out/units/Q23516.yml +71 -0
- data/script/out/units/Q23524.yml +111 -0
- data/script/out/units/Q23541018.yml +69 -0
- data/script/out/units/Q23546.yml +67 -0
- data/script/out/units/Q2356117.yml +126 -0
- data/script/out/units/Q2356178.yml +112 -0
- data/script/out/units/Q235729.yml +345 -0
- data/script/out/units/Q2361875.yml +52 -0
- data/script/out/units/Q23652.yml +69 -0
- data/script/out/units/Q23660.yml +223 -0
- data/script/out/units/Q23671267.yml +75 -0
- data/script/out/units/Q23680.yml +212 -0
- data/script/out/units/Q23684.yml +49 -0
- data/script/out/units/Q238007.yml +323 -0
- data/script/out/units/Q23808021.yml +34 -0
- data/script/out/units/Q23823681.yml +119 -0
- data/script/out/units/Q23893259.yml +94 -0
- data/script/out/units/Q23893296.yml +94 -0
- data/script/out/units/Q23925410.yml +273 -0
- data/script/out/units/Q23925413.yml +302 -0
- data/script/out/units/Q23925527.yml +66 -0
- data/script/out/units/Q23931040.yml +83 -0
- data/script/out/units/Q23931103.yml +66 -0
- data/script/out/units/Q23931109.yml +79 -0
- data/script/out/units/Q23931116.yml +79 -0
- data/script/out/units/Q23931127.yml +79 -0
- data/script/out/units/Q23931129.yml +79 -0
- data/script/out/units/Q23931147.yml +76 -0
- data/script/out/units/Q23931245.yml +79 -0
- data/script/out/units/Q23940476.yml +64 -0
- data/script/out/units/Q23977060.yml +35 -0
- data/script/out/units/Q2397915.yml +65 -0
- data/script/out/units/Q239830.yml +198 -0
- data/script/out/units/Q2399673.yml +166 -0
- data/script/out/units/Q24004466.yml +74 -0
- data/script/out/units/Q24004467.yml +77 -0
- data/script/out/units/Q24004469.yml +77 -0
- data/script/out/units/Q24004475.yml +77 -0
- data/script/out/units/Q24004476.yml +77 -0
- data/script/out/units/Q24004477.yml +81 -0
- data/script/out/units/Q240292.yml +113 -0
- data/script/out/units/Q24038885.yml +45 -0
- data/script/out/units/Q240468.yml +354 -0
- data/script/out/units/Q240512.yml +380 -0
- data/script/out/units/Q2405892.yml +54 -0
- data/script/out/units/Q24068069.yml +76 -0
- data/script/out/units/Q2407759.yml +176 -0
- data/script/out/units/Q2407803.yml +76 -0
- data/script/out/units/Q2408649.yml +37 -0
- data/script/out/units/Q2411666.yml +163 -0
- data/script/out/units/Q241214.yml +303 -0
- data/script/out/units/Q2414453.yml +97 -0
- data/script/out/units/Q2416457.yml +194 -0
- data/script/out/units/Q2423956.yml +194 -0
- data/script/out/units/Q24249808.yml +158 -0
- data/script/out/units/Q242890.yml +311 -0
- data/script/out/units/Q242915.yml +318 -0
- data/script/out/units/Q242922.yml +360 -0
- data/script/out/units/Q242988.yml +311 -0
- data/script/out/units/Q2431438.yml +57 -0
- data/script/out/units/Q2433846.yml +76 -0
- data/script/out/units/Q2438073.yml +180 -0
- data/script/out/units/Q244366.yml +302 -0
- data/script/out/units/Q2444002.yml +97 -0
- data/script/out/units/Q244819.yml +436 -0
- data/script/out/units/Q2448803.yml +92 -0
- data/script/out/units/Q2451296.yml +197 -0
- data/script/out/units/Q24526428.yml +1764 -0
- data/script/out/units/Q24534065.yml +38 -0
- data/script/out/units/Q24564698.yml +66 -0
- data/script/out/units/Q2457941.yml +72 -0
- data/script/out/units/Q24666811.yml +30 -0
- data/script/out/units/Q2468640.yml +187 -0
- data/script/out/units/Q246868.yml +265 -0
- data/script/out/units/Q2472225.yml +190 -0
- data/script/out/units/Q2474258.yml +147 -0
- data/script/out/units/Q2483628.yml +231 -0
- data/script/out/units/Q248526.yml +122 -0
- data/script/out/units/Q2489298.yml +324 -0
- data/script/out/units/Q2490574.yml +124 -0
- data/script/out/units/Q249439.yml +226 -0
- data/script/out/units/Q2500916.yml +63 -0
- data/script/out/units/Q2501214.yml +125 -0
- data/script/out/units/Q25098783.yml +46 -0
- data/script/out/units/Q25104171.yml +327 -0
- data/script/out/units/Q251484.yml +160 -0
- data/script/out/units/Q251545.yml +306 -0
- data/script/out/units/Q2518569.yml +131 -0
- data/script/out/units/Q2519099.yml +129 -0
- data/script/out/units/Q25203121.yml +62 -0
- data/script/out/units/Q25224.yml +888 -0
- data/script/out/units/Q25235.yml +1227 -0
- data/script/out/units/Q25236.yml +918 -0
- data/script/out/units/Q25250.yml +925 -0
- data/script/out/units/Q2525711.yml +148 -0
- data/script/out/units/Q2526234.yml +57 -0
- data/script/out/units/Q25267.yml +965 -0
- data/script/out/units/Q25269.yml +922 -0
- data/script/out/units/Q25272.yml +784 -0
- data/script/out/units/Q25303759.yml +50 -0
- data/script/out/units/Q253276.yml +999 -0
- data/script/out/units/Q25343.yml +938 -0
- data/script/out/units/Q25344.yml +784 -0
- data/script/out/units/Q253839.yml +350 -0
- data/script/out/units/Q2538687.yml +185 -0
- data/script/out/units/Q25395697.yml +66 -0
- data/script/out/units/Q25406.yml +744 -0
- data/script/out/units/Q25417.yml +503 -0
- data/script/out/units/Q2541777.yml +121 -0
- data/script/out/units/Q25448199.yml +53 -0
- data/script/out/units/Q254532.yml +170 -0
- data/script/out/units/Q2547191.yml +109 -0
- data/script/out/units/Q25517.yml +616 -0
- data/script/out/units/Q2553708.yml +96 -0
- data/script/out/units/Q2553996.yml +50 -0
- data/script/out/units/Q2554092.yml +92 -0
- data/script/out/units/Q2555236.yml +189 -0
- data/script/out/units/Q25559953.yml +46 -0
- data/script/out/units/Q25570.yml +54 -0
- data/script/out/units/Q255726.yml +189 -0
- data/script/out/units/Q255792.yml +243 -0
- data/script/out/units/Q25627.yml +540 -0
- data/script/out/units/Q256422.yml +128 -0
- data/script/out/units/Q2566277.yml +53 -0
- data/script/out/units/Q25712645.yml +66 -0
- data/script/out/units/Q257290.yml +346 -0
- data/script/out/units/Q2576687.yml +298 -0
- data/script/out/units/Q2577141.yml +309 -0
- data/script/out/units/Q25831005.yml +353 -0
- data/script/out/units/Q25835384.yml +168 -0
- data/script/out/units/Q25835436.yml +48 -0
- data/script/out/units/Q25839995.yml +50 -0
- data/script/out/units/Q25840166.yml +136 -0
- data/script/out/units/Q2585995.yml +141 -0
- data/script/out/units/Q25906460.yml +104 -0
- data/script/out/units/Q25907674.yml +81 -0
- data/script/out/units/Q25909370.yml +148 -0
- data/script/out/units/Q25909383.yml +279 -0
- data/script/out/units/Q25909387.yml +48 -0
- data/script/out/units/Q25909396.yml +48 -0
- data/script/out/units/Q25915409.yml +101 -0
- data/script/out/units/Q25915412.yml +101 -0
- data/script/out/units/Q25915415.yml +206 -0
- data/script/out/units/Q25915550.yml +237 -0
- data/script/out/units/Q25915553.yml +104 -0
- data/script/out/units/Q25915555.yml +104 -0
- data/script/out/units/Q25915562.yml +104 -0
- data/script/out/units/Q25915564.yml +89 -0
- data/script/out/units/Q25918336.yml +132 -0
- data/script/out/units/Q25918986.yml +103 -0
- data/script/out/units/Q25919263.yml +103 -0
- data/script/out/units/Q25927083.yml +67 -0
- data/script/out/units/Q25927192.yml +148 -0
- data/script/out/units/Q25927234.yml +176 -0
- data/script/out/units/Q25932175.yml +182 -0
- data/script/out/units/Q259502.yml +740 -0
- data/script/out/units/Q25972335.yml +108 -0
- data/script/out/units/Q25999243.yml +86 -0
- data/script/out/units/Q260103.yml +179 -0
- data/script/out/units/Q260126.yml +276 -0
- data/script/out/units/Q2601873.yml +97 -0
- data/script/out/units/Q260369.yml +202 -0
- data/script/out/units/Q260447.yml +241 -0
- data/script/out/units/Q2612219.yml +193 -0
- data/script/out/units/Q261247.yml +684 -0
- data/script/out/units/Q2613198.yml +57 -0
- data/script/out/units/Q261447.yml +136 -0
- data/script/out/units/Q26156113.yml +125 -0
- data/script/out/units/Q26156132.yml +87 -0
- data/script/out/units/Q26158194.yml +124 -0
- data/script/out/units/Q26162530.yml +117 -0
- data/script/out/units/Q26162541.yml +141 -0
- data/script/out/units/Q26162545.yml +127 -0
- data/script/out/units/Q26162546.yml +115 -0
- data/script/out/units/Q26162557.yml +128 -0
- data/script/out/units/Q26162587.yml +113 -0
- data/script/out/units/Q2616582.yml +224 -0
- data/script/out/units/Q2616592.yml +97 -0
- data/script/out/units/Q2616597.yml +146 -0
- data/script/out/units/Q2616615.yml +161 -0
- data/script/out/units/Q2616640.yml +126 -0
- data/script/out/units/Q2616644.yml +150 -0
- data/script/out/units/Q2619500.yml +129 -0
- data/script/out/units/Q26221041.yml +163 -0
- data/script/out/units/Q26244070.yml +148 -0
- data/script/out/units/Q26250779.yml +105 -0
- data/script/out/units/Q26267938.yml +78 -0
- data/script/out/units/Q26267942.yml +49 -0
- data/script/out/units/Q26267944.yml +80 -0
- data/script/out/units/Q26267949.yml +65 -0
- data/script/out/units/Q26267953.yml +65 -0
- data/script/out/units/Q26267960.yml +95 -0
- data/script/out/units/Q26267965.yml +119 -0
- data/script/out/units/Q26267967.yml +106 -0
- data/script/out/units/Q26267971.yml +93 -0
- data/script/out/units/Q26267974.yml +108 -0
- data/script/out/units/Q26267978.yml +65 -0
- data/script/out/units/Q26267980.yml +78 -0
- data/script/out/units/Q26268013.yml +65 -0
- data/script/out/units/Q26268015.yml +82 -0
- data/script/out/units/Q26268018.yml +107 -0
- data/script/out/units/Q26268024.yml +80 -0
- data/script/out/units/Q26268027.yml +123 -0
- data/script/out/units/Q26268030.yml +65 -0
- data/script/out/units/Q26268034.yml +65 -0
- data/script/out/units/Q26268041.yml +68 -0
- data/script/out/units/Q26268047.yml +65 -0
- data/script/out/units/Q26268049.yml +65 -0
- data/script/out/units/Q26268051.yml +65 -0
- data/script/out/units/Q26268053.yml +65 -0
- data/script/out/units/Q2629054.yml +136 -0
- data/script/out/units/Q2629090.yml +148 -0
- data/script/out/units/Q2633868.yml +138 -0
- data/script/out/units/Q2635004.yml +214 -0
- data/script/out/units/Q26360.yml +2002 -0
- data/script/out/units/Q2636421.yml +87 -0
- data/script/out/units/Q26365.yml +546 -0
- data/script/out/units/Q2637946.yml +203 -0
- data/script/out/units/Q264200.yml +346 -0
- data/script/out/units/Q2642547.yml +60 -0
- data/script/out/units/Q2655272.yml +172 -0
- data/script/out/units/Q2659078.yml +124 -0
- data/script/out/units/Q26609.yml +207 -0
- data/script/out/units/Q2670039.yml +145 -0
- data/script/out/units/Q2670280.yml +149 -0
- data/script/out/units/Q26708069.yml +115 -0
- data/script/out/units/Q267264.yml +328 -0
- data/script/out/units/Q267391.yml +132 -0
- data/script/out/units/Q267637.yml +178 -0
- data/script/out/units/Q2679083.yml +76 -0
- data/script/out/units/Q2681972.yml +67 -0
- data/script/out/units/Q2682463.yml +120 -0
- data/script/out/units/Q268391.yml +217 -0
- data/script/out/units/Q26869687.yml +33 -0
- data/script/out/units/Q2691798.yml +200 -0
- data/script/out/units/Q2700421.yml +74 -0
- data/script/out/units/Q27057892.yml +81 -0
- data/script/out/units/Q270642.yml +439 -0
- data/script/out/units/Q270744.yml +279 -0
- data/script/out/units/Q271206.yml +307 -0
- data/script/out/units/Q2713155.yml +156 -0
- data/script/out/units/Q27148141.yml +1028 -0
- data/script/out/units/Q2717841.yml +38 -0
- data/script/out/units/Q2718629.yml +178 -0
- data/script/out/units/Q2720762.yml +246 -0
- data/script/out/units/Q272290.yml +338 -0
- data/script/out/units/Q2724871.yml +61 -0
- data/script/out/units/Q27301916.yml +89 -0
- data/script/out/units/Q2732163.yml +58 -0
- data/script/out/units/Q2735933.yml +155 -0
- data/script/out/units/Q2737347.yml +314 -0
- data/script/out/units/Q2738187.yml +49 -0
- data/script/out/units/Q2738821.yml +81 -0
- data/script/out/units/Q2739114.yml +135 -0
- data/script/out/units/Q2741468.yml +231 -0
- data/script/out/units/Q2747709.yml +119 -0
- data/script/out/units/Q275112.yml +346 -0
- data/script/out/units/Q2751502.yml +128 -0
- data/script/out/units/Q2753547.yml +70 -0
- data/script/out/units/Q2756030.yml +160 -0
- data/script/out/units/Q2757753.yml +62 -0
- data/script/out/units/Q27614.yml +275 -0
- data/script/out/units/Q2762458.yml +120 -0
- data/script/out/units/Q276688.yml +137 -0
- data/script/out/units/Q2781048.yml +103 -0
- data/script/out/units/Q278141.yml +431 -0
- data/script/out/units/Q2784622.yml +162 -0
- data/script/out/units/Q27861986.yml +49 -0
- data/script/out/units/Q27861987.yml +49 -0
- data/script/out/units/Q27862009.yml +49 -0
- data/script/out/units/Q27863866.yml +49 -0
- data/script/out/units/Q27864215.yml +74 -0
- data/script/out/units/Q27926203.yml +78 -0
- data/script/out/units/Q2793566.yml +91 -0
- data/script/out/units/Q27949241.yml +57 -0
- data/script/out/units/Q27949624.yml +63 -0
- data/script/out/units/Q2799294.yml +168 -0
- data/script/out/units/Q27998984.yml +34 -0
- data/script/out/units/Q28003216.yml +79 -0
- data/script/out/units/Q28004905.yml +46 -0
- data/script/out/units/Q280164.yml +112 -0
- data/script/out/units/Q281096.yml +188 -0
- data/script/out/units/Q28130189.yml +148 -0
- data/script/out/units/Q28151167.yml +67 -0
- data/script/out/units/Q28171715.yml +81 -0
- data/script/out/units/Q28223868.yml +49 -0
- data/script/out/units/Q28232349.yml +90 -0
- data/script/out/units/Q2836792.yml +34 -0
- data/script/out/units/Q28390.yml +631 -0
- data/script/out/units/Q2844434.yml +262 -0
- data/script/out/units/Q2844477.yml +37 -0
- data/script/out/units/Q2844478.yml +103 -0
- data/script/out/units/Q28457486.yml +77 -0
- data/script/out/units/Q284602.yml +165 -0
- data/script/out/units/Q28477831.yml +67 -0
- data/script/out/units/Q28500963.yml +70 -0
- data/script/out/units/Q2852035.yml +93 -0
- data/script/out/units/Q2855799.yml +120 -0
- data/script/out/units/Q285682.yml +266 -0
- data/script/out/units/Q28649044.yml +77 -0
- data/script/out/units/Q28657331.yml +48 -0
- data/script/out/units/Q28719934.yml +202 -0
- data/script/out/units/Q28739762.yml +70 -0
- data/script/out/units/Q28739766.yml +89 -0
- data/script/out/units/Q28765889.yml +88 -0
- data/script/out/units/Q288112.yml +241 -0
- data/script/out/units/Q28924752.yml +113 -0
- data/script/out/units/Q28924753.yml +127 -0
- data/script/out/units/Q2893932.yml +90 -0
- data/script/out/units/Q2894303.yml +318 -0
- data/script/out/units/Q2903517.yml +80 -0
- data/script/out/units/Q2914806.yml +167 -0
- data/script/out/units/Q2915374.yml +160 -0
- data/script/out/units/Q2924137.yml +87 -0
- data/script/out/units/Q2936398.yml +93 -0
- data/script/out/units/Q29463499.yml +72 -0
- data/script/out/units/Q29463526.yml +72 -0
- data/script/out/units/Q29583124.yml +1219 -0
- data/script/out/units/Q2963205.yml +58 -0
- data/script/out/units/Q296936.yml +252 -0
- data/script/out/units/Q2976558.yml +81 -0
- data/script/out/units/Q2981070.yml +103 -0
- data/script/out/units/Q2983011.yml +117 -0
- data/script/out/units/Q29864838.yml +64 -0
- data/script/out/units/Q29924561.yml +90 -0
- data/script/out/units/Q29924639.yml +94 -0
- data/script/out/units/Q2993680.yml +147 -0
- data/script/out/units/Q2995888.yml +93 -0
- data/script/out/units/Q30001810.yml +97 -0
- data/script/out/units/Q30001811.yml +97 -0
- data/script/out/units/Q30001812.yml +42 -0
- data/script/out/units/Q30001813.yml +42 -0
- data/script/out/units/Q30001814.yml +42 -0
- data/script/out/units/Q30001815.yml +42 -0
- data/script/out/units/Q30001816.yml +42 -0
- data/script/out/units/Q30001817.yml +42 -0
- data/script/out/units/Q30001818.yml +42 -0
- data/script/out/units/Q30001819.yml +42 -0
- data/script/out/units/Q30001820.yml +42 -0
- data/script/out/units/Q30001821.yml +42 -0
- data/script/out/units/Q30001822.yml +42 -0
- data/script/out/units/Q30001823.yml +42 -0
- data/script/out/units/Q30001825.yml +42 -0
- data/script/out/units/Q30001826.yml +42 -0
- data/script/out/units/Q30001827.yml +42 -0
- data/script/out/units/Q30001828.yml +42 -0
- data/script/out/units/Q30001829.yml +42 -0
- data/script/out/units/Q30001830.yml +42 -0
- data/script/out/units/Q30001831.yml +42 -0
- data/script/out/units/Q30001832.yml +42 -0
- data/script/out/units/Q30001833.yml +42 -0
- data/script/out/units/Q30005038.yml +83 -0
- data/script/out/units/Q30063541.yml +72 -0
- data/script/out/units/Q30063612.yml +57 -0
- data/script/out/units/Q30063650.yml +72 -0
- data/script/out/units/Q30063714.yml +57 -0
- data/script/out/units/Q30063740.yml +69 -0
- data/script/out/units/Q30063903.yml +72 -0
- data/script/out/units/Q30063922.yml +72 -0
- data/script/out/units/Q30063933.yml +69 -0
- data/script/out/units/Q30064054.yml +65 -0
- data/script/out/units/Q30064159.yml +54 -0
- data/script/out/units/Q30064202.yml +54 -0
- data/script/out/units/Q30064231.yml +84 -0
- data/script/out/units/Q30064318.yml +42 -0
- data/script/out/units/Q30064324.yml +45 -0
- data/script/out/units/Q30064611.yml +57 -0
- data/script/out/units/Q30066654.yml +69 -0
- data/script/out/units/Q30080109.yml +87 -0
- data/script/out/units/Q300887.yml +414 -0
- data/script/out/units/Q30093538.yml +50 -0
- data/script/out/units/Q30093561.yml +50 -0
- data/script/out/units/Q30093568.yml +37 -0
- data/script/out/units/Q30093580.yml +50 -0
- data/script/out/units/Q30093584.yml +50 -0
- data/script/out/units/Q30093587.yml +50 -0
- data/script/out/units/Q30095434.yml +54 -0
- data/script/out/units/Q30095464.yml +50 -0
- data/script/out/units/Q30095482.yml +50 -0
- data/script/out/units/Q30100567.yml +50 -0
- data/script/out/units/Q30102982.yml +35 -0
- data/script/out/units/Q30102988.yml +52 -0
- data/script/out/units/Q30103018.yml +52 -0
- data/script/out/units/Q30128253.yml +88 -0
- data/script/out/units/Q3013059.yml +130 -0
- data/script/out/units/Q301728.yml +397 -0
- data/script/out/units/Q3021257.yml +53 -0
- data/script/out/units/Q3022468.yml +140 -0
- data/script/out/units/Q30324920.yml +2333 -0
- data/script/out/units/Q30325502.yml +48 -0
- data/script/out/units/Q30338067.yml +170 -0
- data/script/out/units/Q30338333.yml +111 -0
- data/script/out/units/Q30338391.yml +160 -0
- data/script/out/units/Q30338605.yml +96 -0
- data/script/out/units/Q303713.yml +299 -0
- data/script/out/units/Q304122.yml +93 -0
- data/script/out/units/Q304479.yml +172 -0
- data/script/out/units/Q30504331.yml +1924 -0
- data/script/out/units/Q3055231.yml +46 -0
- data/script/out/units/Q305600.yml +83 -0
- data/script/out/units/Q3057942.yml +97 -0
- data/script/out/units/Q30588224.yml +62 -0
- data/script/out/units/Q305896.yml +239 -0
- data/script/out/units/Q3060693.yml +84 -0
- data/script/out/units/Q306306.yml +224 -0
- data/script/out/units/Q3064816.yml +113 -0
- data/script/out/units/Q3068199.yml +49 -0
- data/script/out/units/Q3072467.yml +121 -0
- data/script/out/units/Q3080510.yml +62 -0
- data/script/out/units/Q3085309.yml +138 -0
- data/script/out/units/Q308765.yml +235 -0
- data/script/out/units/Q31015.yml +597 -0
- data/script/out/units/Q31033540.yml +44 -0
- data/script/out/units/Q3105497.yml +200 -0
- data/script/out/units/Q3116971.yml +38 -0
- data/script/out/units/Q3117809.yml +122 -0
- data/script/out/units/Q3186734.yml +54 -0
- data/script/out/units/Q3194304.yml +208 -0
- data/script/out/units/Q3194571.yml +140 -0
- data/script/out/units/Q3195007.yml +73 -0
- data/script/out/units/Q319885.yml +311 -0
- data/script/out/units/Q3207456.yml +135 -0
- data/script/out/units/Q321017.yml +323 -0
- data/script/out/units/Q3221356.yml +256 -0
- data/script/out/units/Q32361.yml +221 -0
- data/script/out/units/Q3236732.yml +34 -0
- data/script/out/units/Q3239557.yml +188 -0
- data/script/out/units/Q3241121.yml +467 -0
- data/script/out/units/Q324923.yml +219 -0
- data/script/out/units/Q3249364.yml +108 -0
- data/script/out/units/Q3251645.yml +104 -0
- data/script/out/units/Q3267417.yml +189 -0
- data/script/out/units/Q3270676.yml +189 -0
- data/script/out/units/Q32738707.yml +96 -0
- data/script/out/units/Q32739436.yml +96 -0
- data/script/out/units/Q32740845.yml +158 -0
- data/script/out/units/Q32744917.yml +188 -0
- data/script/out/units/Q32745742.yml +96 -0
- data/script/out/units/Q32746002.yml +96 -0
- data/script/out/units/Q32750621.yml +277 -0
- data/script/out/units/Q32750759.yml +281 -0
- data/script/out/units/Q32750816.yml +277 -0
- data/script/out/units/Q32751272.yml +277 -0
- data/script/out/units/Q32751296.yml +239 -0
- data/script/out/units/Q3276763.yml +229 -0
- data/script/out/units/Q3277907.yml +169 -0
- data/script/out/units/Q3277915.yml +169 -0
- data/script/out/units/Q3277919.yml +177 -0
- data/script/out/units/Q3278265.yml +67 -0
- data/script/out/units/Q3278947.yml +103 -0
- data/script/out/units/Q3290178.yml +76 -0
- data/script/out/units/Q330044.yml +294 -0
- data/script/out/units/Q33061051.yml +42 -0
- data/script/out/units/Q33062.yml +280 -0
- data/script/out/units/Q33083015.yml +53 -0
- data/script/out/units/Q3312063.yml +197 -0
- data/script/out/units/Q3320608.yml +210 -0
- data/script/out/units/Q3331719.yml +114 -0
- data/script/out/units/Q3332092.yml +39 -0
- data/script/out/units/Q3332098.yml +57 -0
- data/script/out/units/Q3332099.yml +73 -0
- data/script/out/units/Q3332689.yml +78 -0
- data/script/out/units/Q3332814.yml +248 -0
- data/script/out/units/Q3332822.yml +230 -0
- data/script/out/units/Q3348257.yml +78 -0
- data/script/out/units/Q33521887.yml +83 -0
- data/script/out/units/Q335320.yml +126 -0
- data/script/out/units/Q3356258.yml +116 -0
- data/script/out/units/Q335897.yml +120 -0
- data/script/out/units/Q33680.yml +830 -0
- data/script/out/units/Q3376227.yml +66 -0
- data/script/out/units/Q338261.yml +148 -0
- data/script/out/units/Q3395194.yml +101 -0
- data/script/out/units/Q3396758.yml +99 -0
- data/script/out/units/Q3400492.yml +96 -0
- data/script/out/units/Q341454.yml +177 -0
- data/script/out/units/Q3421309.yml +160 -0
- data/script/out/units/Q342590.yml +121 -0
- data/script/out/units/Q34285806.yml +42 -0
- data/script/out/units/Q3430025.yml +194 -0
- data/script/out/units/Q34328146.yml +209 -0
- data/script/out/units/Q3446398.yml +192 -0
- data/script/out/units/Q3449658.yml +119 -0
- data/script/out/units/Q3492422.yml +68 -0
- data/script/out/units/Q3499846.yml +112 -0
- data/script/out/units/Q3499947.yml +53 -0
- data/script/out/units/Q350023.yml +50 -0
- data/script/out/units/Q35152984.yml +63 -0
- data/script/out/units/Q351646.yml +58 -0
- data/script/out/units/Q3523906.yml +65 -0
- data/script/out/units/Q352512.yml +157 -0
- data/script/out/units/Q352599.yml +156 -0
- data/script/out/units/Q3543447.yml +85 -0
- data/script/out/units/Q355198.yml +415 -0
- data/script/out/units/Q3556033.yml +93 -0
- data/script/out/units/Q3561856.yml +74 -0
- data/script/out/units/Q3562962.yml +51 -0
- data/script/out/units/Q356550.yml +45 -0
- data/script/out/units/Q3565837.yml +66 -0
- data/script/out/units/Q3566738.yml +41 -0
- data/script/out/units/Q3573123.yml +50 -0
- data/script/out/units/Q3582.yml +38 -0
- data/script/out/units/Q35852.yml +910 -0
- data/script/out/units/Q358597.yml +89 -0
- data/script/out/units/Q35881.yml +382 -0
- data/script/out/units/Q359151.yml +169 -0
- data/script/out/units/Q35921.yml +158 -0
- data/script/out/units/Q359587.yml +150 -0
- data/script/out/units/Q360487.yml +103 -0
- data/script/out/units/Q3613515.yml +89 -0
- data/script/out/units/Q3617326.yml +238 -0
- data/script/out/units/Q36384.yml +115 -0
- data/script/out/units/Q363958.yml +393 -0
- data/script/out/units/Q36422.yml +828 -0
- data/script/out/units/Q3646719.yml +273 -0
- data/script/out/units/Q36507.yml +738 -0
- data/script/out/units/Q366443.yml +57 -0
- data/script/out/units/Q3675550.yml +204 -0
- data/script/out/units/Q3676321.yml +158 -0
- data/script/out/units/Q3710.yml +1096 -0
- data/script/out/units/Q3712659.yml +179 -0
- data/script/out/units/Q3712660.yml +179 -0
- data/script/out/units/Q3712661.yml +180 -0
- data/script/out/units/Q3712663.yml +68 -0
- data/script/out/units/Q3712664.yml +53 -0
- data/script/out/units/Q3712665.yml +71 -0
- data/script/out/units/Q3712666.yml +53 -0
- data/script/out/units/Q3712668.yml +53 -0
- data/script/out/units/Q3712669.yml +53 -0
- data/script/out/units/Q3712671.yml +71 -0
- data/script/out/units/Q3712672.yml +71 -0
- data/script/out/units/Q3730828.yml +117 -0
- data/script/out/units/Q373429.yml +272 -0
- data/script/out/units/Q374453.yml +302 -0
- data/script/out/units/Q3751676.yml +89 -0
- data/script/out/units/Q3751677.yml +89 -0
- data/script/out/units/Q3751680.yml +89 -0
- data/script/out/units/Q375180.yml +366 -0
- data/script/out/units/Q3756348.yml +49 -0
- data/script/out/units/Q375784.yml +317 -0
- data/script/out/units/Q3764641.yml +65 -0
- data/script/out/units/Q376660.yml +227 -0
- data/script/out/units/Q376895.yml +285 -0
- data/script/out/units/Q3772911.yml +58 -0
- data/script/out/units/Q37732658.yml +165 -0
- data/script/out/units/Q3773454.yml +158 -0
- data/script/out/units/Q3774493.yml +257 -0
- data/script/out/units/Q3774562.yml +108 -0
- data/script/out/units/Q3778763.yml +203 -0
- data/script/out/units/Q378201.yml +307 -0
- data/script/out/units/Q3785200.yml +164 -0
- data/script/out/units/Q3809228.yml +42 -0
- data/script/out/units/Q3814108.yml +155 -0
- data/script/out/units/Q3814202.yml +56 -0
- data/script/out/units/Q3815076.yml +172 -0
- data/script/out/units/Q381595.yml +198 -0
- data/script/out/units/Q381816.yml +193 -0
- data/script/out/units/Q383187.yml +228 -0
- data/script/out/units/Q3833304.yml +138 -0
- data/script/out/units/Q3833307.yml +122 -0
- data/script/out/units/Q3833310.yml +103 -0
- data/script/out/units/Q384102.yml +310 -0
- data/script/out/units/Q3849265.yml +159 -0
- data/script/out/units/Q38623562.yml +48 -0
- data/script/out/units/Q3867091.yml +172 -0
- data/script/out/units/Q3867152.yml +216 -0
- data/script/out/units/Q38682622.yml +82 -0
- data/script/out/units/Q38683758.yml +45 -0
- data/script/out/units/Q3883424.yml +121 -0
- data/script/out/units/Q3888975.yml +142 -0
- data/script/out/units/Q389062.yml +183 -0
- data/script/out/units/Q3900740.yml +114 -0
- data/script/out/units/Q3900745.yml +209 -0
- data/script/out/units/Q3900747.yml +130 -0
- data/script/out/units/Q3900749.yml +67 -0
- data/script/out/units/Q3900751.yml +136 -0
- data/script/out/units/Q3900753.yml +71 -0
- data/script/out/units/Q3902688.yml +137 -0
- data/script/out/units/Q3902709.yml +199 -0
- data/script/out/units/Q39048590.yml +61 -0
- data/script/out/units/Q39099.yml +792 -0
- data/script/out/units/Q3912951.yml +85 -0
- data/script/out/units/Q39274.yml +217 -0
- data/script/out/units/Q392858.yml +175 -0
- data/script/out/units/Q392928.yml +480 -0
- data/script/out/units/Q3931072.yml +156 -0
- data/script/out/units/Q3931074.yml +85 -0
- data/script/out/units/Q3931076.yml +46 -0
- data/script/out/units/Q3935770.yml +54 -0
- data/script/out/units/Q39359957.yml +317 -0
- data/script/out/units/Q39360235.yml +317 -0
- data/script/out/units/Q39360471.yml +320 -0
- data/script/out/units/Q39362962.yml +320 -0
- data/script/out/units/Q39363132.yml +320 -0
- data/script/out/units/Q39363209.yml +330 -0
- data/script/out/units/Q39363358.yml +42 -0
- data/script/out/units/Q39369.yml +826 -0
- data/script/out/units/Q39380159.yml +320 -0
- data/script/out/units/Q394143.yml +49 -0
- data/script/out/units/Q3942166.yml +116 -0
- data/script/out/units/Q3942822.yml +57 -0
- data/script/out/units/Q39462246.yml +203 -0
- data/script/out/units/Q39462501.yml +42 -0
- data/script/out/units/Q39462620.yml +45 -0
- data/script/out/units/Q39462709.yml +42 -0
- data/script/out/units/Q39462789.yml +203 -0
- data/script/out/units/Q39467725.yml +45 -0
- data/script/out/units/Q39467934.yml +59 -0
- data/script/out/units/Q39468084.yml +61 -0
- data/script/out/units/Q39469927.yml +60 -0
- data/script/out/units/Q3951942.yml +56 -0
- data/script/out/units/Q3953133.yml +93 -0
- data/script/out/units/Q395390.yml +156 -0
- data/script/out/units/Q3955006.yml +73 -0
- data/script/out/units/Q39617526.yml +268 -0
- data/script/out/units/Q39617688.yml +268 -0
- data/script/out/units/Q39617818.yml +268 -0
- data/script/out/units/Q39628023.yml +44 -0
- data/script/out/units/Q39632159.yml +59 -0
- data/script/out/units/Q39699418.yml +81 -0
- data/script/out/units/Q39706616.yml +44 -0
- data/script/out/units/Q39706694.yml +44 -0
- data/script/out/units/Q39708248.yml +59 -0
- data/script/out/units/Q39708821.yml +44 -0
- data/script/out/units/Q39709980.yml +59 -0
- data/script/out/units/Q39710113.yml +59 -0
- data/script/out/units/Q39710583.yml +44 -0
- data/script/out/units/Q3972226.yml +138 -0
- data/script/out/units/Q3973266.yml +90 -0
- data/script/out/units/Q3973267.yml +68 -0
- data/script/out/units/Q3973271.yml +409 -0
- data/script/out/units/Q3979849.yml +52 -0
- data/script/out/units/Q3980493.yml +114 -0
- data/script/out/units/Q3980496.yml +71 -0
- data/script/out/units/Q3983454.yml +89 -0
- data/script/out/units/Q39911.yml +716 -0
- data/script/out/units/Q39978339.yml +64 -0
- data/script/out/units/Q39998555.yml +47 -0
- data/script/out/units/Q4008482.yml +126 -0
- data/script/out/units/Q40203.yml +852 -0
- data/script/out/units/Q4041686.yml +116 -0
- data/script/out/units/Q4043030.yml +790 -0
- data/script/out/units/Q4059455.yml +97 -0
- data/script/out/units/Q40603.yml +328 -0
- data/script/out/units/Q4060587.yml +136 -0
- data/script/out/units/Q4063874.yml +106 -0
- data/script/out/units/Q4068266.yml +341 -0
- data/script/out/units/Q4074689.yml +106 -0
- data/script/out/units/Q4077050.yml +37 -0
- data/script/out/units/Q4079241.yml +157 -0
- data/script/out/units/Q4080926.yml +126 -0
- data/script/out/units/Q4085039.yml +134 -0
- data/script/out/units/Q4093460.yml +70 -0
- data/script/out/units/Q4097090.yml +46 -0
- data/script/out/units/Q4098585.yml +83 -0
- data/script/out/units/Q4100164.yml +104 -0
- data/script/out/units/Q41044.yml +873 -0
- data/script/out/units/Q4112014.yml +126 -0
- data/script/out/units/Q4117165.yml +89 -0
- data/script/out/units/Q4117175.yml +89 -0
- data/script/out/units/Q4118293.yml +75 -0
- data/script/out/units/Q4133026.yml +125 -0
- data/script/out/units/Q4134503.yml +42 -0
- data/script/out/units/Q4140446.yml +116 -0
- data/script/out/units/Q414263.yml +241 -0
- data/script/out/units/Q41429.yml +365 -0
- data/script/out/units/Q41509.yml +703 -0
- data/script/out/units/Q4154909.yml +50 -0
- data/script/out/units/Q41588.yml +515 -0
- data/script/out/units/Q41588368.yml +35 -0
- data/script/out/units/Q4165057.yml +96 -0
- data/script/out/units/Q4165058.yml +93 -0
- data/script/out/units/Q417551.yml +49 -0
- data/script/out/units/Q4176683.yml +171 -0
- data/script/out/units/Q41803.yml +888 -0
- data/script/out/units/Q41805988.yml +118 -0
- data/script/out/units/Q4192500.yml +89 -0
- data/script/out/units/Q4193544.yml +151 -0
- data/script/out/units/Q420266.yml +410 -0
- data/script/out/units/Q42148852.yml +151 -0
- data/script/out/units/Q4220561.yml +146 -0
- data/script/out/units/Q42247535.yml +47 -0
- data/script/out/units/Q4228784.yml +38 -0
- data/script/out/units/Q42289.yml +817 -0
- data/script/out/units/Q42319606.yml +81 -0
- data/script/out/units/Q4241612.yml +120 -0
- data/script/out/units/Q4243638.yml +258 -0
- data/script/out/units/Q424754.yml +244 -0
- data/script/out/units/Q4248884.yml +139 -0
- data/script/out/units/Q42593.yml +42 -0
- data/script/out/units/Q4263937.yml +46 -0
- data/script/out/units/Q426507.yml +156 -0
- data/script/out/units/Q4266153.yml +134 -0
- data/script/out/units/Q4272180.yml +69 -0
- data/script/out/units/Q427347.yml +187 -0
- data/script/out/units/Q4274161.yml +107 -0
- data/script/out/units/Q42764.yml +117 -0
- data/script/out/units/Q4281830.yml +173 -0
- data/script/out/units/Q4281836.yml +127 -0
- data/script/out/units/Q428579.yml +315 -0
- data/script/out/units/Q42907547.yml +76 -0
- data/script/out/units/Q4293563.yml +64 -0
- data/script/out/units/Q4295043.yml +38 -0
- data/script/out/units/Q4299586.yml +38 -0
- data/script/out/units/Q4342566.yml +63 -0
- data/script/out/units/Q43430.yml +286 -0
- data/script/out/units/Q4343734.yml +59 -0
- data/script/out/units/Q4346600.yml +95 -0
- data/script/out/units/Q4347344.yml +89 -0
- data/script/out/units/Q4347407.yml +120 -0
- data/script/out/units/Q4348571.yml +72 -0
- data/script/out/units/Q4352038.yml +73 -0
- data/script/out/units/Q4362333.yml +91 -0
- data/script/out/units/Q43667.yml +252 -0
- data/script/out/units/Q43712.yml +280 -0
- data/script/out/units/Q4385486.yml +119 -0
- data/script/out/units/Q4391496.yml +42 -0
- data/script/out/units/Q4394287.yml +46 -0
- data/script/out/units/Q4400173.yml +65 -0
- data/script/out/units/Q44018216.yml +60 -0
- data/script/out/units/Q4406.yml +241 -0
- data/script/out/units/Q4406458.yml +107 -0
- data/script/out/units/Q4408566.yml +72 -0
- data/script/out/units/Q4409055.yml +73 -0
- data/script/out/units/Q44155.yml +618 -0
- data/script/out/units/Q4417444.yml +176 -0
- data/script/out/units/Q4418146.yml +58 -0
- data/script/out/units/Q4421813.yml +73 -0
- data/script/out/units/Q44395.yml +1021 -0
- data/script/out/units/Q4443074.yml +114 -0
- data/script/out/units/Q4456994.yml +76 -0
- data/script/out/units/Q4461419.yml +65 -0
- data/script/out/units/Q4463210.yml +115 -0
- data/script/out/units/Q447038.yml +138 -0
- data/script/out/units/Q44707302.yml +113 -0
- data/script/out/units/Q44904.yml +110 -0
- data/script/out/units/Q4492363.yml +139 -0
- data/script/out/units/Q4492365.yml +89 -0
- data/script/out/units/Q4514998.yml +126 -0
- data/script/out/units/Q45321645.yml +38 -0
- data/script/out/units/Q4538447.yml +77 -0
- data/script/out/units/Q455052.yml +93 -0
- data/script/out/units/Q45750264.yml +137 -0
- data/script/out/units/Q4580949.yml +182 -0
- data/script/out/units/Q4584.yml +336 -0
- data/script/out/units/Q4587.yml +342 -0
- data/script/out/units/Q4588.yml +310 -0
- data/script/out/units/Q4589.yml +330 -0
- data/script/out/units/Q4591.yml +311 -0
- data/script/out/units/Q4592.yml +343 -0
- data/script/out/units/Q4594.yml +311 -0
- data/script/out/units/Q4595.yml +341 -0
- data/script/out/units/Q4596.yml +394 -0
- data/script/out/units/Q4597.yml +323 -0
- data/script/out/units/Q4598.yml +318 -0
- data/script/out/units/Q4602.yml +365 -0
- data/script/out/units/Q4603.yml +304 -0
- data/script/out/units/Q4608.yml +482 -0
- data/script/out/units/Q46123112.yml +47 -0
- data/script/out/units/Q4613.yml +397 -0
- data/script/out/units/Q46600518.yml +201 -0
- data/script/out/units/Q4667368.yml +96 -0
- data/script/out/units/Q4668106.yml +46 -0
- data/script/out/units/Q46696265.yml +131 -0
- data/script/out/units/Q4670519.yml +53 -0
- data/script/out/units/Q4674697.yml +124 -0
- data/script/out/units/Q468474.yml +350 -0
- data/script/out/units/Q469356.yml +437 -0
- data/script/out/units/Q46996009.yml +565 -0
- data/script/out/units/Q47083.yml +871 -0
- data/script/out/units/Q4713406.yml +57 -0
- data/script/out/units/Q47134419.yml +54 -0
- data/script/out/units/Q4719.yml +323 -0
- data/script/out/units/Q47190.yml +512 -0
- data/script/out/units/Q471978.yml +89 -0
- data/script/out/units/Q47273538.yml +326 -0
- data/script/out/units/Q4730.yml +494 -0
- data/script/out/units/Q4734.yml +368 -0
- data/script/out/units/Q4741.yml +357 -0
- data/script/out/units/Q474142.yml +140 -0
- data/script/out/units/Q474533.yml +203 -0
- data/script/out/units/Q47457131.yml +102 -0
- data/script/out/units/Q4748130.yml +75 -0
- data/script/out/units/Q47488338.yml +73 -0
- data/script/out/units/Q47504639.yml +50 -0
- data/script/out/units/Q47510188.yml +79 -0
- data/script/out/units/Q476078.yml +335 -0
- data/script/out/units/Q476195.yml +218 -0
- data/script/out/units/Q4763680.yml +55 -0
- data/script/out/units/Q476572.yml +291 -0
- data/script/out/units/Q479505.yml +467 -0
- data/script/out/units/Q4796294.yml +64 -0
- data/script/out/units/Q480022.yml +112 -0
- data/script/out/units/Q48013.yml +699 -0
- data/script/out/units/Q4823.yml +336 -0
- data/script/out/units/Q4825484.yml +42 -0
- data/script/out/units/Q482798.yml +815 -0
- data/script/out/units/Q4830131.yml +73 -0
- data/script/out/units/Q483261.yml +712 -0
- data/script/out/units/Q4833554.yml +38 -0
- data/script/out/units/Q483725.yml +507 -0
- data/script/out/units/Q4840770.yml +34 -0
- data/script/out/units/Q484092.yml +688 -0
- data/script/out/units/Q48440.yml +345 -0
- data/script/out/units/Q4853401.yml +85 -0
- data/script/out/units/Q4861171.yml +143 -0
- data/script/out/units/Q486637.yml +355 -0
- data/script/out/units/Q48680.yml +164 -0
- data/script/out/units/Q487060.yml +148 -0
- data/script/out/units/Q487888.yml +381 -0
- data/script/out/units/Q488013.yml +430 -0
- data/script/out/units/Q488021.yml +271 -0
- data/script/out/units/Q489596.yml +224 -0
- data/script/out/units/Q4916.yml +3673 -0
- data/script/out/units/Q4917.yml +1574 -0
- data/script/out/units/Q492596.yml +312 -0
- data/script/out/units/Q492724.yml +128 -0
- data/script/out/units/Q492941.yml +429 -0
- data/script/out/units/Q4936395.yml +38 -0
- data/script/out/units/Q4940098.yml +52 -0
- data/script/out/units/Q494083.yml +536 -0
- data/script/out/units/Q495983.yml +124 -0
- data/script/out/units/Q4968003.yml +57 -0
- data/script/out/units/Q496938.yml +252 -0
- data/script/out/units/Q498831.yml +290 -0
- data/script/out/units/Q4989854.yml +132 -0
- data/script/out/units/Q4992215.yml +129 -0
- data/script/out/units/Q4992853.yml +241 -0
- data/script/out/units/Q499299.yml +338 -0
- data/script/out/units/Q499307.yml +310 -0
- data/script/out/units/Q4994693.yml +46 -0
- data/script/out/units/Q500515.yml +371 -0
- data/script/out/units/Q50094.yml +720 -0
- data/script/out/units/Q50098.yml +547 -0
- data/script/out/units/Q5019825.yml +45 -0
- data/script/out/units/Q502171.yml +294 -0
- data/script/out/units/Q502179.yml +435 -0
- data/script/out/units/Q5022938.yml +48 -0
- data/script/out/units/Q5025305.yml +145 -0
- data/script/out/units/Q5025306.yml +208 -0
- data/script/out/units/Q5025307.yml +149 -0
- data/script/out/units/Q5025308.yml +149 -0
- data/script/out/units/Q5025311.yml +149 -0
- data/script/out/units/Q503349.yml +390 -0
- data/script/out/units/Q503370.yml +172 -0
- data/script/out/units/Q5035182.yml +38 -0
- data/script/out/units/Q5042194.yml +223 -0
- data/script/out/units/Q5054840.yml +42 -0
- data/script/out/units/Q5057375.yml +38 -0
- data/script/out/units/Q507464.yml +105 -0
- data/script/out/units/Q507737.yml +225 -0
- data/script/out/units/Q508438.yml +369 -0
- data/script/out/units/Q508465.yml +379 -0
- data/script/out/units/Q508479.yml +361 -0
- data/script/out/units/Q508587.yml +370 -0
- data/script/out/units/Q508633.yml +302 -0
- data/script/out/units/Q508650.yml +314 -0
- data/script/out/units/Q508675.yml +376 -0
- data/script/out/units/Q508691.yml +354 -0
- data/script/out/units/Q5121670.yml +73 -0
- data/script/out/units/Q513206.yml +173 -0
- data/script/out/units/Q5139324.yml +73 -0
- data/script/out/units/Q5139563.yml +166 -0
- data/script/out/units/Q514845.yml +172 -0
- data/script/out/units/Q514873.yml +350 -0
- data/script/out/units/Q514893.yml +346 -0
- data/script/out/units/Q5151.yml +1322 -0
- data/script/out/units/Q5161666.yml +62 -0
- data/script/out/units/Q5180211.yml +65 -0
- data/script/out/units/Q5181875.yml +38 -0
- data/script/out/units/Q5193042.yml +38 -0
- data/script/out/units/Q5195628.yml +110 -0
- data/script/out/units/Q5196162.yml +53 -0
- data/script/out/units/Q5198770.yml +61 -0
- data/script/out/units/Q521164.yml +258 -0
- data/script/out/units/Q521994.yml +165 -0
- data/script/out/units/Q522295.yml +144 -0
- data/script/out/units/Q522701.yml +312 -0
- data/script/out/units/Q5242756.yml +42 -0
- data/script/out/units/Q524410.yml +76 -0
- data/script/out/units/Q5248738.yml +86 -0
- data/script/out/units/Q5251833.yml +38 -0
- data/script/out/units/Q5253462.yml +62 -0
- data/script/out/units/Q5263280.yml +50 -0
- data/script/out/units/Q5290859.yml +89 -0
- data/script/out/units/Q530828.yml +348 -0
- data/script/out/units/Q5309589.yml +52 -0
- data/script/out/units/Q531.yml +1294 -0
- data/script/out/units/Q5312205.yml +57 -0
- data/script/out/units/Q5322798.yml +62 -0
- data/script/out/units/Q5329.yml +472 -0
- data/script/out/units/Q5348496.yml +42 -0
- data/script/out/units/Q535476.yml +213 -0
- data/script/out/units/Q536785.yml +252 -0
- data/script/out/units/Q539959.yml +114 -0
- data/script/out/units/Q540479.yml +355 -0
- data/script/out/units/Q542236.yml +175 -0
- data/script/out/units/Q542238.yml +93 -0
- data/script/out/units/Q542304.yml +136 -0
- data/script/out/units/Q5429414.yml +57 -0
- data/script/out/units/Q5447597.yml +42 -0
- data/script/out/units/Q5447600.yml +38 -0
- data/script/out/units/Q5454247.yml +38 -0
- data/script/out/units/Q545853.yml +253 -0
- data/script/out/units/Q5459058.yml +53 -0
- data/script/out/units/Q5459376.yml +89 -0
- data/script/out/units/Q5465723.yml +96 -0
- data/script/out/units/Q5465726.yml +116 -0
- data/script/out/units/Q5479713.yml +38 -0
- data/script/out/units/Q549024.yml +378 -0
- data/script/out/units/Q5491288.yml +85 -0
- data/script/out/units/Q5493753.yml +53 -0
- data/script/out/units/Q549389.yml +208 -0
- data/script/out/units/Q5502046.yml +48 -0
- data/script/out/units/Q550341.yml +541 -0
- data/script/out/units/Q5505076.yml +38 -0
- data/script/out/units/Q5519125.yml +49 -0
- data/script/out/units/Q5519131.yml +34 -0
- data/script/out/units/Q552299.yml +606 -0
- data/script/out/units/Q552826.yml +109 -0
- data/script/out/units/Q5547953.yml +62 -0
- data/script/out/units/Q558904.yml +233 -0
- data/script/out/units/Q5592098.yml +50 -0
- data/script/out/units/Q560355.yml +226 -0
- data/script/out/units/Q5610850.yml +69 -0
- data/script/out/units/Q5619428.yml +63 -0
- data/script/out/units/Q5639749.yml +38 -0
- data/script/out/units/Q567911.yml +292 -0
- data/script/out/units/Q569389.yml +139 -0
- data/script/out/units/Q572213.yml +251 -0
- data/script/out/units/Q572664.yml +324 -0
- data/script/out/units/Q573.yml +1611 -0
- data/script/out/units/Q575630.yml +70 -0
- data/script/out/units/Q5761018.yml +65 -0
- data/script/out/units/Q576789.yml +227 -0
- data/script/out/units/Q577.yml +1702 -0
- data/script/out/units/Q578.yml +928 -0
- data/script/out/units/Q582801.yml +198 -0
- data/script/out/units/Q583151.yml +253 -0
- data/script/out/units/Q586290.yml +38 -0
- data/script/out/units/Q586598.yml +89 -0
- data/script/out/units/Q5879479.yml +165 -0
- data/script/out/units/Q591259.yml +185 -0
- data/script/out/units/Q591906.yml +261 -0
- data/script/out/units/Q592634.yml +310 -0
- data/script/out/units/Q593880.yml +134 -0
- data/script/out/units/Q5942184.yml +86 -0
- data/script/out/units/Q595634.yml +273 -0
- data/script/out/units/Q5974056.yml +63 -0
- data/script/out/units/Q599170.yml +261 -0
- data/script/out/units/Q600213.yml +163 -0
- data/script/out/units/Q6003257.yml +193 -0
- data/script/out/units/Q6014364.yml +79 -0
- data/script/out/units/Q6016362.yml +34 -0
- data/script/out/units/Q603071.yml +245 -0
- data/script/out/units/Q605601.yml +441 -0
- data/script/out/units/Q605704.yml +393 -0
- data/script/out/units/Q6072299.yml +149 -0
- data/script/out/units/Q607248.yml +282 -0
- data/script/out/units/Q607992.yml +312 -0
- data/script/out/units/Q608697.yml +328 -0
- data/script/out/units/Q60950.yml +223 -0
- data/script/out/units/Q610135.yml +128 -0
- data/script/out/units/Q613726.yml +133 -0
- data/script/out/units/Q6144634.yml +74 -0
- data/script/out/units/Q6145487.yml +46 -0
- data/script/out/units/Q615640.yml +517 -0
- data/script/out/units/Q6158177.yml +73 -0
- data/script/out/units/Q6170164.yml +176 -0
- data/script/out/units/Q6171168.yml +176 -0
- data/script/out/units/Q618162.yml +182 -0
- data/script/out/units/Q618653.yml +136 -0
- data/script/out/units/Q619941.yml +163 -0
- data/script/out/units/Q622265.yml +409 -0
- data/script/out/units/Q622599.yml +306 -0
- data/script/out/units/Q625642.yml +211 -0
- data/script/out/units/Q626270.yml +353 -0
- data/script/out/units/Q626299.yml +448 -0
- data/script/out/units/Q6294539.yml +99 -0
- data/script/out/units/Q630369.yml +183 -0
- data/script/out/units/Q63300.yml +121 -0
- data/script/out/units/Q633834.yml +399 -0
- data/script/out/units/Q6360474.yml +67 -0
- data/script/out/units/Q6385482.yml +71 -0
- data/script/out/units/Q639443.yml +307 -0
- data/script/out/units/Q640907.yml +235 -0
- data/script/out/units/Q6414556.yml +96 -0
- data/script/out/units/Q6428674.yml +375 -0
- data/script/out/units/Q6432930.yml +45 -0
- data/script/out/units/Q643555.yml +155 -0
- data/script/out/units/Q6442700.yml +38 -0
- data/script/out/units/Q645135.yml +320 -0
- data/script/out/units/Q645246.yml +193 -0
- data/script/out/units/Q645398.yml +358 -0
- data/script/out/units/Q646427.yml +125 -0
- data/script/out/units/Q647290.yml +318 -0
- data/script/out/units/Q649848.yml +202 -0
- data/script/out/units/Q6502030.yml +314 -0
- data/script/out/units/Q6502423.yml +359 -0
- data/script/out/units/Q650702.yml +308 -0
- data/script/out/units/Q650834.yml +118 -0
- data/script/out/units/Q650845.yml +334 -0
- data/script/out/units/Q651336.yml +305 -0
- data/script/out/units/Q6517513.yml +177 -0
- data/script/out/units/Q652571.yml +374 -0
- data/script/out/units/Q6527840.yml +38 -0
- data/script/out/units/Q653183.yml +99 -0
- data/script/out/units/Q654875.yml +185 -0
- data/script/out/units/Q6579586.yml +98 -0
- data/script/out/units/Q659043.yml +180 -0
- data/script/out/units/Q660818.yml +348 -0
- data/script/out/units/Q663355.yml +318 -0
- data/script/out/units/Q6667379.yml +52 -0
- data/script/out/units/Q667419.yml +466 -0
- data/script/out/units/Q669909.yml +265 -0
- data/script/out/units/Q669931.yml +368 -0
- data/script/out/units/Q674173.yml +108 -0
- data/script/out/units/Q676380.yml +148 -0
- data/script/out/units/Q6781559.yml +62 -0
- data/script/out/units/Q6783050.yml +61 -0
- data/script/out/units/Q6784450.yml +63 -0
- data/script/out/units/Q6799778.yml +85 -0
- data/script/out/units/Q681835.yml +198 -0
- data/script/out/units/Q681996.yml +301 -0
- data/script/out/units/Q6824322.yml +34 -0
- data/script/out/units/Q6824325.yml +34 -0
- data/script/out/units/Q6826087.yml +38 -0
- data/script/out/units/Q68291.yml +113 -0
- data/script/out/units/Q685662.yml +234 -0
- data/script/out/units/Q6859652.yml +361 -0
- data/script/out/units/Q686163.yml +164 -0
- data/script/out/units/Q686803.yml +228 -0
- data/script/out/units/Q6869541.yml +61 -0
- data/script/out/units/Q6881631.yml +34 -0
- data/script/out/units/Q691310.yml +126 -0
- data/script/out/units/Q691429.yml +360 -0
- data/script/out/units/Q691543.yml +208 -0
- data/script/out/units/Q693944.yml +616 -0
- data/script/out/units/Q6940794.yml +85 -0
- data/script/out/units/Q696612.yml +196 -0
- data/script/out/units/Q6982035.yml +200 -0
- data/script/out/units/Q6994502.yml +42 -0
- data/script/out/units/Q700109.yml +184 -0
- data/script/out/units/Q700219.yml +237 -0
- data/script/out/units/Q7007692.yml +34 -0
- data/script/out/units/Q700835.yml +192 -0
- data/script/out/units/Q7008374.yml +77 -0
- data/script/out/units/Q7009567.yml +77 -0
- data/script/out/units/Q7014955.yml +93 -0
- data/script/out/units/Q7018025.yml +106 -0
- data/script/out/units/Q7054691.yml +77 -0
- data/script/out/units/Q705983.yml +196 -0
- data/script/out/units/Q7064297.yml +134 -0
- data/script/out/units/Q706688.yml +144 -0
- data/script/out/units/Q7076240.yml +42 -0
- data/script/out/units/Q7076694.yml +96 -0
- data/script/out/units/Q7099621.yml +34 -0
- data/script/out/units/Q712226.yml +875 -0
- data/script/out/units/Q7124523.yml +46 -0
- data/script/out/units/Q713094.yml +282 -0
- data/script/out/units/Q7142617.yml +110 -0
- data/script/out/units/Q71486.yml +223 -0
- data/script/out/units/Q715436.yml +136 -0
- data/script/out/units/Q715852.yml +164 -0
- data/script/out/units/Q7160505.yml +34 -0
- data/script/out/units/Q7164293.yml +77 -0
- data/script/out/units/Q717310.yml +137 -0
- data/script/out/units/Q717727.yml +120 -0
- data/script/out/units/Q718954.yml +148 -0
- data/script/out/units/Q720055.yml +330 -0
- data/script/out/units/Q7200614.yml +42 -0
- data/script/out/units/Q722411.yml +97 -0
- data/script/out/units/Q7235648.yml +80 -0
- data/script/out/units/Q7235735.yml +292 -0
- data/script/out/units/Q723733.yml +281 -0
- data/script/out/units/Q724178.yml +196 -0
- data/script/out/units/Q7243962.yml +93 -0
- data/script/out/units/Q7263286.yml +57 -0
- data/script/out/units/Q726666.yml +105 -0
- data/script/out/units/Q726791.yml +370 -0
- data/script/out/units/Q7286255.yml +38 -0
- data/script/out/units/Q729254.yml +126 -0
- data/script/out/units/Q7295967.yml +60 -0
- data/script/out/units/Q730251.yml +169 -0
- data/script/out/units/Q730523.yml +223 -0
- data/script/out/units/Q731350.yml +431 -0
- data/script/out/units/Q731470.yml +333 -0
- data/script/out/units/Q7315478.yml +117 -0
- data/script/out/units/Q7316788.yml +109 -0
- data/script/out/units/Q732454.yml +95 -0
- data/script/out/units/Q7326256.yml +109 -0
- data/script/out/units/Q732702.yml +330 -0
- data/script/out/units/Q732707.yml +220 -0
- data/script/out/units/Q733565.yml +426 -0
- data/script/out/units/Q73408.yml +411 -0
- data/script/out/units/Q734179.yml +361 -0
- data/script/out/units/Q734439.yml +278 -0
- data/script/out/units/Q7350781.yml +222 -0
- data/script/out/units/Q736526.yml +109 -0
- data/script/out/units/Q737120.yml +425 -0
- data/script/out/units/Q737384.yml +255 -0
- data/script/out/units/Q738167.yml +364 -0
- data/script/out/units/Q7391268.yml +80 -0
- data/script/out/units/Q7398951.yml +185 -0
- data/script/out/units/Q740340.yml +315 -0
- data/script/out/units/Q740585.yml +208 -0
- data/script/out/units/Q7405945.yml +57 -0
- data/script/out/units/Q740943.yml +250 -0
- data/script/out/units/Q742694.yml +93 -0
- data/script/out/units/Q7430919.yml +85 -0
- data/script/out/units/Q743823.yml +138 -0
- data/script/out/units/Q743895.yml +188 -0
- data/script/out/units/Q7443766.yml +42 -0
- data/script/out/units/Q7452591.yml +50 -0
- data/script/out/units/Q745316.yml +197 -0
- data/script/out/units/Q7462601.yml +101 -0
- data/script/out/units/Q7463501.yml +544 -0
- data/script/out/units/Q747909.yml +153 -0
- data/script/out/units/Q748716.yml +441 -0
- data/script/out/units/Q750178.yml +278 -0
- data/script/out/units/Q7507404.yml +79 -0
- data/script/out/units/Q751310.yml +147 -0
- data/script/out/units/Q752079.yml +352 -0
- data/script/out/units/Q752197.yml +220 -0
- data/script/out/units/Q752878.yml +194 -0
- data/script/out/units/Q753045.yml +256 -0
- data/script/out/units/Q7548564.yml +34 -0
- data/script/out/units/Q754897.yml +252 -0
- data/script/out/units/Q75507.yml +921 -0
- data/script/out/units/Q7565877.yml +86 -0
- data/script/out/units/Q7566716.yml +77 -0
- data/script/out/units/Q7567738.yml +81 -0
- data/script/out/units/Q7568831.yml +63 -0
- data/script/out/units/Q7574000.yml +38 -0
- data/script/out/units/Q757634.yml +62 -0
- data/script/out/units/Q7616207.yml +48 -0
- data/script/out/units/Q7629136.yml +49 -0
- data/script/out/units/Q764255.yml +353 -0
- data/script/out/units/Q7672057.yml +69 -0
- data/script/out/units/Q767390.yml +157 -0
- data/script/out/units/Q7683457.yml +53 -0
- data/script/out/units/Q768908.yml +124 -0
- data/script/out/units/Q7727.yml +1126 -0
- data/script/out/units/Q774671.yml +131 -0
- data/script/out/units/Q7785091.yml +38 -0
- data/script/out/units/Q780456.yml +61 -0
- data/script/out/units/Q7807840.yml +49 -0
- data/script/out/units/Q781218.yml +323 -0
- data/script/out/units/Q781545.yml +180 -0
- data/script/out/units/Q7820913.yml +54 -0
- data/script/out/units/Q7826589.yml +93 -0
- data/script/out/units/Q7830165.yml +46 -0
- data/script/out/units/Q7854897.yml +94 -0
- data/script/out/units/Q786009.yml +190 -0
- data/script/out/units/Q788472.yml +439 -0
- data/script/out/units/Q7907501.yml +37 -0
- data/script/out/units/Q791313.yml +386 -0
- data/script/out/units/Q7934706.yml +81 -0
- data/script/out/units/Q794261.yml +217 -0
- data/script/out/units/Q79726.yml +406 -0
- data/script/out/units/Q79735.yml +462 -0
- data/script/out/units/Q79738.yml +445 -0
- data/script/out/units/Q79741.yml +383 -0
- data/script/out/units/Q79744.yml +263 -0
- data/script/out/units/Q79745.yml +344 -0
- data/script/out/units/Q79747.yml +312 -0
- data/script/out/units/Q7974907.yml +66 -0
- data/script/out/units/Q7974920.yml +144 -0
- data/script/out/units/Q79752.yml +340 -0
- data/script/out/units/Q79756.yml +301 -0
- data/script/out/units/Q79758.yml +291 -0
- data/script/out/units/Q79765.yml +285 -0
- data/script/out/units/Q79769.yml +273 -0
- data/script/out/units/Q79774.yml +251 -0
- data/script/out/units/Q79777.yml +265 -0
- data/script/out/units/Q79779.yml +243 -0
- data/script/out/units/Q79781.yml +243 -0
- data/script/out/units/Q7985523.yml +63 -0
- data/script/out/units/Q7998037.yml +42 -0
- data/script/out/units/Q800213.yml +65 -0
- data/script/out/units/Q8024928.yml +98 -0
- data/script/out/units/Q804170.yml +153 -0
- data/script/out/units/Q804537.yml +239 -0
- data/script/out/units/Q8047970.yml +235 -0
- data/script/out/units/Q80524.yml +634 -0
- data/script/out/units/Q806091.yml +49 -0
- data/script/out/units/Q808873.yml +38 -0
- data/script/out/units/Q809678.yml +199 -0
- data/script/out/units/Q811127.yml +49 -0
- data/script/out/units/Q81292.yml +741 -0
- data/script/out/units/Q81454.yml +585 -0
- data/script/out/units/Q8146.yml +911 -0
- data/script/out/units/Q816343.yml +93 -0
- data/script/out/units/Q81772.yml +118 -0
- data/script/out/units/Q81893.yml +868 -0
- data/script/out/units/Q828224.yml +1148 -0
- data/script/out/units/Q829005.yml +298 -0
- data/script/out/units/Q829043.yml +284 -0
- data/script/out/units/Q829073.yml +477 -0
- data/script/out/units/Q829397.yml +121 -0
- data/script/out/units/Q831578.yml +249 -0
- data/script/out/units/Q83216.yml +658 -0
- data/script/out/units/Q83222.yml +853 -0
- data/script/out/units/Q83327.yml +739 -0
- data/script/out/units/Q834105.yml +178 -0
- data/script/out/units/Q834305.yml +182 -0
- data/script/out/units/Q8351983.yml +89 -0
- data/script/out/units/Q835916.yml +244 -0
- data/script/out/units/Q836651.yml +117 -0
- data/script/out/units/Q838801.yml +225 -0
- data/script/out/units/Q839417.yml +91 -0
- data/script/out/units/Q839426.yml +87 -0
- data/script/out/units/Q839449.yml +415 -0
- data/script/out/units/Q842015.yml +266 -0
- data/script/out/units/Q842981.yml +148 -0
- data/script/out/units/Q843329.yml +361 -0
- data/script/out/units/Q843877.yml +312 -0
- data/script/out/units/Q844172.yml +317 -0
- data/script/out/units/Q844211.yml +321 -0
- data/script/out/units/Q844338.yml +312 -0
- data/script/out/units/Q844976.yml +268 -0
- data/script/out/units/Q844984.yml +119 -0
- data/script/out/units/Q845557.yml +136 -0
- data/script/out/units/Q845689.yml +150 -0
- data/script/out/units/Q845958.yml +148 -0
- data/script/out/units/Q847739.yml +403 -0
- data/script/out/units/Q848856.yml +322 -0
- data/script/out/units/Q848960.yml +337 -0
- data/script/out/units/Q850029.yml +350 -0
- data/script/out/units/Q851872.yml +141 -0
- data/script/out/units/Q854546.yml +292 -0
- data/script/out/units/Q855048.yml +192 -0
- data/script/out/units/Q855125.yml +329 -0
- data/script/out/units/Q855153.yml +339 -0
- data/script/out/units/Q855161.yml +173 -0
- data/script/out/units/Q855244.yml +158 -0
- data/script/out/units/Q8565163.yml +38 -0
- data/script/out/units/Q857027.yml +397 -0
- data/script/out/units/Q857913.yml +64 -0
- data/script/out/units/Q858194.yml +63 -0
- data/script/out/units/Q858203.yml +277 -0
- data/script/out/units/Q860048.yml +276 -0
- data/script/out/units/Q861690.yml +439 -0
- data/script/out/units/Q864818.yml +243 -0
- data/script/out/units/Q868106.yml +200 -0
- data/script/out/units/Q876237.yml +145 -0
- data/script/out/units/Q876244.yml +207 -0
- data/script/out/units/Q877963.yml +148 -0
- data/script/out/units/Q879128.yml +85 -0
- data/script/out/units/Q8799.yml +502 -0
- data/script/out/units/Q8805.yml +650 -0
- data/script/out/units/Q885018.yml +94 -0
- data/script/out/units/Q890618.yml +121 -0
- data/script/out/units/Q892596.yml +198 -0
- data/script/out/units/Q896543.yml +145 -0
- data/script/out/units/Q897424.yml +162 -0
- data/script/out/units/Q898043.yml +148 -0
- data/script/out/units/Q899238.yml +190 -0
- data/script/out/units/Q899679.yml +151 -0
- data/script/out/units/Q899762.yml +215 -0
- data/script/out/units/Q901448.yml +166 -0
- data/script/out/units/Q901492.yml +173 -0
- data/script/out/units/Q902086.yml +249 -0
- data/script/out/units/Q902274.yml +158 -0
- data/script/out/units/Q904031.yml +180 -0
- data/script/out/units/Q904322.yml +95 -0
- data/script/out/units/Q904328.yml +95 -0
- data/script/out/units/Q9048643.yml +77 -0
- data/script/out/units/Q905912.yml +258 -0
- data/script/out/units/Q906223.yml +129 -0
- data/script/out/units/Q909066.yml +258 -0
- data/script/out/units/Q909315.yml +209 -0
- data/script/out/units/Q910311.yml +158 -0
- data/script/out/units/Q910712.yml +116 -0
- data/script/out/units/Q911562.yml +264 -0
- data/script/out/units/Q911730.yml +87 -0
- data/script/out/units/Q911869.yml +412 -0
- data/script/out/units/Q911899.yml +406 -0
- data/script/out/units/Q912190.yml +240 -0
- data/script/out/units/Q912962.yml +282 -0
- data/script/out/units/Q913365.yml +238 -0
- data/script/out/units/Q9138889.yml +42 -0
- data/script/out/units/Q914151.yml +226 -0
- data/script/out/units/Q914322.yml +390 -0
- data/script/out/units/Q914363.yml +286 -0
- data/script/out/units/Q915169.yml +230 -0
- data/script/out/units/Q915466.yml +370 -0
- data/script/out/units/Q9156126.yml +65 -0
- data/script/out/units/Q917019.yml +199 -0
- data/script/out/units/Q918294.yml +131 -0
- data/script/out/units/Q920297.yml +105 -0
- data/script/out/units/Q921083.yml +65 -0
- data/script/out/units/Q921668.yml +266 -0
- data/script/out/units/Q923539.yml +285 -0
- data/script/out/units/Q926028.yml +220 -0
- data/script/out/units/Q927068.yml +130 -0
- data/script/out/units/Q928186.yml +160 -0
- data/script/out/units/Q930179.yml +261 -0
- data/script/out/units/Q931192.yml +89 -0
- data/script/out/units/Q931805.yml +163 -0
- data/script/out/units/Q93318.yml +633 -0
- data/script/out/units/Q933427.yml +89 -0
- data/script/out/units/Q935614.yml +148 -0
- data/script/out/units/Q940052.yml +250 -0
- data/script/out/units/Q940381.yml +358 -0
- data/script/out/units/Q942092.yml +300 -0
- data/script/out/units/Q94418.yml +221 -0
- data/script/out/units/Q94921.yml +101 -0
- data/script/out/units/Q949243.yml +182 -0
- data/script/out/units/Q949922.yml +70 -0
- data/script/out/units/Q951792.yml +93 -0
- data/script/out/units/Q954757.yml +161 -0
- data/script/out/units/Q961408.yml +206 -0
- data/script/out/units/Q961551.yml +42 -0
- data/script/out/units/Q967135.yml +215 -0
- data/script/out/units/Q967990.yml +133 -0
- data/script/out/units/Q971818.yml +253 -0
- data/script/out/units/Q974493.yml +120 -0
- data/script/out/units/Q995076.yml +74 -0
- data/script/out/units/Q999285.yml +77 -0
- data/test/_base.rb +4 -0
- data/test/commons.rb +10 -0
- data/test/open_street_map.rb +28 -0
- data/test/q.rb +28 -0
- data/test/wikidata.rb +19 -0
- data/test/wikipedia.rb +23 -0
- data/test/wikivoyage.rb +17 -0
- data/test/worldbank.rb +17 -0
- metadata +2621 -47
- data/lib/reality/config.rb +0 -53
- data/lib/reality/definitions/dictionaries.rb +0 -67
- data/lib/reality/definitions/helpers.rb +0 -35
- data/lib/reality/definitions/wikidata.rb +0 -114
- data/lib/reality/definitions/wikipedia_character.rb +0 -18
- data/lib/reality/definitions/wikipedia_city.rb +0 -20
- data/lib/reality/definitions/wikipedia_continent.rb +0 -22
- data/lib/reality/definitions/wikipedia_country.rb +0 -24
- data/lib/reality/definitions/wikipedia_musical_artist.rb +0 -16
- data/lib/reality/definitions/wikipedia_person.rb +0 -18
- data/lib/reality/extras/geonames.rb +0 -31
- data/lib/reality/extras/open_weather_map.rb +0 -63
- data/lib/reality/extras/quandl.rb +0 -57
- data/lib/reality/geo.rb +0 -183
- data/lib/reality/infoboxer_templates.rb +0 -19
- data/lib/reality/list.rb +0 -165
- data/lib/reality/methods.rb +0 -20
- data/lib/reality/pretty_inspect.rb +0 -11
- data/lib/reality/shortcuts.rb +0 -11
- data/lib/reality/tz_offset.rb +0 -117
- data/lib/reality/wikidata.rb +0 -158
- data/lib/reality/wikidata/query.rb +0 -107
@@ -0,0 +1,68 @@
|
|
1
|
+
---
|
2
|
+
pageid: 1171813
|
3
|
+
ns: 0
|
4
|
+
title: Q1230524
|
5
|
+
lastrevid: 560466997
|
6
|
+
modified: '2017-09-17T06:12:17Z'
|
7
|
+
type: item
|
8
|
+
id: Q1230524
|
9
|
+
labels:
|
10
|
+
en:
|
11
|
+
language: en
|
12
|
+
value: pechys
|
13
|
+
aliases: {}
|
14
|
+
claims:
|
15
|
+
P361:
|
16
|
+
- mainsnak:
|
17
|
+
snaktype: value
|
18
|
+
property: P361
|
19
|
+
hash: 8d75fa5d12c9f32ffc85f2a1a5e77c5160f66ae1
|
20
|
+
datavalue:
|
21
|
+
value:
|
22
|
+
entity-type: item
|
23
|
+
numeric-id: 607056
|
24
|
+
id: Q607056
|
25
|
+
type: wikibase-entityid
|
26
|
+
datatype: wikibase-item
|
27
|
+
type: statement
|
28
|
+
id: Q1230524$56994888-44ad-5816-26ae-b0e070da8653
|
29
|
+
rank: normal
|
30
|
+
P279:
|
31
|
+
- mainsnak:
|
32
|
+
snaktype: value
|
33
|
+
property: P279
|
34
|
+
hash: db1a4f4b2283c6199dd81b8e56a953c3df91cc6b
|
35
|
+
datavalue:
|
36
|
+
value:
|
37
|
+
entity-type: item
|
38
|
+
numeric-id: 1978718
|
39
|
+
id: Q1978718
|
40
|
+
type: wikibase-entityid
|
41
|
+
datatype: wikibase-item
|
42
|
+
type: statement
|
43
|
+
id: Q1230524$56100d6d-4616-e8bb-68e4-99e76ef0230b
|
44
|
+
rank: normal
|
45
|
+
P31:
|
46
|
+
- mainsnak:
|
47
|
+
snaktype: value
|
48
|
+
property: P31
|
49
|
+
hash: 1c41b2ea8a3f6d3fab77c103d826ae5ead7a9c01
|
50
|
+
datavalue:
|
51
|
+
value:
|
52
|
+
entity-type: item
|
53
|
+
numeric-id: 1978718
|
54
|
+
id: Q1978718
|
55
|
+
type: wikibase-entityid
|
56
|
+
datatype: wikibase-item
|
57
|
+
type: statement
|
58
|
+
id: Q1230524$BAB47940-E1B6-4A29-AA8C-D99BE61C35D9
|
59
|
+
rank: normal
|
60
|
+
sitelinks:
|
61
|
+
cawiki:
|
62
|
+
site: cawiki
|
63
|
+
title: Cúbit (mesura)
|
64
|
+
badges: []
|
65
|
+
dewiki:
|
66
|
+
site: dewiki
|
67
|
+
title: Pechys (Einheit)
|
68
|
+
badges: []
|
@@ -0,0 +1,121 @@
|
|
1
|
+
---
|
2
|
+
pageid: 1173031
|
3
|
+
ns: 0
|
4
|
+
title: Q1231751
|
5
|
+
lastrevid: 594805146
|
6
|
+
modified: '2017-11-16T03:57:12Z'
|
7
|
+
type: item
|
8
|
+
id: Q1231751
|
9
|
+
labels:
|
10
|
+
en:
|
11
|
+
language: en
|
12
|
+
value: Aes rude
|
13
|
+
aliases: {}
|
14
|
+
claims:
|
15
|
+
P646:
|
16
|
+
- mainsnak:
|
17
|
+
snaktype: value
|
18
|
+
property: P646
|
19
|
+
hash: dfbf2a3b51199d8376f2ef753bfcbbe42c7914e3
|
20
|
+
datavalue:
|
21
|
+
value: "/m/04_jmt"
|
22
|
+
type: string
|
23
|
+
datatype: external-id
|
24
|
+
type: statement
|
25
|
+
id: Q1231751$AAEEC941-1D4D-42F7-B9DB-43B07B929C86
|
26
|
+
rank: normal
|
27
|
+
references:
|
28
|
+
- hash: 2b00cb481cddcac7623114367489b5c194901c4a
|
29
|
+
snaks:
|
30
|
+
P248:
|
31
|
+
- snaktype: value
|
32
|
+
property: P248
|
33
|
+
hash: a94b740202b097dd33355e0e6c00e54b9395e5e0
|
34
|
+
datavalue:
|
35
|
+
value:
|
36
|
+
entity-type: item
|
37
|
+
numeric-id: 15241312
|
38
|
+
id: Q15241312
|
39
|
+
type: wikibase-entityid
|
40
|
+
datatype: wikibase-item
|
41
|
+
P577:
|
42
|
+
- snaktype: value
|
43
|
+
property: P577
|
44
|
+
hash: fde79ecb015112d2f29229ccc1ec514ed3e71fa2
|
45
|
+
datavalue:
|
46
|
+
value:
|
47
|
+
time: "+2013-10-28T00:00:00Z"
|
48
|
+
timezone: 0
|
49
|
+
before: 0
|
50
|
+
after: 0
|
51
|
+
precision: 11
|
52
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
53
|
+
type: time
|
54
|
+
datatype: time
|
55
|
+
snaks-order:
|
56
|
+
- P248
|
57
|
+
- P577
|
58
|
+
P31:
|
59
|
+
- mainsnak:
|
60
|
+
snaktype: value
|
61
|
+
property: P31
|
62
|
+
hash: 724bdf3e32380d29eaccfd480beedeb2e3ddd017
|
63
|
+
datavalue:
|
64
|
+
value:
|
65
|
+
entity-type: item
|
66
|
+
numeric-id: 8142
|
67
|
+
id: Q8142
|
68
|
+
type: wikibase-entityid
|
69
|
+
datatype: wikibase-item
|
70
|
+
type: statement
|
71
|
+
id: Q1231751$8EBFD229-0427-4F1F-A028-402ACD783FCD
|
72
|
+
rank: normal
|
73
|
+
P1014:
|
74
|
+
- mainsnak:
|
75
|
+
snaktype: value
|
76
|
+
property: P1014
|
77
|
+
hash: fd6a7f0686acfa0cdfcf665b6dca18a3786bf61c
|
78
|
+
datavalue:
|
79
|
+
value: '300206577'
|
80
|
+
type: string
|
81
|
+
datatype: external-id
|
82
|
+
type: statement
|
83
|
+
id: Q1231751$D9C383BF-0C4C-4DDD-91AA-0461C1E36F5C
|
84
|
+
rank: normal
|
85
|
+
sitelinks:
|
86
|
+
dewiki:
|
87
|
+
site: dewiki
|
88
|
+
title: Gussbrocken
|
89
|
+
badges: []
|
90
|
+
enwiki:
|
91
|
+
site: enwiki
|
92
|
+
title: Aes rude
|
93
|
+
badges: []
|
94
|
+
frwiki:
|
95
|
+
site: frwiki
|
96
|
+
title: Aes rude
|
97
|
+
badges: []
|
98
|
+
itwiki:
|
99
|
+
site: itwiki
|
100
|
+
title: Aes rude
|
101
|
+
badges: []
|
102
|
+
lawiki:
|
103
|
+
site: lawiki
|
104
|
+
title: Aes rude
|
105
|
+
badges: []
|
106
|
+
ruwiki:
|
107
|
+
site: ruwiki
|
108
|
+
title: Aes rude
|
109
|
+
badges: []
|
110
|
+
skwiki:
|
111
|
+
site: skwiki
|
112
|
+
title: Aes rude
|
113
|
+
badges: []
|
114
|
+
slwiki:
|
115
|
+
site: slwiki
|
116
|
+
title: Aes rude
|
117
|
+
badges: []
|
118
|
+
ukwiki:
|
119
|
+
site: ukwiki
|
120
|
+
title: Aes rude
|
121
|
+
badges: []
|
@@ -0,0 +1,2327 @@
|
|
1
|
+
---
|
2
|
+
pageid: 125439
|
3
|
+
ns: 0
|
4
|
+
title: Q123213
|
5
|
+
lastrevid: 617968660
|
6
|
+
modified: '2018-01-09T08:58:42Z'
|
7
|
+
type: item
|
8
|
+
id: Q123213
|
9
|
+
labels:
|
10
|
+
en:
|
11
|
+
language: en
|
12
|
+
value: złoty
|
13
|
+
aliases:
|
14
|
+
en:
|
15
|
+
- language: en
|
16
|
+
value: Polish złoty
|
17
|
+
- language: en
|
18
|
+
value: PLN
|
19
|
+
- language: en
|
20
|
+
value: zł
|
21
|
+
claims:
|
22
|
+
P443:
|
23
|
+
- mainsnak:
|
24
|
+
snaktype: value
|
25
|
+
property: P443
|
26
|
+
hash: 68a69a9f493a524129f6c4c96f335a422e5527ad
|
27
|
+
datavalue:
|
28
|
+
value: Pl-złoty.ogg
|
29
|
+
type: string
|
30
|
+
datatype: commonsMedia
|
31
|
+
type: statement
|
32
|
+
id: Q123213$1063cec0-45e6-6cb1-4f8c-517f6443f26d
|
33
|
+
rank: normal
|
34
|
+
P31:
|
35
|
+
- mainsnak:
|
36
|
+
snaktype: value
|
37
|
+
property: P31
|
38
|
+
hash: 724bdf3e32380d29eaccfd480beedeb2e3ddd017
|
39
|
+
datavalue:
|
40
|
+
value:
|
41
|
+
entity-type: item
|
42
|
+
numeric-id: 8142
|
43
|
+
id: Q8142
|
44
|
+
type: wikibase-entityid
|
45
|
+
datatype: wikibase-item
|
46
|
+
type: statement
|
47
|
+
id: q123213$C8D31783-25F8-4F88-B7D8-E97B998F2764
|
48
|
+
rank: normal
|
49
|
+
P370:
|
50
|
+
- mainsnak:
|
51
|
+
snaktype: value
|
52
|
+
property: P370
|
53
|
+
hash: ffa6cbb0c5dfe6a9f0ad0aa2bc0d9285a7d56082
|
54
|
+
datavalue:
|
55
|
+
value: '4.1698'
|
56
|
+
type: string
|
57
|
+
datatype: string
|
58
|
+
type: statement
|
59
|
+
id: q123213$DC51BE5A-1EDE-415B-93DD-DE516D08E1A0
|
60
|
+
rank: normal
|
61
|
+
references:
|
62
|
+
- hash: 13fba01f2c800161e6e2783a16d28f01d138bf54
|
63
|
+
snaks:
|
64
|
+
P370:
|
65
|
+
- snaktype: value
|
66
|
+
property: P370
|
67
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
68
|
+
datavalue:
|
69
|
+
value: Template:Exchange Rate Data
|
70
|
+
type: string
|
71
|
+
datatype: string
|
72
|
+
snaks-order:
|
73
|
+
- P370
|
74
|
+
- hash: 28adabfc6dfa1dd45450cd308bf2319b1fbccf1d
|
75
|
+
snaks:
|
76
|
+
P370:
|
77
|
+
- snaktype: value
|
78
|
+
property: P370
|
79
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
80
|
+
datavalue:
|
81
|
+
value: Template:Exchange Rate Data
|
82
|
+
type: string
|
83
|
+
datatype: string
|
84
|
+
P585:
|
85
|
+
- snaktype: value
|
86
|
+
property: P585
|
87
|
+
hash: 5025e0f3017d9bb532b06557af22f2b0bd400f9f
|
88
|
+
datavalue:
|
89
|
+
value:
|
90
|
+
time: "+2013-07-16T20:35:23Z"
|
91
|
+
timezone: 0
|
92
|
+
before: 0
|
93
|
+
after: 0
|
94
|
+
precision: 11
|
95
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
96
|
+
type: time
|
97
|
+
datatype: time
|
98
|
+
snaks-order:
|
99
|
+
- P370
|
100
|
+
- P585
|
101
|
+
- hash: 692d359b747722cccb4748eb329ad80786ed6568
|
102
|
+
snaks:
|
103
|
+
P370:
|
104
|
+
- snaktype: value
|
105
|
+
property: P370
|
106
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
107
|
+
datavalue:
|
108
|
+
value: Template:Exchange Rate Data
|
109
|
+
type: string
|
110
|
+
datatype: string
|
111
|
+
P585:
|
112
|
+
- snaktype: value
|
113
|
+
property: P585
|
114
|
+
hash: 05406d8d05d1aa948fba15e1fe5766cd00df9375
|
115
|
+
datavalue:
|
116
|
+
value:
|
117
|
+
time: "+2013-07-18T05:06:50Z"
|
118
|
+
timezone: 0
|
119
|
+
before: 0
|
120
|
+
after: 0
|
121
|
+
precision: 11
|
122
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
123
|
+
type: time
|
124
|
+
datatype: time
|
125
|
+
snaks-order:
|
126
|
+
- P370
|
127
|
+
- P585
|
128
|
+
- hash: 70f8a70ad45d6ba9165a788dce94a4ba3af3225f
|
129
|
+
snaks:
|
130
|
+
P370:
|
131
|
+
- snaktype: value
|
132
|
+
property: P370
|
133
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
134
|
+
datavalue:
|
135
|
+
value: Template:Exchange Rate Data
|
136
|
+
type: string
|
137
|
+
datatype: string
|
138
|
+
P585:
|
139
|
+
- snaktype: value
|
140
|
+
property: P585
|
141
|
+
hash: 8ac2a492e4d485dab93091eb398fad3b8221cc93
|
142
|
+
datavalue:
|
143
|
+
value:
|
144
|
+
time: "+2013-07-19T05:06:48Z"
|
145
|
+
timezone: 0
|
146
|
+
before: 0
|
147
|
+
after: 0
|
148
|
+
precision: 11
|
149
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
150
|
+
type: time
|
151
|
+
datatype: time
|
152
|
+
snaks-order:
|
153
|
+
- P370
|
154
|
+
- P585
|
155
|
+
- hash: 8f06cc7281e4bcc74f7144946698645452ad1911
|
156
|
+
snaks:
|
157
|
+
P370:
|
158
|
+
- snaktype: value
|
159
|
+
property: P370
|
160
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
161
|
+
datavalue:
|
162
|
+
value: Template:Exchange Rate Data
|
163
|
+
type: string
|
164
|
+
datatype: string
|
165
|
+
P585:
|
166
|
+
- snaktype: value
|
167
|
+
property: P585
|
168
|
+
hash: 824b102bf09460e1e060ef33f06f0422867f02a2
|
169
|
+
datavalue:
|
170
|
+
value:
|
171
|
+
time: "+2013-07-20T05:07:06Z"
|
172
|
+
timezone: 0
|
173
|
+
before: 0
|
174
|
+
after: 0
|
175
|
+
precision: 11
|
176
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
177
|
+
type: time
|
178
|
+
datatype: time
|
179
|
+
snaks-order:
|
180
|
+
- P370
|
181
|
+
- P585
|
182
|
+
- hash: 9f4a911c6a821581e790c058a41fff6c79e54ac2
|
183
|
+
snaks:
|
184
|
+
P370:
|
185
|
+
- snaktype: value
|
186
|
+
property: P370
|
187
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
188
|
+
datavalue:
|
189
|
+
value: Template:Exchange Rate Data
|
190
|
+
type: string
|
191
|
+
datatype: string
|
192
|
+
P585:
|
193
|
+
- snaktype: value
|
194
|
+
property: P585
|
195
|
+
hash: 9b97e6b7b3e032f501f389dab77440b8c9aaa17c
|
196
|
+
datavalue:
|
197
|
+
value:
|
198
|
+
time: "+2013-07-23T05:06:50Z"
|
199
|
+
timezone: 0
|
200
|
+
before: 0
|
201
|
+
after: 0
|
202
|
+
precision: 11
|
203
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
204
|
+
type: time
|
205
|
+
datatype: time
|
206
|
+
snaks-order:
|
207
|
+
- P370
|
208
|
+
- P585
|
209
|
+
- hash: 83a873f5be171d943f708804b103491dcd1e2fc0
|
210
|
+
snaks:
|
211
|
+
P370:
|
212
|
+
- snaktype: value
|
213
|
+
property: P370
|
214
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
215
|
+
datavalue:
|
216
|
+
value: Template:Exchange Rate Data
|
217
|
+
type: string
|
218
|
+
datatype: string
|
219
|
+
P585:
|
220
|
+
- snaktype: value
|
221
|
+
property: P585
|
222
|
+
hash: 4fbed742d58a1faaf3f7733436c6b166c3cf9703
|
223
|
+
datavalue:
|
224
|
+
value:
|
225
|
+
time: "+2013-07-24T05:06:38Z"
|
226
|
+
timezone: 0
|
227
|
+
before: 0
|
228
|
+
after: 0
|
229
|
+
precision: 11
|
230
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
231
|
+
type: time
|
232
|
+
datatype: time
|
233
|
+
snaks-order:
|
234
|
+
- P370
|
235
|
+
- P585
|
236
|
+
- hash: b476acf3fdca5fb13122acd9333c6c078e465498
|
237
|
+
snaks:
|
238
|
+
P370:
|
239
|
+
- snaktype: value
|
240
|
+
property: P370
|
241
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
242
|
+
datavalue:
|
243
|
+
value: Template:Exchange Rate Data
|
244
|
+
type: string
|
245
|
+
datatype: string
|
246
|
+
P585:
|
247
|
+
- snaktype: value
|
248
|
+
property: P585
|
249
|
+
hash: 36b0d739fe60a1ec7d6f37c346e48d465b6e93bd
|
250
|
+
datavalue:
|
251
|
+
value:
|
252
|
+
time: "+2013-07-25T05:06:33Z"
|
253
|
+
timezone: 0
|
254
|
+
before: 0
|
255
|
+
after: 0
|
256
|
+
precision: 11
|
257
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
258
|
+
type: time
|
259
|
+
datatype: time
|
260
|
+
snaks-order:
|
261
|
+
- P370
|
262
|
+
- P585
|
263
|
+
- hash: 602200ef57ce3720921fa3c6e07c8cf3a279a009
|
264
|
+
snaks:
|
265
|
+
P370:
|
266
|
+
- snaktype: value
|
267
|
+
property: P370
|
268
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
269
|
+
datavalue:
|
270
|
+
value: Template:Exchange Rate Data
|
271
|
+
type: string
|
272
|
+
datatype: string
|
273
|
+
P585:
|
274
|
+
- snaktype: value
|
275
|
+
property: P585
|
276
|
+
hash: b8cbfa8577731f68bbb2e919ad134d80410c50cb
|
277
|
+
datavalue:
|
278
|
+
value:
|
279
|
+
time: "+2013-07-26T05:06:34Z"
|
280
|
+
timezone: 0
|
281
|
+
before: 0
|
282
|
+
after: 0
|
283
|
+
precision: 11
|
284
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
285
|
+
type: time
|
286
|
+
datatype: time
|
287
|
+
snaks-order:
|
288
|
+
- P370
|
289
|
+
- P585
|
290
|
+
- hash: 8e07c875b1311449b88b158eb7f725e54b93a1e0
|
291
|
+
snaks:
|
292
|
+
P370:
|
293
|
+
- snaktype: value
|
294
|
+
property: P370
|
295
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
296
|
+
datavalue:
|
297
|
+
value: Template:Exchange Rate Data
|
298
|
+
type: string
|
299
|
+
datatype: string
|
300
|
+
P585:
|
301
|
+
- snaktype: value
|
302
|
+
property: P585
|
303
|
+
hash: b246e2b1f664fa419d61005c0660894cad94d654
|
304
|
+
datavalue:
|
305
|
+
value:
|
306
|
+
time: "+2013-07-27T05:06:38Z"
|
307
|
+
timezone: 0
|
308
|
+
before: 0
|
309
|
+
after: 0
|
310
|
+
precision: 11
|
311
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
312
|
+
type: time
|
313
|
+
datatype: time
|
314
|
+
snaks-order:
|
315
|
+
- P370
|
316
|
+
- P585
|
317
|
+
- hash: 8d61cd867f4819b0fbc84b24c317051eb77226f7
|
318
|
+
snaks:
|
319
|
+
P370:
|
320
|
+
- snaktype: value
|
321
|
+
property: P370
|
322
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
323
|
+
datavalue:
|
324
|
+
value: Template:Exchange Rate Data
|
325
|
+
type: string
|
326
|
+
datatype: string
|
327
|
+
P585:
|
328
|
+
- snaktype: value
|
329
|
+
property: P585
|
330
|
+
hash: 442382e411c0eab6a0e6d3eb8fbdacb47475d67c
|
331
|
+
datavalue:
|
332
|
+
value:
|
333
|
+
time: "+2013-07-30T05:06:41Z"
|
334
|
+
timezone: 0
|
335
|
+
before: 0
|
336
|
+
after: 0
|
337
|
+
precision: 11
|
338
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
339
|
+
type: time
|
340
|
+
datatype: time
|
341
|
+
snaks-order:
|
342
|
+
- P370
|
343
|
+
- P585
|
344
|
+
- hash: 2d650d20a7631cb64595bb5e20271544ae44e8f1
|
345
|
+
snaks:
|
346
|
+
P370:
|
347
|
+
- snaktype: value
|
348
|
+
property: P370
|
349
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
350
|
+
datavalue:
|
351
|
+
value: Template:Exchange Rate Data
|
352
|
+
type: string
|
353
|
+
datatype: string
|
354
|
+
P585:
|
355
|
+
- snaktype: value
|
356
|
+
property: P585
|
357
|
+
hash: 854bec9af2bc94082b337180e82c94365712bb19
|
358
|
+
datavalue:
|
359
|
+
value:
|
360
|
+
time: "+2013-07-31T05:06:41Z"
|
361
|
+
timezone: 0
|
362
|
+
before: 0
|
363
|
+
after: 0
|
364
|
+
precision: 11
|
365
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
366
|
+
type: time
|
367
|
+
datatype: time
|
368
|
+
snaks-order:
|
369
|
+
- P370
|
370
|
+
- P585
|
371
|
+
- hash: 6d52c040670c2ec654682239b1640e177068ae68
|
372
|
+
snaks:
|
373
|
+
P370:
|
374
|
+
- snaktype: value
|
375
|
+
property: P370
|
376
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
377
|
+
datavalue:
|
378
|
+
value: Template:Exchange Rate Data
|
379
|
+
type: string
|
380
|
+
datatype: string
|
381
|
+
P585:
|
382
|
+
- snaktype: value
|
383
|
+
property: P585
|
384
|
+
hash: 222d3a44793acb26a3cb65c20eb93597b3ce36a5
|
385
|
+
datavalue:
|
386
|
+
value:
|
387
|
+
time: "+2013-08-01T05:06:36Z"
|
388
|
+
timezone: 0
|
389
|
+
before: 0
|
390
|
+
after: 0
|
391
|
+
precision: 11
|
392
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
393
|
+
type: time
|
394
|
+
datatype: time
|
395
|
+
snaks-order:
|
396
|
+
- P370
|
397
|
+
- P585
|
398
|
+
- hash: 7421e6d56050a195c731d1eece13d24474bbef44
|
399
|
+
snaks:
|
400
|
+
P370:
|
401
|
+
- snaktype: value
|
402
|
+
property: P370
|
403
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
404
|
+
datavalue:
|
405
|
+
value: Template:Exchange Rate Data
|
406
|
+
type: string
|
407
|
+
datatype: string
|
408
|
+
P585:
|
409
|
+
- snaktype: value
|
410
|
+
property: P585
|
411
|
+
hash: 0271a22332e8fe2549fe1add6f84ffbcc2309f15
|
412
|
+
datavalue:
|
413
|
+
value:
|
414
|
+
time: "+2013-08-02T05:06:39Z"
|
415
|
+
timezone: 0
|
416
|
+
before: 0
|
417
|
+
after: 0
|
418
|
+
precision: 11
|
419
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
420
|
+
type: time
|
421
|
+
datatype: time
|
422
|
+
snaks-order:
|
423
|
+
- P370
|
424
|
+
- P585
|
425
|
+
- hash: 25df72b9a597981861a8a612accfd0345acdfd08
|
426
|
+
snaks:
|
427
|
+
P370:
|
428
|
+
- snaktype: value
|
429
|
+
property: P370
|
430
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
431
|
+
datavalue:
|
432
|
+
value: Template:Exchange Rate Data
|
433
|
+
type: string
|
434
|
+
datatype: string
|
435
|
+
P585:
|
436
|
+
- snaktype: value
|
437
|
+
property: P585
|
438
|
+
hash: 471a7e7d9127ce8579aa49a90606ac8546f99070
|
439
|
+
datavalue:
|
440
|
+
value:
|
441
|
+
time: "+2013-08-03T05:06:30Z"
|
442
|
+
timezone: 0
|
443
|
+
before: 0
|
444
|
+
after: 0
|
445
|
+
precision: 11
|
446
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
447
|
+
type: time
|
448
|
+
datatype: time
|
449
|
+
snaks-order:
|
450
|
+
- P370
|
451
|
+
- P585
|
452
|
+
- hash: 7733c25b7bf3e7ac9f3aa965ec4729a45578a562
|
453
|
+
snaks:
|
454
|
+
P370:
|
455
|
+
- snaktype: value
|
456
|
+
property: P370
|
457
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
458
|
+
datavalue:
|
459
|
+
value: Template:Exchange Rate Data
|
460
|
+
type: string
|
461
|
+
datatype: string
|
462
|
+
P585:
|
463
|
+
- snaktype: value
|
464
|
+
property: P585
|
465
|
+
hash: aae1e33799b8e47e199e0ae39360801275b630fa
|
466
|
+
datavalue:
|
467
|
+
value:
|
468
|
+
time: "+2013-08-06T05:06:39Z"
|
469
|
+
timezone: 0
|
470
|
+
before: 0
|
471
|
+
after: 0
|
472
|
+
precision: 11
|
473
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
474
|
+
type: time
|
475
|
+
datatype: time
|
476
|
+
snaks-order:
|
477
|
+
- P370
|
478
|
+
- P585
|
479
|
+
- hash: 550e487817bf5961b9c16f0c64a5aa6a75b07de9
|
480
|
+
snaks:
|
481
|
+
P370:
|
482
|
+
- snaktype: value
|
483
|
+
property: P370
|
484
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
485
|
+
datavalue:
|
486
|
+
value: Template:Exchange Rate Data
|
487
|
+
type: string
|
488
|
+
datatype: string
|
489
|
+
P585:
|
490
|
+
- snaktype: value
|
491
|
+
property: P585
|
492
|
+
hash: 1347d6513a5d86d68724e1ea9f776836cc034123
|
493
|
+
datavalue:
|
494
|
+
value:
|
495
|
+
time: "+2013-08-07T05:06:41Z"
|
496
|
+
timezone: 0
|
497
|
+
before: 0
|
498
|
+
after: 0
|
499
|
+
precision: 11
|
500
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
501
|
+
type: time
|
502
|
+
datatype: time
|
503
|
+
snaks-order:
|
504
|
+
- P370
|
505
|
+
- P585
|
506
|
+
- hash: 121d54b27d2cf60ce302d20f565919bde00a468e
|
507
|
+
snaks:
|
508
|
+
P370:
|
509
|
+
- snaktype: value
|
510
|
+
property: P370
|
511
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
512
|
+
datavalue:
|
513
|
+
value: Template:Exchange Rate Data
|
514
|
+
type: string
|
515
|
+
datatype: string
|
516
|
+
P585:
|
517
|
+
- snaktype: value
|
518
|
+
property: P585
|
519
|
+
hash: e9cee5dcec714845da23ec504dba1a791e539e3a
|
520
|
+
datavalue:
|
521
|
+
value:
|
522
|
+
time: "+2013-08-08T05:06:36Z"
|
523
|
+
timezone: 0
|
524
|
+
before: 0
|
525
|
+
after: 0
|
526
|
+
precision: 11
|
527
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
528
|
+
type: time
|
529
|
+
datatype: time
|
530
|
+
snaks-order:
|
531
|
+
- P370
|
532
|
+
- P585
|
533
|
+
- hash: 119dd06bfbcd42626abb135b9e6be44ffdde5ed5
|
534
|
+
snaks:
|
535
|
+
P370:
|
536
|
+
- snaktype: value
|
537
|
+
property: P370
|
538
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
539
|
+
datavalue:
|
540
|
+
value: Template:Exchange Rate Data
|
541
|
+
type: string
|
542
|
+
datatype: string
|
543
|
+
P585:
|
544
|
+
- snaktype: value
|
545
|
+
property: P585
|
546
|
+
hash: 871375c45aa3a2b933574c9d06950a12bc25f650
|
547
|
+
datavalue:
|
548
|
+
value:
|
549
|
+
time: "+2013-08-09T05:06:36Z"
|
550
|
+
timezone: 0
|
551
|
+
before: 0
|
552
|
+
after: 0
|
553
|
+
precision: 11
|
554
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
555
|
+
type: time
|
556
|
+
datatype: time
|
557
|
+
snaks-order:
|
558
|
+
- P370
|
559
|
+
- P585
|
560
|
+
- hash: bff45f9605650a1928d3d5bf0dacc8a8b2fe4af0
|
561
|
+
snaks:
|
562
|
+
P370:
|
563
|
+
- snaktype: value
|
564
|
+
property: P370
|
565
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
566
|
+
datavalue:
|
567
|
+
value: Template:Exchange Rate Data
|
568
|
+
type: string
|
569
|
+
datatype: string
|
570
|
+
P585:
|
571
|
+
- snaktype: value
|
572
|
+
property: P585
|
573
|
+
hash: 063a3d016f97cd25fc2a2f0387adef465794923a
|
574
|
+
datavalue:
|
575
|
+
value:
|
576
|
+
time: "+2013-08-10T05:06:41Z"
|
577
|
+
timezone: 0
|
578
|
+
before: 0
|
579
|
+
after: 0
|
580
|
+
precision: 11
|
581
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
582
|
+
type: time
|
583
|
+
datatype: time
|
584
|
+
snaks-order:
|
585
|
+
- P370
|
586
|
+
- P585
|
587
|
+
- hash: 8844e53ed808f695ffc5e9599f084c83c5e54fce
|
588
|
+
snaks:
|
589
|
+
P370:
|
590
|
+
- snaktype: value
|
591
|
+
property: P370
|
592
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
593
|
+
datavalue:
|
594
|
+
value: Template:Exchange Rate Data
|
595
|
+
type: string
|
596
|
+
datatype: string
|
597
|
+
P585:
|
598
|
+
- snaktype: value
|
599
|
+
property: P585
|
600
|
+
hash: 66aabbaa1853ffedb40a91ccf5f80fdaa522d204
|
601
|
+
datavalue:
|
602
|
+
value:
|
603
|
+
time: "+2013-08-13T05:06:39Z"
|
604
|
+
timezone: 0
|
605
|
+
before: 0
|
606
|
+
after: 0
|
607
|
+
precision: 11
|
608
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
609
|
+
type: time
|
610
|
+
datatype: time
|
611
|
+
snaks-order:
|
612
|
+
- P370
|
613
|
+
- P585
|
614
|
+
- hash: 76ffaa36a9eb480f6f76d2f89828bdb37225f7a3
|
615
|
+
snaks:
|
616
|
+
P370:
|
617
|
+
- snaktype: value
|
618
|
+
property: P370
|
619
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
620
|
+
datavalue:
|
621
|
+
value: Template:Exchange Rate Data
|
622
|
+
type: string
|
623
|
+
datatype: string
|
624
|
+
P585:
|
625
|
+
- snaktype: value
|
626
|
+
property: P585
|
627
|
+
hash: cca365e47096008b2ef21c9d6c05e63c398de6e1
|
628
|
+
datavalue:
|
629
|
+
value:
|
630
|
+
time: "+2013-08-14T05:06:40Z"
|
631
|
+
timezone: 0
|
632
|
+
before: 0
|
633
|
+
after: 0
|
634
|
+
precision: 11
|
635
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
636
|
+
type: time
|
637
|
+
datatype: time
|
638
|
+
snaks-order:
|
639
|
+
- P370
|
640
|
+
- P585
|
641
|
+
- hash: 218d25f89f2e534939d1f6daaefd562327870d53
|
642
|
+
snaks:
|
643
|
+
P370:
|
644
|
+
- snaktype: value
|
645
|
+
property: P370
|
646
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
647
|
+
datavalue:
|
648
|
+
value: Template:Exchange Rate Data
|
649
|
+
type: string
|
650
|
+
datatype: string
|
651
|
+
P585:
|
652
|
+
- snaktype: value
|
653
|
+
property: P585
|
654
|
+
hash: dfad88edda5254acf69ac54f3aa97de6be7ec68f
|
655
|
+
datavalue:
|
656
|
+
value:
|
657
|
+
time: "+2013-08-15T05:06:41Z"
|
658
|
+
timezone: 0
|
659
|
+
before: 0
|
660
|
+
after: 0
|
661
|
+
precision: 11
|
662
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
663
|
+
type: time
|
664
|
+
datatype: time
|
665
|
+
snaks-order:
|
666
|
+
- P370
|
667
|
+
- P585
|
668
|
+
- hash: 625418f2ccc2461eaeeceb23b197a403424551ee
|
669
|
+
snaks:
|
670
|
+
P370:
|
671
|
+
- snaktype: value
|
672
|
+
property: P370
|
673
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
674
|
+
datavalue:
|
675
|
+
value: Template:Exchange Rate Data
|
676
|
+
type: string
|
677
|
+
datatype: string
|
678
|
+
P585:
|
679
|
+
- snaktype: value
|
680
|
+
property: P585
|
681
|
+
hash: 5d1934559b0639ed3631b6ecb7ecf49e69d89947
|
682
|
+
datavalue:
|
683
|
+
value:
|
684
|
+
time: "+2013-08-16T05:06:41Z"
|
685
|
+
timezone: 0
|
686
|
+
before: 0
|
687
|
+
after: 0
|
688
|
+
precision: 11
|
689
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
690
|
+
type: time
|
691
|
+
datatype: time
|
692
|
+
snaks-order:
|
693
|
+
- P370
|
694
|
+
- P585
|
695
|
+
- hash: 7c188994b80b422e4fc331cb171ffd01c4f25e05
|
696
|
+
snaks:
|
697
|
+
P370:
|
698
|
+
- snaktype: value
|
699
|
+
property: P370
|
700
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
701
|
+
datavalue:
|
702
|
+
value: Template:Exchange Rate Data
|
703
|
+
type: string
|
704
|
+
datatype: string
|
705
|
+
P585:
|
706
|
+
- snaktype: value
|
707
|
+
property: P585
|
708
|
+
hash: 1ab6a917a77d43bbf6c56389030e6e76e0fdb145
|
709
|
+
datavalue:
|
710
|
+
value:
|
711
|
+
time: "+2013-08-17T05:06:56Z"
|
712
|
+
timezone: 0
|
713
|
+
before: 0
|
714
|
+
after: 0
|
715
|
+
precision: 11
|
716
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
717
|
+
type: time
|
718
|
+
datatype: time
|
719
|
+
snaks-order:
|
720
|
+
- P370
|
721
|
+
- P585
|
722
|
+
- hash: 75a79fdb42786fc7db4a79ed021b1706524f9f4f
|
723
|
+
snaks:
|
724
|
+
P370:
|
725
|
+
- snaktype: value
|
726
|
+
property: P370
|
727
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
728
|
+
datavalue:
|
729
|
+
value: Template:Exchange Rate Data
|
730
|
+
type: string
|
731
|
+
datatype: string
|
732
|
+
P585:
|
733
|
+
- snaktype: value
|
734
|
+
property: P585
|
735
|
+
hash: bd3ed5eb9b7a4bb1eba83119d8e7ca2e460d6a31
|
736
|
+
datavalue:
|
737
|
+
value:
|
738
|
+
time: "+2013-08-20T05:06:41Z"
|
739
|
+
timezone: 0
|
740
|
+
before: 0
|
741
|
+
after: 0
|
742
|
+
precision: 11
|
743
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
744
|
+
type: time
|
745
|
+
datatype: time
|
746
|
+
snaks-order:
|
747
|
+
- P370
|
748
|
+
- P585
|
749
|
+
- hash: 92eb00c10dbfe5306e8e7b364e45409651fd37ce
|
750
|
+
snaks:
|
751
|
+
P370:
|
752
|
+
- snaktype: value
|
753
|
+
property: P370
|
754
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
755
|
+
datavalue:
|
756
|
+
value: Template:Exchange Rate Data
|
757
|
+
type: string
|
758
|
+
datatype: string
|
759
|
+
P585:
|
760
|
+
- snaktype: value
|
761
|
+
property: P585
|
762
|
+
hash: 374c2178a96280fcd763882a22eab1e9167ce6ec
|
763
|
+
datavalue:
|
764
|
+
value:
|
765
|
+
time: "+2013-08-21T05:06:42Z"
|
766
|
+
timezone: 0
|
767
|
+
before: 0
|
768
|
+
after: 0
|
769
|
+
precision: 11
|
770
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
771
|
+
type: time
|
772
|
+
datatype: time
|
773
|
+
snaks-order:
|
774
|
+
- P370
|
775
|
+
- P585
|
776
|
+
- hash: 7b0ed1293fa4b530988c46a52d60f91f773fd180
|
777
|
+
snaks:
|
778
|
+
P370:
|
779
|
+
- snaktype: value
|
780
|
+
property: P370
|
781
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
782
|
+
datavalue:
|
783
|
+
value: Template:Exchange Rate Data
|
784
|
+
type: string
|
785
|
+
datatype: string
|
786
|
+
P585:
|
787
|
+
- snaktype: value
|
788
|
+
property: P585
|
789
|
+
hash: be6b18c02637c3c795bada75edc111235b642186
|
790
|
+
datavalue:
|
791
|
+
value:
|
792
|
+
time: "+2013-08-22T05:06:53Z"
|
793
|
+
timezone: 0
|
794
|
+
before: 0
|
795
|
+
after: 0
|
796
|
+
precision: 11
|
797
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
798
|
+
type: time
|
799
|
+
datatype: time
|
800
|
+
snaks-order:
|
801
|
+
- P370
|
802
|
+
- P585
|
803
|
+
- hash: 6c822a8db4f2317b954f554fb2a316de617f61f9
|
804
|
+
snaks:
|
805
|
+
P370:
|
806
|
+
- snaktype: value
|
807
|
+
property: P370
|
808
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
809
|
+
datavalue:
|
810
|
+
value: Template:Exchange Rate Data
|
811
|
+
type: string
|
812
|
+
datatype: string
|
813
|
+
P585:
|
814
|
+
- snaktype: value
|
815
|
+
property: P585
|
816
|
+
hash: 01c45333581808705c088d7d1168c09f5fe55a23
|
817
|
+
datavalue:
|
818
|
+
value:
|
819
|
+
time: "+2013-08-23T05:06:38Z"
|
820
|
+
timezone: 0
|
821
|
+
before: 0
|
822
|
+
after: 0
|
823
|
+
precision: 11
|
824
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
825
|
+
type: time
|
826
|
+
datatype: time
|
827
|
+
snaks-order:
|
828
|
+
- P370
|
829
|
+
- P585
|
830
|
+
- hash: 0f61aa9c24e2c759546b583f0ad8d80fb4f2fd0d
|
831
|
+
snaks:
|
832
|
+
P370:
|
833
|
+
- snaktype: value
|
834
|
+
property: P370
|
835
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
836
|
+
datavalue:
|
837
|
+
value: Template:Exchange Rate Data
|
838
|
+
type: string
|
839
|
+
datatype: string
|
840
|
+
P585:
|
841
|
+
- snaktype: value
|
842
|
+
property: P585
|
843
|
+
hash: 3b2e6898710e5dfaff1724d4c60c6b0aa6b27c45
|
844
|
+
datavalue:
|
845
|
+
value:
|
846
|
+
time: "+2013-08-24T05:06:36Z"
|
847
|
+
timezone: 0
|
848
|
+
before: 0
|
849
|
+
after: 0
|
850
|
+
precision: 11
|
851
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
852
|
+
type: time
|
853
|
+
datatype: time
|
854
|
+
snaks-order:
|
855
|
+
- P370
|
856
|
+
- P585
|
857
|
+
- hash: 322dbf1a7427697ed38e0102561c9a37da4701ad
|
858
|
+
snaks:
|
859
|
+
P370:
|
860
|
+
- snaktype: value
|
861
|
+
property: P370
|
862
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
863
|
+
datavalue:
|
864
|
+
value: Template:Exchange Rate Data
|
865
|
+
type: string
|
866
|
+
datatype: string
|
867
|
+
P585:
|
868
|
+
- snaktype: value
|
869
|
+
property: P585
|
870
|
+
hash: 419e83ab750baaa28da9e8a3acdac9e424293be4
|
871
|
+
datavalue:
|
872
|
+
value:
|
873
|
+
time: "+2013-08-27T05:06:40Z"
|
874
|
+
timezone: 0
|
875
|
+
before: 0
|
876
|
+
after: 0
|
877
|
+
precision: 11
|
878
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
879
|
+
type: time
|
880
|
+
datatype: time
|
881
|
+
snaks-order:
|
882
|
+
- P370
|
883
|
+
- P585
|
884
|
+
- hash: 268c92780b4b2272cf172ef88481c8428c416969
|
885
|
+
snaks:
|
886
|
+
P370:
|
887
|
+
- snaktype: value
|
888
|
+
property: P370
|
889
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
890
|
+
datavalue:
|
891
|
+
value: Template:Exchange Rate Data
|
892
|
+
type: string
|
893
|
+
datatype: string
|
894
|
+
P585:
|
895
|
+
- snaktype: value
|
896
|
+
property: P585
|
897
|
+
hash: f51dbbf3aaf29a90de18f0e9227a06653eda5d33
|
898
|
+
datavalue:
|
899
|
+
value:
|
900
|
+
time: "+2013-08-28T05:06:36Z"
|
901
|
+
timezone: 0
|
902
|
+
before: 0
|
903
|
+
after: 0
|
904
|
+
precision: 11
|
905
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
906
|
+
type: time
|
907
|
+
datatype: time
|
908
|
+
snaks-order:
|
909
|
+
- P370
|
910
|
+
- P585
|
911
|
+
- hash: ab3c7474648977272f4080555f370ef1dd9dd111
|
912
|
+
snaks:
|
913
|
+
P370:
|
914
|
+
- snaktype: value
|
915
|
+
property: P370
|
916
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
917
|
+
datavalue:
|
918
|
+
value: Template:Exchange Rate Data
|
919
|
+
type: string
|
920
|
+
datatype: string
|
921
|
+
P585:
|
922
|
+
- snaktype: value
|
923
|
+
property: P585
|
924
|
+
hash: 888f841bd50e1289cd34e0fa403ce60acd578537
|
925
|
+
datavalue:
|
926
|
+
value:
|
927
|
+
time: "+2013-08-29T05:06:38Z"
|
928
|
+
timezone: 0
|
929
|
+
before: 0
|
930
|
+
after: 0
|
931
|
+
precision: 11
|
932
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
933
|
+
type: time
|
934
|
+
datatype: time
|
935
|
+
snaks-order:
|
936
|
+
- P370
|
937
|
+
- P585
|
938
|
+
- hash: 1c53d8f174e490dc2bd48450315dd9eb4a580cb6
|
939
|
+
snaks:
|
940
|
+
P370:
|
941
|
+
- snaktype: value
|
942
|
+
property: P370
|
943
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
944
|
+
datavalue:
|
945
|
+
value: Template:Exchange Rate Data
|
946
|
+
type: string
|
947
|
+
datatype: string
|
948
|
+
P585:
|
949
|
+
- snaktype: value
|
950
|
+
property: P585
|
951
|
+
hash: f64cccdfa1d693e7de9edc1a26109cb9d95385ef
|
952
|
+
datavalue:
|
953
|
+
value:
|
954
|
+
time: "+2013-08-30T05:06:48Z"
|
955
|
+
timezone: 0
|
956
|
+
before: 0
|
957
|
+
after: 0
|
958
|
+
precision: 11
|
959
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
960
|
+
type: time
|
961
|
+
datatype: time
|
962
|
+
snaks-order:
|
963
|
+
- P370
|
964
|
+
- P585
|
965
|
+
- hash: 158c4c7fffad1a43a7c3f41096041e9e57864b0b
|
966
|
+
snaks:
|
967
|
+
P370:
|
968
|
+
- snaktype: value
|
969
|
+
property: P370
|
970
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
971
|
+
datavalue:
|
972
|
+
value: Template:Exchange Rate Data
|
973
|
+
type: string
|
974
|
+
datatype: string
|
975
|
+
P585:
|
976
|
+
- snaktype: value
|
977
|
+
property: P585
|
978
|
+
hash: 8c3e1d880186e7c672c1661d6e19a904905a2701
|
979
|
+
datavalue:
|
980
|
+
value:
|
981
|
+
time: "+2013-08-31T05:06:40Z"
|
982
|
+
timezone: 0
|
983
|
+
before: 0
|
984
|
+
after: 0
|
985
|
+
precision: 11
|
986
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
987
|
+
type: time
|
988
|
+
datatype: time
|
989
|
+
snaks-order:
|
990
|
+
- P370
|
991
|
+
- P585
|
992
|
+
- hash: 9f60a70ce2412089890abbb637042638a64a7517
|
993
|
+
snaks:
|
994
|
+
P370:
|
995
|
+
- snaktype: value
|
996
|
+
property: P370
|
997
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
998
|
+
datavalue:
|
999
|
+
value: Template:Exchange Rate Data
|
1000
|
+
type: string
|
1001
|
+
datatype: string
|
1002
|
+
P585:
|
1003
|
+
- snaktype: value
|
1004
|
+
property: P585
|
1005
|
+
hash: 7c38aba0674a4922f661fcc03de73bb7757eda8f
|
1006
|
+
datavalue:
|
1007
|
+
value:
|
1008
|
+
time: "+2013-09-03T05:06:34Z"
|
1009
|
+
timezone: 0
|
1010
|
+
before: 0
|
1011
|
+
after: 0
|
1012
|
+
precision: 11
|
1013
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1014
|
+
type: time
|
1015
|
+
datatype: time
|
1016
|
+
snaks-order:
|
1017
|
+
- P370
|
1018
|
+
- P585
|
1019
|
+
- hash: 942d9bae47d55ebe834fa7f198f65e081eaf5102
|
1020
|
+
snaks:
|
1021
|
+
P370:
|
1022
|
+
- snaktype: value
|
1023
|
+
property: P370
|
1024
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1025
|
+
datavalue:
|
1026
|
+
value: Template:Exchange Rate Data
|
1027
|
+
type: string
|
1028
|
+
datatype: string
|
1029
|
+
P585:
|
1030
|
+
- snaktype: value
|
1031
|
+
property: P585
|
1032
|
+
hash: 1d15ffb108c6e8a8002c70e5fa41108453f02f30
|
1033
|
+
datavalue:
|
1034
|
+
value:
|
1035
|
+
time: "+2013-09-04T05:06:39Z"
|
1036
|
+
timezone: 0
|
1037
|
+
before: 0
|
1038
|
+
after: 0
|
1039
|
+
precision: 11
|
1040
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1041
|
+
type: time
|
1042
|
+
datatype: time
|
1043
|
+
snaks-order:
|
1044
|
+
- P370
|
1045
|
+
- P585
|
1046
|
+
- hash: 1b9e62c98a12baa7b3c5462baed94c94a226c157
|
1047
|
+
snaks:
|
1048
|
+
P370:
|
1049
|
+
- snaktype: value
|
1050
|
+
property: P370
|
1051
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1052
|
+
datavalue:
|
1053
|
+
value: Template:Exchange Rate Data
|
1054
|
+
type: string
|
1055
|
+
datatype: string
|
1056
|
+
P585:
|
1057
|
+
- snaktype: value
|
1058
|
+
property: P585
|
1059
|
+
hash: 8af0910e18ecdd5fd41232e9937edc0040acfbbd
|
1060
|
+
datavalue:
|
1061
|
+
value:
|
1062
|
+
time: "+2013-09-05T05:06:44Z"
|
1063
|
+
timezone: 0
|
1064
|
+
before: 0
|
1065
|
+
after: 0
|
1066
|
+
precision: 11
|
1067
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1068
|
+
type: time
|
1069
|
+
datatype: time
|
1070
|
+
snaks-order:
|
1071
|
+
- P370
|
1072
|
+
- P585
|
1073
|
+
- hash: 39d1c3b9003697d6336f1b78e15b6440fb2e905f
|
1074
|
+
snaks:
|
1075
|
+
P370:
|
1076
|
+
- snaktype: value
|
1077
|
+
property: P370
|
1078
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1079
|
+
datavalue:
|
1080
|
+
value: Template:Exchange Rate Data
|
1081
|
+
type: string
|
1082
|
+
datatype: string
|
1083
|
+
P585:
|
1084
|
+
- snaktype: value
|
1085
|
+
property: P585
|
1086
|
+
hash: b4397e41073fa678af37ad14a57080233403e70f
|
1087
|
+
datavalue:
|
1088
|
+
value:
|
1089
|
+
time: "+2013-09-06T05:06:44Z"
|
1090
|
+
timezone: 0
|
1091
|
+
before: 0
|
1092
|
+
after: 0
|
1093
|
+
precision: 11
|
1094
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1095
|
+
type: time
|
1096
|
+
datatype: time
|
1097
|
+
snaks-order:
|
1098
|
+
- P370
|
1099
|
+
- P585
|
1100
|
+
- hash: 6ee69a36ce1209e33a11974f9557414320598819
|
1101
|
+
snaks:
|
1102
|
+
P370:
|
1103
|
+
- snaktype: value
|
1104
|
+
property: P370
|
1105
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1106
|
+
datavalue:
|
1107
|
+
value: Template:Exchange Rate Data
|
1108
|
+
type: string
|
1109
|
+
datatype: string
|
1110
|
+
P585:
|
1111
|
+
- snaktype: value
|
1112
|
+
property: P585
|
1113
|
+
hash: e780dda57a2fecd4e734f4e294432783975848c5
|
1114
|
+
datavalue:
|
1115
|
+
value:
|
1116
|
+
time: "+2013-09-07T05:06:44Z"
|
1117
|
+
timezone: 0
|
1118
|
+
before: 0
|
1119
|
+
after: 0
|
1120
|
+
precision: 11
|
1121
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1122
|
+
type: time
|
1123
|
+
datatype: time
|
1124
|
+
snaks-order:
|
1125
|
+
- P370
|
1126
|
+
- P585
|
1127
|
+
- hash: 3628b7e73b80e0176ca2e3733376eef8d9640b2f
|
1128
|
+
snaks:
|
1129
|
+
P370:
|
1130
|
+
- snaktype: value
|
1131
|
+
property: P370
|
1132
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1133
|
+
datavalue:
|
1134
|
+
value: Template:Exchange Rate Data
|
1135
|
+
type: string
|
1136
|
+
datatype: string
|
1137
|
+
P585:
|
1138
|
+
- snaktype: value
|
1139
|
+
property: P585
|
1140
|
+
hash: 9c45193a942cb554d74a3b331a78e901f915c4c0
|
1141
|
+
datavalue:
|
1142
|
+
value:
|
1143
|
+
time: "+2013-09-10T05:06:45Z"
|
1144
|
+
timezone: 0
|
1145
|
+
before: 0
|
1146
|
+
after: 0
|
1147
|
+
precision: 11
|
1148
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1149
|
+
type: time
|
1150
|
+
datatype: time
|
1151
|
+
snaks-order:
|
1152
|
+
- P370
|
1153
|
+
- P585
|
1154
|
+
- hash: e463a860918fe14d6951d76a9995164156913106
|
1155
|
+
snaks:
|
1156
|
+
P370:
|
1157
|
+
- snaktype: value
|
1158
|
+
property: P370
|
1159
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1160
|
+
datavalue:
|
1161
|
+
value: Template:Exchange Rate Data
|
1162
|
+
type: string
|
1163
|
+
datatype: string
|
1164
|
+
P585:
|
1165
|
+
- snaktype: value
|
1166
|
+
property: P585
|
1167
|
+
hash: a8c4c8e2856693fff237e1dfec0262f26e173286
|
1168
|
+
datavalue:
|
1169
|
+
value:
|
1170
|
+
time: "+2013-09-11T05:06:47Z"
|
1171
|
+
timezone: 0
|
1172
|
+
before: 0
|
1173
|
+
after: 0
|
1174
|
+
precision: 11
|
1175
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1176
|
+
type: time
|
1177
|
+
datatype: time
|
1178
|
+
snaks-order:
|
1179
|
+
- P370
|
1180
|
+
- P585
|
1181
|
+
- hash: 54c0babdb38f4f1a530a01c72edcc72f1bab2e6a
|
1182
|
+
snaks:
|
1183
|
+
P370:
|
1184
|
+
- snaktype: value
|
1185
|
+
property: P370
|
1186
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1187
|
+
datavalue:
|
1188
|
+
value: Template:Exchange Rate Data
|
1189
|
+
type: string
|
1190
|
+
datatype: string
|
1191
|
+
P585:
|
1192
|
+
- snaktype: value
|
1193
|
+
property: P585
|
1194
|
+
hash: ecc5279c0b83ac765043f62ce871bd1216d48908
|
1195
|
+
datavalue:
|
1196
|
+
value:
|
1197
|
+
time: "+2013-09-13T05:06:38Z"
|
1198
|
+
timezone: 0
|
1199
|
+
before: 0
|
1200
|
+
after: 0
|
1201
|
+
precision: 11
|
1202
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1203
|
+
type: time
|
1204
|
+
datatype: time
|
1205
|
+
snaks-order:
|
1206
|
+
- P370
|
1207
|
+
- P585
|
1208
|
+
- hash: efc33ba57406d0fa5737e3ce0b50a2e1f9512cfe
|
1209
|
+
snaks:
|
1210
|
+
P370:
|
1211
|
+
- snaktype: value
|
1212
|
+
property: P370
|
1213
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1214
|
+
datavalue:
|
1215
|
+
value: Template:Exchange Rate Data
|
1216
|
+
type: string
|
1217
|
+
datatype: string
|
1218
|
+
P585:
|
1219
|
+
- snaktype: value
|
1220
|
+
property: P585
|
1221
|
+
hash: 87bba0685922fa411051817256117fa4f65d2532
|
1222
|
+
datavalue:
|
1223
|
+
value:
|
1224
|
+
time: "+2013-09-14T05:06:38Z"
|
1225
|
+
timezone: 0
|
1226
|
+
before: 0
|
1227
|
+
after: 0
|
1228
|
+
precision: 11
|
1229
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1230
|
+
type: time
|
1231
|
+
datatype: time
|
1232
|
+
snaks-order:
|
1233
|
+
- P370
|
1234
|
+
- P585
|
1235
|
+
- hash: f24699e6bcaf7addb8b9c90cce59f53f8ed5e476
|
1236
|
+
snaks:
|
1237
|
+
P370:
|
1238
|
+
- snaktype: value
|
1239
|
+
property: P370
|
1240
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1241
|
+
datavalue:
|
1242
|
+
value: Template:Exchange Rate Data
|
1243
|
+
type: string
|
1244
|
+
datatype: string
|
1245
|
+
P585:
|
1246
|
+
- snaktype: value
|
1247
|
+
property: P585
|
1248
|
+
hash: f9521817f0be11bf68f7e48a47b6d331aff719b3
|
1249
|
+
datavalue:
|
1250
|
+
value:
|
1251
|
+
time: "+2013-09-17T05:06:47Z"
|
1252
|
+
timezone: 0
|
1253
|
+
before: 0
|
1254
|
+
after: 0
|
1255
|
+
precision: 11
|
1256
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1257
|
+
type: time
|
1258
|
+
datatype: time
|
1259
|
+
snaks-order:
|
1260
|
+
- P370
|
1261
|
+
- P585
|
1262
|
+
- hash: 6a81fbc5faeb793d6745efff92a75f5ec2f541cf
|
1263
|
+
snaks:
|
1264
|
+
P370:
|
1265
|
+
- snaktype: value
|
1266
|
+
property: P370
|
1267
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1268
|
+
datavalue:
|
1269
|
+
value: Template:Exchange Rate Data
|
1270
|
+
type: string
|
1271
|
+
datatype: string
|
1272
|
+
P585:
|
1273
|
+
- snaktype: value
|
1274
|
+
property: P585
|
1275
|
+
hash: 71ec49c8ee7bea753835076c36997a2f1e10e8f4
|
1276
|
+
datavalue:
|
1277
|
+
value:
|
1278
|
+
time: "+2013-09-18T05:06:48Z"
|
1279
|
+
timezone: 0
|
1280
|
+
before: 0
|
1281
|
+
after: 0
|
1282
|
+
precision: 11
|
1283
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1284
|
+
type: time
|
1285
|
+
datatype: time
|
1286
|
+
snaks-order:
|
1287
|
+
- P370
|
1288
|
+
- P585
|
1289
|
+
- hash: 4d954d9f08139fe22dddf063384c40600f1c3f35
|
1290
|
+
snaks:
|
1291
|
+
P370:
|
1292
|
+
- snaktype: value
|
1293
|
+
property: P370
|
1294
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1295
|
+
datavalue:
|
1296
|
+
value: Template:Exchange Rate Data
|
1297
|
+
type: string
|
1298
|
+
datatype: string
|
1299
|
+
P585:
|
1300
|
+
- snaktype: value
|
1301
|
+
property: P585
|
1302
|
+
hash: f1b49dc96cc3b124d19b9c361db1bc0db6026b37
|
1303
|
+
datavalue:
|
1304
|
+
value:
|
1305
|
+
time: "+2013-09-19T05:06:45Z"
|
1306
|
+
timezone: 0
|
1307
|
+
before: 0
|
1308
|
+
after: 0
|
1309
|
+
precision: 11
|
1310
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1311
|
+
type: time
|
1312
|
+
datatype: time
|
1313
|
+
snaks-order:
|
1314
|
+
- P370
|
1315
|
+
- P585
|
1316
|
+
- hash: aac3593fea532bcb32b8cf8334bba4be7735e679
|
1317
|
+
snaks:
|
1318
|
+
P370:
|
1319
|
+
- snaktype: value
|
1320
|
+
property: P370
|
1321
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1322
|
+
datavalue:
|
1323
|
+
value: Template:Exchange Rate Data
|
1324
|
+
type: string
|
1325
|
+
datatype: string
|
1326
|
+
P585:
|
1327
|
+
- snaktype: value
|
1328
|
+
property: P585
|
1329
|
+
hash: 7e3162a4f8a8d0ded22362a16800c1410f77d833
|
1330
|
+
datavalue:
|
1331
|
+
value:
|
1332
|
+
time: "+2013-09-20T05:06:51Z"
|
1333
|
+
timezone: 0
|
1334
|
+
before: 0
|
1335
|
+
after: 0
|
1336
|
+
precision: 11
|
1337
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1338
|
+
type: time
|
1339
|
+
datatype: time
|
1340
|
+
snaks-order:
|
1341
|
+
- P370
|
1342
|
+
- P585
|
1343
|
+
- hash: 3379c52d32df7ba61a2c8d337c4ef1cd3a9e0ec5
|
1344
|
+
snaks:
|
1345
|
+
P370:
|
1346
|
+
- snaktype: value
|
1347
|
+
property: P370
|
1348
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1349
|
+
datavalue:
|
1350
|
+
value: Template:Exchange Rate Data
|
1351
|
+
type: string
|
1352
|
+
datatype: string
|
1353
|
+
P585:
|
1354
|
+
- snaktype: value
|
1355
|
+
property: P585
|
1356
|
+
hash: f28add12235abb2181f5fb8f2d2915ff87324b46
|
1357
|
+
datavalue:
|
1358
|
+
value:
|
1359
|
+
time: "+2013-09-21T05:06:51Z"
|
1360
|
+
timezone: 0
|
1361
|
+
before: 0
|
1362
|
+
after: 0
|
1363
|
+
precision: 11
|
1364
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1365
|
+
type: time
|
1366
|
+
datatype: time
|
1367
|
+
snaks-order:
|
1368
|
+
- P370
|
1369
|
+
- P585
|
1370
|
+
- hash: a492a265d0d7029ae1bb85f144bb8cc8be40827a
|
1371
|
+
snaks:
|
1372
|
+
P370:
|
1373
|
+
- snaktype: value
|
1374
|
+
property: P370
|
1375
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1376
|
+
datavalue:
|
1377
|
+
value: Template:Exchange Rate Data
|
1378
|
+
type: string
|
1379
|
+
datatype: string
|
1380
|
+
P585:
|
1381
|
+
- snaktype: value
|
1382
|
+
property: P585
|
1383
|
+
hash: 3bd0ca9c9e9505eebbd34df9aed95bbfa930153f
|
1384
|
+
datavalue:
|
1385
|
+
value:
|
1386
|
+
time: "+2013-09-24T05:06:53Z"
|
1387
|
+
timezone: 0
|
1388
|
+
before: 0
|
1389
|
+
after: 0
|
1390
|
+
precision: 11
|
1391
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1392
|
+
type: time
|
1393
|
+
datatype: time
|
1394
|
+
snaks-order:
|
1395
|
+
- P370
|
1396
|
+
- P585
|
1397
|
+
- hash: b7ec93dd754faa590e1a5078d62d665059a4ac63
|
1398
|
+
snaks:
|
1399
|
+
P370:
|
1400
|
+
- snaktype: value
|
1401
|
+
property: P370
|
1402
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1403
|
+
datavalue:
|
1404
|
+
value: Template:Exchange Rate Data
|
1405
|
+
type: string
|
1406
|
+
datatype: string
|
1407
|
+
P585:
|
1408
|
+
- snaktype: value
|
1409
|
+
property: P585
|
1410
|
+
hash: 2db37fde8ab9258dbec57fad8249e0d161c8b106
|
1411
|
+
datavalue:
|
1412
|
+
value:
|
1413
|
+
time: "+2013-09-25T05:06:52Z"
|
1414
|
+
timezone: 0
|
1415
|
+
before: 0
|
1416
|
+
after: 0
|
1417
|
+
precision: 11
|
1418
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1419
|
+
type: time
|
1420
|
+
datatype: time
|
1421
|
+
snaks-order:
|
1422
|
+
- P370
|
1423
|
+
- P585
|
1424
|
+
- hash: 8999de332df59e5146cfddef7a65e31245cca15e
|
1425
|
+
snaks:
|
1426
|
+
P370:
|
1427
|
+
- snaktype: value
|
1428
|
+
property: P370
|
1429
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1430
|
+
datavalue:
|
1431
|
+
value: Template:Exchange Rate Data
|
1432
|
+
type: string
|
1433
|
+
datatype: string
|
1434
|
+
P585:
|
1435
|
+
- snaktype: value
|
1436
|
+
property: P585
|
1437
|
+
hash: 40bd6c1879c58c6466e32a951d526af7012dc261
|
1438
|
+
datavalue:
|
1439
|
+
value:
|
1440
|
+
time: "+2013-09-26T05:06:52Z"
|
1441
|
+
timezone: 0
|
1442
|
+
before: 0
|
1443
|
+
after: 0
|
1444
|
+
precision: 11
|
1445
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1446
|
+
type: time
|
1447
|
+
datatype: time
|
1448
|
+
snaks-order:
|
1449
|
+
- P370
|
1450
|
+
- P585
|
1451
|
+
- hash: 8920a1b0d0c76e9bde4a73323fb1d27db9f7ffbc
|
1452
|
+
snaks:
|
1453
|
+
P370:
|
1454
|
+
- snaktype: value
|
1455
|
+
property: P370
|
1456
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1457
|
+
datavalue:
|
1458
|
+
value: Template:Exchange Rate Data
|
1459
|
+
type: string
|
1460
|
+
datatype: string
|
1461
|
+
P585:
|
1462
|
+
- snaktype: value
|
1463
|
+
property: P585
|
1464
|
+
hash: 447762077790cc1f3fcca75082ade8509a6b12fc
|
1465
|
+
datavalue:
|
1466
|
+
value:
|
1467
|
+
time: "+2013-09-27T05:06:53Z"
|
1468
|
+
timezone: 0
|
1469
|
+
before: 0
|
1470
|
+
after: 0
|
1471
|
+
precision: 11
|
1472
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1473
|
+
type: time
|
1474
|
+
datatype: time
|
1475
|
+
snaks-order:
|
1476
|
+
- P370
|
1477
|
+
- P585
|
1478
|
+
- hash: 9d642bf4655bf24dbce163d1d448d5ea42bd2727
|
1479
|
+
snaks:
|
1480
|
+
P370:
|
1481
|
+
- snaktype: value
|
1482
|
+
property: P370
|
1483
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1484
|
+
datavalue:
|
1485
|
+
value: Template:Exchange Rate Data
|
1486
|
+
type: string
|
1487
|
+
datatype: string
|
1488
|
+
P585:
|
1489
|
+
- snaktype: value
|
1490
|
+
property: P585
|
1491
|
+
hash: 0fb29de619d6f30dfae3a7576e454996a5551008
|
1492
|
+
datavalue:
|
1493
|
+
value:
|
1494
|
+
time: "+2013-10-01T05:06:52Z"
|
1495
|
+
timezone: 0
|
1496
|
+
before: 0
|
1497
|
+
after: 0
|
1498
|
+
precision: 11
|
1499
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1500
|
+
type: time
|
1501
|
+
datatype: time
|
1502
|
+
snaks-order:
|
1503
|
+
- P370
|
1504
|
+
- P585
|
1505
|
+
- hash: 5230565edbfe553d9ebd4fd00b629650a4f63f01
|
1506
|
+
snaks:
|
1507
|
+
P370:
|
1508
|
+
- snaktype: value
|
1509
|
+
property: P370
|
1510
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1511
|
+
datavalue:
|
1512
|
+
value: Template:Exchange Rate Data
|
1513
|
+
type: string
|
1514
|
+
datatype: string
|
1515
|
+
P585:
|
1516
|
+
- snaktype: value
|
1517
|
+
property: P585
|
1518
|
+
hash: 12dffe6f6729ebe21bf85e7cfb807008fa4d12dd
|
1519
|
+
datavalue:
|
1520
|
+
value:
|
1521
|
+
time: "+2013-10-02T05:07:04Z"
|
1522
|
+
timezone: 0
|
1523
|
+
before: 0
|
1524
|
+
after: 0
|
1525
|
+
precision: 11
|
1526
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1527
|
+
type: time
|
1528
|
+
datatype: time
|
1529
|
+
snaks-order:
|
1530
|
+
- P370
|
1531
|
+
- P585
|
1532
|
+
- hash: 7198fbad550805e65747856c7fbb24f618ef7cab
|
1533
|
+
snaks:
|
1534
|
+
P370:
|
1535
|
+
- snaktype: value
|
1536
|
+
property: P370
|
1537
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1538
|
+
datavalue:
|
1539
|
+
value: Template:Exchange Rate Data
|
1540
|
+
type: string
|
1541
|
+
datatype: string
|
1542
|
+
P585:
|
1543
|
+
- snaktype: value
|
1544
|
+
property: P585
|
1545
|
+
hash: a3653251a93ac8faf8e01e94fcf9631bbe1fda90
|
1546
|
+
datavalue:
|
1547
|
+
value:
|
1548
|
+
time: "+2013-10-03T05:07:07Z"
|
1549
|
+
timezone: 0
|
1550
|
+
before: 0
|
1551
|
+
after: 0
|
1552
|
+
precision: 11
|
1553
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1554
|
+
type: time
|
1555
|
+
datatype: time
|
1556
|
+
snaks-order:
|
1557
|
+
- P370
|
1558
|
+
- P585
|
1559
|
+
- hash: 1913131f1dd21f7929a9bfe7a50ae3067a62ebe2
|
1560
|
+
snaks:
|
1561
|
+
P370:
|
1562
|
+
- snaktype: value
|
1563
|
+
property: P370
|
1564
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1565
|
+
datavalue:
|
1566
|
+
value: Template:Exchange Rate Data
|
1567
|
+
type: string
|
1568
|
+
datatype: string
|
1569
|
+
P585:
|
1570
|
+
- snaktype: value
|
1571
|
+
property: P585
|
1572
|
+
hash: 219c00b6715519869fd2724c59ef6517b862f2a8
|
1573
|
+
datavalue:
|
1574
|
+
value:
|
1575
|
+
time: "+2013-10-04T05:06:50Z"
|
1576
|
+
timezone: 0
|
1577
|
+
before: 0
|
1578
|
+
after: 0
|
1579
|
+
precision: 11
|
1580
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1581
|
+
type: time
|
1582
|
+
datatype: time
|
1583
|
+
snaks-order:
|
1584
|
+
- P370
|
1585
|
+
- P585
|
1586
|
+
- hash: 45b8eb5c6e319b3a9e700c7d94c1314a14fce00c
|
1587
|
+
snaks:
|
1588
|
+
P370:
|
1589
|
+
- snaktype: value
|
1590
|
+
property: P370
|
1591
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1592
|
+
datavalue:
|
1593
|
+
value: Template:Exchange Rate Data
|
1594
|
+
type: string
|
1595
|
+
datatype: string
|
1596
|
+
P585:
|
1597
|
+
- snaktype: value
|
1598
|
+
property: P585
|
1599
|
+
hash: 53daacc5f018af34f3aabd5ac9dc759b2b41d24a
|
1600
|
+
datavalue:
|
1601
|
+
value:
|
1602
|
+
time: "+2013-10-05T05:06:43Z"
|
1603
|
+
timezone: 0
|
1604
|
+
before: 0
|
1605
|
+
after: 0
|
1606
|
+
precision: 11
|
1607
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1608
|
+
type: time
|
1609
|
+
datatype: time
|
1610
|
+
snaks-order:
|
1611
|
+
- P370
|
1612
|
+
- P585
|
1613
|
+
- hash: 3a868192485d5f2849ba470c328d6c23b54635f6
|
1614
|
+
snaks:
|
1615
|
+
P370:
|
1616
|
+
- snaktype: value
|
1617
|
+
property: P370
|
1618
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1619
|
+
datavalue:
|
1620
|
+
value: Template:Exchange Rate Data
|
1621
|
+
type: string
|
1622
|
+
datatype: string
|
1623
|
+
P585:
|
1624
|
+
- snaktype: value
|
1625
|
+
property: P585
|
1626
|
+
hash: aacd3661d2e2c22b5ad5a80791841c28ab606373
|
1627
|
+
datavalue:
|
1628
|
+
value:
|
1629
|
+
time: "+2013-10-08T05:06:55Z"
|
1630
|
+
timezone: 0
|
1631
|
+
before: 0
|
1632
|
+
after: 0
|
1633
|
+
precision: 11
|
1634
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1635
|
+
type: time
|
1636
|
+
datatype: time
|
1637
|
+
snaks-order:
|
1638
|
+
- P370
|
1639
|
+
- P585
|
1640
|
+
- hash: e26b5df8c5fc3ad91e756080ebb7415dbb28270a
|
1641
|
+
snaks:
|
1642
|
+
P370:
|
1643
|
+
- snaktype: value
|
1644
|
+
property: P370
|
1645
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1646
|
+
datavalue:
|
1647
|
+
value: Template:Exchange Rate Data
|
1648
|
+
type: string
|
1649
|
+
datatype: string
|
1650
|
+
P585:
|
1651
|
+
- snaktype: value
|
1652
|
+
property: P585
|
1653
|
+
hash: eb81b15862d9890cf61171ee2be30fd9da168d1e
|
1654
|
+
datavalue:
|
1655
|
+
value:
|
1656
|
+
time: "+2013-10-09T05:07:05Z"
|
1657
|
+
timezone: 0
|
1658
|
+
before: 0
|
1659
|
+
after: 0
|
1660
|
+
precision: 11
|
1661
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1662
|
+
type: time
|
1663
|
+
datatype: time
|
1664
|
+
snaks-order:
|
1665
|
+
- P370
|
1666
|
+
- P585
|
1667
|
+
- hash: 51da70eaede2fb679b2e21671805d493e620a12e
|
1668
|
+
snaks:
|
1669
|
+
P370:
|
1670
|
+
- snaktype: value
|
1671
|
+
property: P370
|
1672
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1673
|
+
datavalue:
|
1674
|
+
value: Template:Exchange Rate Data
|
1675
|
+
type: string
|
1676
|
+
datatype: string
|
1677
|
+
P585:
|
1678
|
+
- snaktype: value
|
1679
|
+
property: P585
|
1680
|
+
hash: 8609cb441627dd49dd22212da01f85ca2da0ddac
|
1681
|
+
datavalue:
|
1682
|
+
value:
|
1683
|
+
time: "+2013-10-10T05:06:50Z"
|
1684
|
+
timezone: 0
|
1685
|
+
before: 0
|
1686
|
+
after: 0
|
1687
|
+
precision: 11
|
1688
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1689
|
+
type: time
|
1690
|
+
datatype: time
|
1691
|
+
snaks-order:
|
1692
|
+
- P370
|
1693
|
+
- P585
|
1694
|
+
- hash: b199d42870756ea452eec25983d09aff937eddc4
|
1695
|
+
snaks:
|
1696
|
+
P370:
|
1697
|
+
- snaktype: value
|
1698
|
+
property: P370
|
1699
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1700
|
+
datavalue:
|
1701
|
+
value: Template:Exchange Rate Data
|
1702
|
+
type: string
|
1703
|
+
datatype: string
|
1704
|
+
P585:
|
1705
|
+
- snaktype: value
|
1706
|
+
property: P585
|
1707
|
+
hash: 75fc688f9202ee0836af9bfa60406ff7a4119094
|
1708
|
+
datavalue:
|
1709
|
+
value:
|
1710
|
+
time: "+2013-10-11T05:06:52Z"
|
1711
|
+
timezone: 0
|
1712
|
+
before: 0
|
1713
|
+
after: 0
|
1714
|
+
precision: 11
|
1715
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1716
|
+
type: time
|
1717
|
+
datatype: time
|
1718
|
+
snaks-order:
|
1719
|
+
- P370
|
1720
|
+
- P585
|
1721
|
+
- hash: fc62be2e1f9a54e07c3b3523efd15300f17561aa
|
1722
|
+
snaks:
|
1723
|
+
P370:
|
1724
|
+
- snaktype: value
|
1725
|
+
property: P370
|
1726
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1727
|
+
datavalue:
|
1728
|
+
value: Template:Exchange Rate Data
|
1729
|
+
type: string
|
1730
|
+
datatype: string
|
1731
|
+
P585:
|
1732
|
+
- snaktype: value
|
1733
|
+
property: P585
|
1734
|
+
hash: 9a44506b2d4555d277142333eb7aede9ffe314b3
|
1735
|
+
datavalue:
|
1736
|
+
value:
|
1737
|
+
time: "+2013-10-12T05:06:51Z"
|
1738
|
+
timezone: 0
|
1739
|
+
before: 0
|
1740
|
+
after: 0
|
1741
|
+
precision: 11
|
1742
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1743
|
+
type: time
|
1744
|
+
datatype: time
|
1745
|
+
snaks-order:
|
1746
|
+
- P370
|
1747
|
+
- P585
|
1748
|
+
- hash: c25c076cc643a009177ab56f8348d7c7e7576c2d
|
1749
|
+
snaks:
|
1750
|
+
P370:
|
1751
|
+
- snaktype: value
|
1752
|
+
property: P370
|
1753
|
+
hash: 0c71c07f8d478be8cd881303cd6fc6987efe6702
|
1754
|
+
datavalue:
|
1755
|
+
value: Template:Exchange Rate Data
|
1756
|
+
type: string
|
1757
|
+
datatype: string
|
1758
|
+
P585:
|
1759
|
+
- snaktype: value
|
1760
|
+
property: P585
|
1761
|
+
hash: e4ca9f55339eb6f3c1c9ec7a5000da9fea174f21
|
1762
|
+
datavalue:
|
1763
|
+
value:
|
1764
|
+
time: "+2013-10-15T05:07:02Z"
|
1765
|
+
timezone: 0
|
1766
|
+
before: 0
|
1767
|
+
after: 0
|
1768
|
+
precision: 11
|
1769
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1770
|
+
type: time
|
1771
|
+
datatype: time
|
1772
|
+
snaks-order:
|
1773
|
+
- P370
|
1774
|
+
- P585
|
1775
|
+
P373:
|
1776
|
+
- mainsnak:
|
1777
|
+
snaktype: value
|
1778
|
+
property: P373
|
1779
|
+
hash: 9271f164638ecb484158a2fc3a52c9d958563545
|
1780
|
+
datavalue:
|
1781
|
+
value: Money of Poland
|
1782
|
+
type: string
|
1783
|
+
datatype: string
|
1784
|
+
type: statement
|
1785
|
+
id: q123213$115293CE-8626-4301-A0AD-4237EA55960D
|
1786
|
+
rank: normal
|
1787
|
+
references:
|
1788
|
+
- hash: 9a24f7c0208b05d6be97077d855671d1dfdbc0dd
|
1789
|
+
snaks:
|
1790
|
+
P143:
|
1791
|
+
- snaktype: value
|
1792
|
+
property: P143
|
1793
|
+
hash: d38375ffe6fe142663ff55cd783aa4df4301d83d
|
1794
|
+
datavalue:
|
1795
|
+
value:
|
1796
|
+
entity-type: item
|
1797
|
+
numeric-id: 48183
|
1798
|
+
id: Q48183
|
1799
|
+
type: wikibase-entityid
|
1800
|
+
datatype: wikibase-item
|
1801
|
+
snaks-order:
|
1802
|
+
- P143
|
1803
|
+
P498:
|
1804
|
+
- mainsnak:
|
1805
|
+
snaktype: value
|
1806
|
+
property: P498
|
1807
|
+
hash: e3ab7b7a6bed563af5250a2bf0a56d2a7f48b4a2
|
1808
|
+
datavalue:
|
1809
|
+
value: PLN
|
1810
|
+
type: string
|
1811
|
+
datatype: external-id
|
1812
|
+
type: statement
|
1813
|
+
id: q123213$0db83d17-4324-f3a2-dbe0-d7c80986c3dc
|
1814
|
+
rank: normal
|
1815
|
+
references:
|
1816
|
+
- hash: 72b22690e4f0d83fa1dc17df15d31e576c5e335e
|
1817
|
+
snaks:
|
1818
|
+
P854:
|
1819
|
+
- snaktype: value
|
1820
|
+
property: P854
|
1821
|
+
hash: 662109c9bddd7795083f27d4032bb428f5a73c3c
|
1822
|
+
datavalue:
|
1823
|
+
value: https://www.currency-iso.org/dam/downloads/lists/list_one.xml
|
1824
|
+
type: string
|
1825
|
+
datatype: url
|
1826
|
+
P1476:
|
1827
|
+
- snaktype: value
|
1828
|
+
property: P1476
|
1829
|
+
hash: 2689eb034096b5a2b8aae728d2db0ae9f2ac9043
|
1830
|
+
datavalue:
|
1831
|
+
value:
|
1832
|
+
text: Current currency & funds code list – ISO Currency
|
1833
|
+
language: en
|
1834
|
+
type: monolingualtext
|
1835
|
+
datatype: monolingualtext
|
1836
|
+
P2701:
|
1837
|
+
- snaktype: value
|
1838
|
+
property: P2701
|
1839
|
+
hash: beee7fb816d2a2d8a0f998dfe4ed929a723ec33a
|
1840
|
+
datavalue:
|
1841
|
+
value:
|
1842
|
+
entity-type: item
|
1843
|
+
numeric-id: 2115
|
1844
|
+
id: Q2115
|
1845
|
+
type: wikibase-entityid
|
1846
|
+
datatype: wikibase-item
|
1847
|
+
P813:
|
1848
|
+
- snaktype: value
|
1849
|
+
property: P813
|
1850
|
+
hash: 7ffb03e53afedbd507504be928a6bfe52f9fc3fd
|
1851
|
+
datavalue:
|
1852
|
+
value:
|
1853
|
+
time: "+2017-10-03T00:00:00Z"
|
1854
|
+
timezone: 0
|
1855
|
+
before: 0
|
1856
|
+
after: 0
|
1857
|
+
precision: 11
|
1858
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1859
|
+
type: time
|
1860
|
+
datatype: time
|
1861
|
+
snaks-order:
|
1862
|
+
- P854
|
1863
|
+
- P1476
|
1864
|
+
- P2701
|
1865
|
+
- P813
|
1866
|
+
P562:
|
1867
|
+
- mainsnak:
|
1868
|
+
snaktype: value
|
1869
|
+
property: P562
|
1870
|
+
hash: fe18458e3c272c0af031527db9b9611933dc173e
|
1871
|
+
datavalue:
|
1872
|
+
value:
|
1873
|
+
entity-type: item
|
1874
|
+
numeric-id: 168844
|
1875
|
+
id: Q168844
|
1876
|
+
type: wikibase-entityid
|
1877
|
+
datatype: wikibase-item
|
1878
|
+
type: statement
|
1879
|
+
id: q123213$BE10302B-91AB-476F-89D9-AC2E99914386
|
1880
|
+
rank: normal
|
1881
|
+
references:
|
1882
|
+
- hash: fa278ebfc458360e5aed63d5058cca83c46134f1
|
1883
|
+
snaks:
|
1884
|
+
P143:
|
1885
|
+
- snaktype: value
|
1886
|
+
property: P143
|
1887
|
+
hash: e4f6d9441d0600513c4533c672b5ab472dc73694
|
1888
|
+
datavalue:
|
1889
|
+
value:
|
1890
|
+
entity-type: item
|
1891
|
+
numeric-id: 328
|
1892
|
+
id: Q328
|
1893
|
+
type: wikibase-entityid
|
1894
|
+
datatype: wikibase-item
|
1895
|
+
snaks-order:
|
1896
|
+
- P143
|
1897
|
+
P910:
|
1898
|
+
- mainsnak:
|
1899
|
+
snaktype: value
|
1900
|
+
property: P910
|
1901
|
+
hash: 84e82f70cb052c661b89b9e42fb35b73f539b173
|
1902
|
+
datavalue:
|
1903
|
+
value:
|
1904
|
+
entity-type: item
|
1905
|
+
numeric-id: 6903076
|
1906
|
+
id: Q6903076
|
1907
|
+
type: wikibase-entityid
|
1908
|
+
datatype: wikibase-item
|
1909
|
+
type: statement
|
1910
|
+
id: Q123213$bedc0032-4dd5-d69f-e071-38dced626003
|
1911
|
+
rank: normal
|
1912
|
+
P646:
|
1913
|
+
- mainsnak:
|
1914
|
+
snaktype: value
|
1915
|
+
property: P646
|
1916
|
+
hash: 95af23e453ae890206e386d67eb1834aed97eb50
|
1917
|
+
datavalue:
|
1918
|
+
value: "/m/0glfp"
|
1919
|
+
type: string
|
1920
|
+
datatype: external-id
|
1921
|
+
type: statement
|
1922
|
+
id: Q123213$355CB258-5BE4-4FB7-935D-F1AD4C9326C7
|
1923
|
+
rank: normal
|
1924
|
+
references:
|
1925
|
+
- hash: 2b00cb481cddcac7623114367489b5c194901c4a
|
1926
|
+
snaks:
|
1927
|
+
P248:
|
1928
|
+
- snaktype: value
|
1929
|
+
property: P248
|
1930
|
+
hash: a94b740202b097dd33355e0e6c00e54b9395e5e0
|
1931
|
+
datavalue:
|
1932
|
+
value:
|
1933
|
+
entity-type: item
|
1934
|
+
numeric-id: 15241312
|
1935
|
+
id: Q15241312
|
1936
|
+
type: wikibase-entityid
|
1937
|
+
datatype: wikibase-item
|
1938
|
+
P577:
|
1939
|
+
- snaktype: value
|
1940
|
+
property: P577
|
1941
|
+
hash: fde79ecb015112d2f29229ccc1ec514ed3e71fa2
|
1942
|
+
datavalue:
|
1943
|
+
value:
|
1944
|
+
time: "+2013-10-28T00:00:00Z"
|
1945
|
+
timezone: 0
|
1946
|
+
before: 0
|
1947
|
+
after: 0
|
1948
|
+
precision: 11
|
1949
|
+
calendarmodel: http://www.wikidata.org/entity/Q1985727
|
1950
|
+
type: time
|
1951
|
+
datatype: time
|
1952
|
+
snaks-order:
|
1953
|
+
- P248
|
1954
|
+
- P577
|
1955
|
+
P18:
|
1956
|
+
- mainsnak:
|
1957
|
+
snaktype: value
|
1958
|
+
property: P18
|
1959
|
+
hash: 866fc433d5a97357c5ef54745bdccec923c35b97
|
1960
|
+
datavalue:
|
1961
|
+
value: Euro exchange rate to PLN.svg
|
1962
|
+
type: string
|
1963
|
+
datatype: commonsMedia
|
1964
|
+
type: statement
|
1965
|
+
id: Q123213$9773cea8-4fe8-8305-bdce-3614870338de
|
1966
|
+
rank: normal
|
1967
|
+
P17:
|
1968
|
+
- mainsnak:
|
1969
|
+
snaktype: value
|
1970
|
+
property: P17
|
1971
|
+
hash: 88bdf0debebfba0d0f20c85ee32a18fb3e6c71a6
|
1972
|
+
datavalue:
|
1973
|
+
value:
|
1974
|
+
entity-type: item
|
1975
|
+
numeric-id: 36
|
1976
|
+
id: Q36
|
1977
|
+
type: wikibase-entityid
|
1978
|
+
datatype: wikibase-item
|
1979
|
+
type: statement
|
1980
|
+
id: Q123213$36f33182-4e0f-150a-0431-38d87df7b9c5
|
1981
|
+
rank: normal
|
1982
|
+
P558:
|
1983
|
+
- mainsnak:
|
1984
|
+
snaktype: value
|
1985
|
+
property: P558
|
1986
|
+
hash: ab932672b0158352e8154db4a34c1773a91bd061
|
1987
|
+
datavalue:
|
1988
|
+
value: zł
|
1989
|
+
type: string
|
1990
|
+
datatype: string
|
1991
|
+
type: statement
|
1992
|
+
id: Q123213$c73dbdbe-4dc3-0daa-6591-5141ffa7ab86
|
1993
|
+
rank: normal
|
1994
|
+
P856:
|
1995
|
+
- mainsnak:
|
1996
|
+
snaktype: value
|
1997
|
+
property: P856
|
1998
|
+
hash: bb43e9e01ebc400c88e77207f9006e3dd2813655
|
1999
|
+
datavalue:
|
2000
|
+
value: http://www.nbp.pl/
|
2001
|
+
type: string
|
2002
|
+
datatype: url
|
2003
|
+
type: statement
|
2004
|
+
id: Q123213$71315FCD-EEE3-416D-939E-E0D831C49399
|
2005
|
+
rank: normal
|
2006
|
+
P1417:
|
2007
|
+
- mainsnak:
|
2008
|
+
snaktype: value
|
2009
|
+
property: P1417
|
2010
|
+
hash: e151840e72eb68f2300c4eae52c728f0bffbb4d4
|
2011
|
+
datavalue:
|
2012
|
+
value: topic/zloty
|
2013
|
+
type: string
|
2014
|
+
datatype: external-id
|
2015
|
+
type: statement
|
2016
|
+
id: Q123213$F1DF4B23-9F4C-4A16-A556-E8DB4E703CC2
|
2017
|
+
rank: normal
|
2018
|
+
P3347:
|
2019
|
+
- mainsnak:
|
2020
|
+
snaktype: value
|
2021
|
+
property: P3347
|
2022
|
+
hash: 6c12677430af77e9fb766136b2fb7147957b1969
|
2023
|
+
datavalue:
|
2024
|
+
value: '500231'
|
2025
|
+
type: string
|
2026
|
+
datatype: external-id
|
2027
|
+
type: statement
|
2028
|
+
id: Q123213$ACC6C134-B2CA-4DFE-B307-1D66B9972ECE
|
2029
|
+
rank: normal
|
2030
|
+
sitelinks:
|
2031
|
+
afwiki:
|
2032
|
+
site: afwiki
|
2033
|
+
title: Złoty
|
2034
|
+
badges: []
|
2035
|
+
arwiki:
|
2036
|
+
site: arwiki
|
2037
|
+
title: زلوتي بولندي
|
2038
|
+
badges: []
|
2039
|
+
azwiki:
|
2040
|
+
site: azwiki
|
2041
|
+
title: Polşa zlotı
|
2042
|
+
badges: []
|
2043
|
+
bat_smgwiki:
|
2044
|
+
site: bat_smgwiki
|
2045
|
+
title: Lėnkėjės zluots
|
2046
|
+
badges: []
|
2047
|
+
be_x_oldwiki:
|
2048
|
+
site: be_x_oldwiki
|
2049
|
+
title: Злоты
|
2050
|
+
badges: []
|
2051
|
+
bewiki:
|
2052
|
+
site: bewiki
|
2053
|
+
title: Злоты
|
2054
|
+
badges: []
|
2055
|
+
bgwiki:
|
2056
|
+
site: bgwiki
|
2057
|
+
title: Полска злота
|
2058
|
+
badges: []
|
2059
|
+
bpywiki:
|
2060
|
+
site: bpywiki
|
2061
|
+
title: পোলিস জ্লোটে
|
2062
|
+
badges: []
|
2063
|
+
bswiki:
|
2064
|
+
site: bswiki
|
2065
|
+
title: Poljski zlot
|
2066
|
+
badges: []
|
2067
|
+
cawiki:
|
2068
|
+
site: cawiki
|
2069
|
+
title: Złoty
|
2070
|
+
badges: []
|
2071
|
+
crhwiki:
|
2072
|
+
site: crhwiki
|
2073
|
+
title: Zlоtı
|
2074
|
+
badges: []
|
2075
|
+
csbwiki:
|
2076
|
+
site: csbwiki
|
2077
|
+
title: Złoty
|
2078
|
+
badges: []
|
2079
|
+
cswiki:
|
2080
|
+
site: cswiki
|
2081
|
+
title: Złoty
|
2082
|
+
badges: []
|
2083
|
+
dawiki:
|
2084
|
+
site: dawiki
|
2085
|
+
title: Polske zloty
|
2086
|
+
badges: []
|
2087
|
+
dewiki:
|
2088
|
+
site: dewiki
|
2089
|
+
title: Złoty
|
2090
|
+
badges: []
|
2091
|
+
elwiki:
|
2092
|
+
site: elwiki
|
2093
|
+
title: Ζλότι
|
2094
|
+
badges: []
|
2095
|
+
enwiki:
|
2096
|
+
site: enwiki
|
2097
|
+
title: Polish złoty
|
2098
|
+
badges: []
|
2099
|
+
eowiki:
|
2100
|
+
site: eowiki
|
2101
|
+
title: Zloto
|
2102
|
+
badges: []
|
2103
|
+
eswiki:
|
2104
|
+
site: eswiki
|
2105
|
+
title: Złoty
|
2106
|
+
badges: []
|
2107
|
+
etwiki:
|
2108
|
+
site: etwiki
|
2109
|
+
title: Poola zlott
|
2110
|
+
badges: []
|
2111
|
+
euwiki:
|
2112
|
+
site: euwiki
|
2113
|
+
title: Złoty
|
2114
|
+
badges: []
|
2115
|
+
fawiki:
|
2116
|
+
site: fawiki
|
2117
|
+
title: زلوتی
|
2118
|
+
badges: []
|
2119
|
+
fiwiki:
|
2120
|
+
site: fiwiki
|
2121
|
+
title: Puolan złoty
|
2122
|
+
badges: []
|
2123
|
+
frwiki:
|
2124
|
+
site: frwiki
|
2125
|
+
title: Złoty
|
2126
|
+
badges: []
|
2127
|
+
glwiki:
|
2128
|
+
site: glwiki
|
2129
|
+
title: Złoty
|
2130
|
+
badges: []
|
2131
|
+
gotwiki:
|
2132
|
+
site: gotwiki
|
2133
|
+
title: "\U00010336\U0001033B\U00010330\U0001033F\U00010344\U00010334\U00010339"
|
2134
|
+
badges: []
|
2135
|
+
hewiki:
|
2136
|
+
site: hewiki
|
2137
|
+
title: זלוטי
|
2138
|
+
badges: []
|
2139
|
+
hrwiki:
|
2140
|
+
site: hrwiki
|
2141
|
+
title: Poljski zlot
|
2142
|
+
badges: []
|
2143
|
+
hsbwiki:
|
2144
|
+
site: hsbwiki
|
2145
|
+
title: Złoty
|
2146
|
+
badges: []
|
2147
|
+
huwiki:
|
2148
|
+
site: huwiki
|
2149
|
+
title: Lengyel złoty
|
2150
|
+
badges: []
|
2151
|
+
hywiki:
|
2152
|
+
site: hywiki
|
2153
|
+
title: Լեհական զլոտի
|
2154
|
+
badges: []
|
2155
|
+
idwiki:
|
2156
|
+
site: idwiki
|
2157
|
+
title: Złoty
|
2158
|
+
badges: []
|
2159
|
+
iswiki:
|
2160
|
+
site: iswiki
|
2161
|
+
title: Pólskt slot
|
2162
|
+
badges: []
|
2163
|
+
itwiki:
|
2164
|
+
site: itwiki
|
2165
|
+
title: Złoty polacco
|
2166
|
+
badges: []
|
2167
|
+
jawiki:
|
2168
|
+
site: jawiki
|
2169
|
+
title: ズウォティ
|
2170
|
+
badges: []
|
2171
|
+
jvwiki:
|
2172
|
+
site: jvwiki
|
2173
|
+
title: Złoty
|
2174
|
+
badges: []
|
2175
|
+
kawiki:
|
2176
|
+
site: kawiki
|
2177
|
+
title: ზლოტი
|
2178
|
+
badges: []
|
2179
|
+
kowiki:
|
2180
|
+
site: kowiki
|
2181
|
+
title: 폴란드 즈워티
|
2182
|
+
badges: []
|
2183
|
+
kvwiki:
|
2184
|
+
site: kvwiki
|
2185
|
+
title: Польшаса злотӧй
|
2186
|
+
badges: []
|
2187
|
+
lmowiki:
|
2188
|
+
site: lmowiki
|
2189
|
+
title: Złoty
|
2190
|
+
badges: []
|
2191
|
+
ltwiki:
|
2192
|
+
site: ltwiki
|
2193
|
+
title: Zlotas
|
2194
|
+
badges: []
|
2195
|
+
lvwiki:
|
2196
|
+
site: lvwiki
|
2197
|
+
title: Zlots
|
2198
|
+
badges: []
|
2199
|
+
mkwiki:
|
2200
|
+
site: mkwiki
|
2201
|
+
title: Полска злота
|
2202
|
+
badges: []
|
2203
|
+
mrwiki:
|
2204
|
+
site: mrwiki
|
2205
|
+
title: पोलिश झुवॉटी
|
2206
|
+
badges: []
|
2207
|
+
mswiki:
|
2208
|
+
site: mswiki
|
2209
|
+
title: Złoty
|
2210
|
+
badges: []
|
2211
|
+
nawiki:
|
2212
|
+
site: nawiki
|
2213
|
+
title: Złoty
|
2214
|
+
badges: []
|
2215
|
+
nlwiki:
|
2216
|
+
site: nlwiki
|
2217
|
+
title: Poolse złoty
|
2218
|
+
badges: []
|
2219
|
+
nnwiki:
|
2220
|
+
site: nnwiki
|
2221
|
+
title: Polsk złoty
|
2222
|
+
badges: []
|
2223
|
+
nowiki:
|
2224
|
+
site: nowiki
|
2225
|
+
title: Polsk zloty
|
2226
|
+
badges: []
|
2227
|
+
pawiki:
|
2228
|
+
site: pawiki
|
2229
|
+
title: ਪੋਲੈਂਡੀ ਜ਼ਵੋਤੀ
|
2230
|
+
badges: []
|
2231
|
+
plwiki:
|
2232
|
+
site: plwiki
|
2233
|
+
title: Złoty
|
2234
|
+
badges: []
|
2235
|
+
ptwiki:
|
2236
|
+
site: ptwiki
|
2237
|
+
title: Złoty
|
2238
|
+
badges: []
|
2239
|
+
rowiki:
|
2240
|
+
site: rowiki
|
2241
|
+
title: Zlot polonez
|
2242
|
+
badges: []
|
2243
|
+
ruewiki:
|
2244
|
+
site: ruewiki
|
2245
|
+
title: Злотый
|
2246
|
+
badges: []
|
2247
|
+
ruwiki:
|
2248
|
+
site: ruwiki
|
2249
|
+
title: Польский злотый
|
2250
|
+
badges:
|
2251
|
+
- Q17437798
|
2252
|
+
scowiki:
|
2253
|
+
site: scowiki
|
2254
|
+
title: Pols złoty
|
2255
|
+
badges: []
|
2256
|
+
shwiki:
|
2257
|
+
site: shwiki
|
2258
|
+
title: Poljski zlot
|
2259
|
+
badges: []
|
2260
|
+
simplewiki:
|
2261
|
+
site: simplewiki
|
2262
|
+
title: Złoty
|
2263
|
+
badges: []
|
2264
|
+
skwiki:
|
2265
|
+
site: skwiki
|
2266
|
+
title: Poľský zlotý
|
2267
|
+
badges: []
|
2268
|
+
srwiki:
|
2269
|
+
site: srwiki
|
2270
|
+
title: Пољски злот
|
2271
|
+
badges: []
|
2272
|
+
svwiki:
|
2273
|
+
site: svwiki
|
2274
|
+
title: Złoty
|
2275
|
+
badges: []
|
2276
|
+
tawiki:
|
2277
|
+
site: tawiki
|
2278
|
+
title: ஸ்வாட்டெ
|
2279
|
+
badges: []
|
2280
|
+
tetwiki:
|
2281
|
+
site: tetwiki
|
2282
|
+
title: Złoty
|
2283
|
+
badges: []
|
2284
|
+
tgwiki:
|
2285
|
+
site: tgwiki
|
2286
|
+
title: Злотии Полша
|
2287
|
+
badges: []
|
2288
|
+
thwiki:
|
2289
|
+
site: thwiki
|
2290
|
+
title: ซวอตือโปแลนด์
|
2291
|
+
badges: []
|
2292
|
+
tkwiki:
|
2293
|
+
site: tkwiki
|
2294
|
+
title: Złoty
|
2295
|
+
badges: []
|
2296
|
+
trwiki:
|
2297
|
+
site: trwiki
|
2298
|
+
title: Złoty
|
2299
|
+
badges: []
|
2300
|
+
ukwiki:
|
2301
|
+
site: ukwiki
|
2302
|
+
title: Злотий
|
2303
|
+
badges: []
|
2304
|
+
uzwiki:
|
2305
|
+
site: uzwiki
|
2306
|
+
title: Zlotiy
|
2307
|
+
badges: []
|
2308
|
+
xmfwiki:
|
2309
|
+
site: xmfwiki
|
2310
|
+
title: პოლონური ზლოტი
|
2311
|
+
badges: []
|
2312
|
+
yowiki:
|
2313
|
+
site: yowiki
|
2314
|
+
title: Złoty
|
2315
|
+
badges: []
|
2316
|
+
zh_min_nanwiki:
|
2317
|
+
site: zh_min_nanwiki
|
2318
|
+
title: Pho-lân złoty
|
2319
|
+
badges: []
|
2320
|
+
zh_yuewiki:
|
2321
|
+
site: zh_yuewiki
|
2322
|
+
title: 波蘭茲羅提
|
2323
|
+
badges: []
|
2324
|
+
zhwiki:
|
2325
|
+
site: zhwiki
|
2326
|
+
title: 波兰兹罗提
|
2327
|
+
badges: []
|